Changes between Initial Version and Version 5 of Ticket #1897


Ignore:
Timestamp:
May 10, 2016 8:12:50 AM (8 years ago)
Author:
nanang
Comment:

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 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 
     1This 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()}}} 
    44 
    5 On applying this ticket, older Ffmpeg that use the above const and method will not be supported. 
     5Application 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}}} 
     9Note: {{{configure}}} script (of GNU autoconf build system) will automatically add this macro when it detects that older FFmpeg version is being used.