Changes between Initial Version and Version 5 of Ticket #1897
- Timestamp:
- May 10, 2016 8:12:50 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1897
- Property Status changed from new to closed
- Property Resolution changed from to fixed
-
Ticket #1897 – Description
initial v5 1 This ticket will add support to F fmpeg 2.8 with these general modifications:2 - Change F fmpeg const using AV previx. e.g: PIX_FMT_NONE -> AV_PIX_FMT_NONE3 - Change deprecated method avcodec_get_frame_defaults -> av_frame_unref1 This ticket will add support to FFmpeg 2.8 with these general modifications: 2 - Change FFmpeg const using 'AV' previx. e.g: {{{PIX_FMT_NONE -> AV_PIX_FMT_NONE}}} 3 - Change deprecated method {{{avcodec_get_frame_defaults() -> av_frame_unref()}}} 4 4 5 On applying this ticket, older Ffmpeg that use the above const and method will not be supported. 5 Application may keep using older FFmpeg version, i.e: the versions that are already supported before the changes in this ticket, by defining macro {{{PJMEDIA_USE_OLD_FFMPEG}}} in the build, e.g: adding this line in {{{config_site.h}}}: 6 {{{ 7 #define PJMEDIA_USE_OLD_FFMPEG 8 }}} 9 Note: {{{configure}}} script (of GNU autoconf build system) will automatically add this macro when it detects that older FFmpeg version is being used.