轉載 ---ffmpeg 新老接口問題及對照集錦

最近在整ffmpeg ,發現有些函數已經變了名字,搜來搜去,搜來下面文章。


ffmpeg 新老接口問題及對照集錦

http://blog.csdn.net/sukhoi27smk/article/details/18842725


ffmpeg源碼包裏面有個apichangs文檔,裏面有各種接口改變的記錄,如果你發現接口不能用了,可以去搜索那個文檔,可以找到對應的新接口,然後到新接口對應的頭文件中找到說明文字


網上很多關於ffmpeg (libav)的資料都是N年以前的,而事實上ffmpeg數年來一直在“以時俱進”,因此無論是一些新手,或者號稱爲老手的人,有時候難免出頭痛。。。。。。


爲了解決大家的頭痛的問題,特列一個貼子,把ffmpeg相關的一些常見的、版本的問題列舉出來,供大家參考,同時也請大家一起補充。

1) 不認識guess_format.
解決:  #define guess_format  av_guess_format 
接口不變。

2) 不認識av_alloc_format_context
解決:  #define   av_alloc_format_context  avformat_alloc_output_context
接口調整。

3) 不認識CODEC_TYPE_VIDEO 和 CODEC_TYPE_AUDIO
解決:
#define CODEC_TYPE_VIDEO AVMEDIA_TYPE_VIDEO
#define CODEC_TYPE_AUDIO AVMEDIA_TYPE_AUDIO

4) 不認識audio_resample_init
解決:#define audio_resample_init av_audio_resample_init
接口調整。

5) avcodec_decode_video 到 avcodec_decode_video2接口調整
舊代碼:
  1. len = avcodec_decode_video(c, (short *)outbuf, &out_size, inbuf_ptr, size);
複製代碼
新代碼:
  1. av_init_packet(&pkt);
  2. pkt.data = (unsigned char*)inbuf_ptr;
  3. pkt.size = size;
  4. len = avcodec_decode_video2(c, &tmpFrame, &got_picture, &pkt);
複製代碼

av_open_input_file
/opt/workspace/android/EasyPlayer/jni/EasyPlayer/EasyPlayer.cpp:483: warning: 'int av_open_input_file(AVFormatContext**, const char*, AVInputFormat*, int, AVFormatParameters*)' is deprecated (declared at /opt/workspace/android/EasyPlayer/jni/EasyPlayer/../include/libavformat/avformat.h:1480)
新接口:
  1. #ifdef _FFMPEG_0_6__
  2.     if(av_open_input_file(&ffmpeg_fields.pFormatCtx, _filePath, NULL, 0, NULL) != 0)
  3. #else
  4.     if (avformat_open_input(&ffmpeg_fields.pFormatCtx, _filePath, NULL, NULL) != 0)
  5. #endif

複製代碼
av_find_stream_info
/opt/workspace/android/EasyPlayer/jni/EasyPlayer/EasyPlayer.cpp:494: warning: 'int av_find_stream_info(AVFormatContext*)' is deprecated (declared at /opt/workspace/android/EasyPlayer/jni/EasyPlayer/../include/libavformat/avformat.h:1526)
新接口:
  1. #ifdef _FFMPEG_0_6__
  2.         if(av_find_stream_info(ffmpeg_fields.pFormatCtx) < 0)
  3. #else
  4.         if (avformat_find_stream_info(ffmpeg_fields.pFormatCtx, NULL) < 0)
  5. #endif
複製代碼
av_close_input_file

/opt/workspace/android/EasyPlayer/jni/EasyPlayer/EasyPlayer.cpp:522: warning: 'void av_close_input_file(AVFormatContext*)' is deprecated (declared at /opt/workspace/android/EasyPlayer/jni/EasyPlayer/../include/libavformat/avformat.h:1706)

新接口:
  1. #ifdef _FFMPEG_0_6__
  2.         av_close_input_file(ffmpeg_fields.pFormatCtx);
  3. #else
  4.         avformat_close_input(&ffmpeg_fields.pFormatCtx);
  5. #endif

複製代碼
注意,這個是個2級指針。

avcodec_open2
新出來的avcodec_open2接口支持一些編解碼特性的指定。
#ifdef __FFMPEG_0_6__
    if (avcodec_open(ffmpeg_video.codec_ctx, ffmpeg_video.codec) < 0)
#else
    if (avcodec_open2(ffmpeg_video.codec_ctx, ffmpeg_video.codec, NULL) < 0)
#endif

avcodec_init

/opt/workspace/android/EasyIPCam/jni/libeasycodec/EasyCodec.cpp:20: warning: 'void avcodec_init()' is deprecated (declared at /opt/workspace/android/EasyIPCam/jni/libeasycodec/../3rdparty/libavcodec/avcodec.h:3932)

這個function已經不再需要了,當你調用avcodec_register()或者 avcodec_register_all()時,ffmpeg會自動調用它。所以放心大膽的移除掉就可以了。

url_fclose url_fopen url_fseek等等

/opt/workspace/android/EasyIPCam/jni/libeasycodec/EasyCodec.cpp:67: warning: 'int url_fclose(AVIOContext*)' is deprecated (declared at /opt/workspace/android/EasyIPCam/jni/libeasycodec/../3rdparty/libavformat/avio.h:324)
這一系統的接口都只需要在前面加一個avio_的前綴就可以了,如:avio_close()。

avcodec_alloc_context()

/opt/workspace/android/EasyIPCam/jni/libeasycodec/EasyCodec.cpp:111: warning: 'AVCodecContext* avcodec_alloc_context()' is deprecated (declared at /opt/workspace/android/EasyIPCam/jni/libeasycodec/../3rdparty/libavcodec/avcodec.h:4025)

使用最新接口:avcodec_alloc_context3()
  1.     m_pACodec = avcodec_find_encoder((CodecID)nCodecID);
  2.     if(!m_pACodec) return false;
  3.     m_pAContext                    = avcodec_alloc_context3(m_pACodec);


複製代碼
av_get_bits_per_sample_format

/opt/workspace/android/EasyIPCam/jni/libeasycodec/EasyCodec.cpp:143: warning: 'int av_get_bits_per_sample_format(AVSampleFormat)' is deprecated (declared at /opt/workspace/android/EasyIPCam/jni/libeasycodec/../3rdparty/libavcodec/avcodec.h:4529)
新接口改爲av_get_bytes_per_sample(反正音頻bits per sample是8的倍數,不是8就是16,直接用byte比用bit更好)

audio_resample_init

/opt/workspace/android/EasyIPCam/jni/libeasycodec/EasyCodec.cpp:157: error: 'audio_resample_init' was not declared in this scope
新接口:av_audio_resample_init,原先我以爲ffmpeg要支持超過2 channels的resample,後來一看resample.c裏的實現,結果發現還是隻能支持mono和stereo
多出來的幾個參數,給填default值:
  1.                 AV_SAMPLE_FMT_S16,
  2.                 AV_SAMPLE_FMT_S16,
  3.                 TAPS, 10, 0, 0.8

複製代碼
詳見resample.c,或者參考RTSPPlayer中的easyffmpeg.cpp.

PKT_FLAG_KEY
沒什麼好說的,直接在前面加個AV_的前綴:AV_PKT_FLAG_KEY

av_alloc_format_context

/opt/workspace/android/EasyIPCam/jni/libeasycodec/EasyCodec.cpp:722: error: 'av_alloc_format_context' was not declared in this scope
這個前面兩位同仁有提到不同,但不說怎麼個不同法,實在可恨,我直接寫個例子:
  1. avformat_alloc_output_context2(&m_pFormatCtx, pOutputFmt, "avi", pFileName);
複製代碼

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章