Changes between Version 6 and Version 7 of Ticket #1608


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1608 – Description

    v6 v7  
    1 For information regarding how to download and build OpenCORE AMR codec, please refer to ticket #1388 (Support for OpenCORE AMR-NB codec). 
     1The updated OpenCORE AMR instructions are in [wiki:Using-OpenCORE-AMR-NB-WB-Codec Using OpenCORE AMR NB and WB Codecs] 
    22 
    3 To add support for OpenCORE AMR WB, you will also need to download and install vo-amrwbenc using the same steps as downloading and installing ​opencore-amr library explained in ticket #1388. 
    43 
    5 === Notes === 
    6 On MSVC, there may be linking error such as: 
    7 {{{ 
    8 unresolved external symbol ___chkstk referenced in function _coder 
    9 }}} 
    10 A possible solution is by manually appending {{{_chkstk.o}}} to {{{libvo-amrwbenc.a}}}: 
    11 {{{ 
    12 $ cd <path-to-libvo-amrwbenc.a> 
    13 $ ar x <path-to>/libgcc.a _chkstk.o 
    14 $ ar q libvo-amrwbenc.a _chkstk.o 
    15 }}}