ffmpeg 新老接口问题及对照集锦
生活随笔
收集整理的這篇文章主要介紹了
ffmpeg 新老接口问题及对照集锦
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
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接口調整
舊代碼:
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)
新接口:
/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)
新接口:
/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)
新接口:
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()
/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值:
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
這個前面兩位同仁有提到不同,但不說怎么個不同法,實在可恨,我直接寫個例子:
總結
以上是生活随笔為你收集整理的ffmpeg 新老接口问题及对照集锦的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: FTP服务器和客户端源代码编写问题(ft
- 下一篇: 解决链接错误:error LNK2001