Changes between Initial Version and Version 6 of Ticket #1608


Ignore:
Timestamp:
May 21, 2013 6:58:49 AM (11 years ago)
Author:
nanang
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1608

    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
  • Ticket #1608 – Description

    initial v6  
    33To 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. 
    44 
     5=== Notes === 
     6On MSVC, there may be linking error such as: 
     7{{{ 
     8unresolved external symbol ___chkstk referenced in function _coder 
     9}}} 
     10A 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}}}