Ошибка: avcodec_init();
Я попытаюсь скомпилировать под Ubuntu 14.04.2 и получаю следующую ошибку:
VideoPlayerPipHd.c: In static member function ‘static void reel::VideoPlayerPipHd::Create()’:
VideoPlayerPipHd.c:792:6: error: ‘avcodec_init’ was not declared in this scope
avcodec_init -> avcodec_register_all;
^
VideoPlayerPipHd.c:793:7: error: ‘av_open_input_file’ was not declared in this scope
av_open_input_file -> avformat_open_input;
^
Код является:
787 void VideoPlayerPipHd::Create()
788 {
789 if (!instance_)
790 {
791 instance_ = new VideoPlayerPipHd;
792 avcodec_init();
793 avcodec_register_all();
794 }
795 }
Я попробовал несколько вещей, но я застрял. Может ли кто-нибудь помочь мне, пожалуйста? заранее спасибо
1 ответ
Решение
Ответ в том, что функции ffmpeg устарели. Смотрите список здесь, например: https://www.ffmpeg.org/doxygen/0.8/deprecated.html
Например изменить av_open_input_file
в avformat_open_input
,