Changes between Version 2 and Version 3 of Using-OpenCORE-AMR-NB-WB-Codec


Ignore:
Timestamp:
Oct 9, 2013 8:37:37 AM (11 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Using-OpenCORE-AMR-NB-WB-Codec

    v2 v3  
    55}}} 
    66 
    7 = Using OpenCORE AMR NB and WB Codec = 
     7= Using OpenCORE AMR NB and WB Codecs = 
    88 
    99'''Table of Contents''' 
     
    117117   1. The AMR-NB (and AMR-WB) codecs are now available ready to be used. 
    118118 
     119==== Notes ==== 
     120 
     121On MSVC, there may be linking error such as: 
     122{{{ 
     123unresolved external symbol ___chkstk referenced in function _coder 
     124}}} 
     125A possible solution is by manually appending {{{_chkstk.o}}} to {{{libvo-amrwbenc.a}}}: 
     126{{{ 
     127$ cd <path-to-libvo-amrwbenc.a> 
     128$ ar x <path-to>/libgcc.a _chkstk.o 
     129$ ar q libvo-amrwbenc.a _chkstk.o 
     130}}} 
     131 
    119132[[BR]] 
    120133== Testing PJSIP For OpenCORE AMR Support ==