Changes between Initial Version and Version 6 of Ticket #1608
- Timestamp:
- May 21, 2013 6:58:49 AM (11 years ago)
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 3 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. 4 4 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 }}}