FFMPEG:在此范围内未声明“PIX_FMT_BGR24” [英] FFMPEG: ‘PIX_FMT_BGR24’ was not declared in this scope

查看:663
本文介绍了FFMPEG:在此范围内未声明“PIX_FMT_BGR24”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用FFMPEG API构建一个简单的解码应用程序。我知道OpenCV有可用的解决方案,但由于具体原因我无法使用它。由于我对FFMPEG(以及这个社区也很新),我想知道在构建FFMPEG时可能有什么错误。



编译器:我正在使用gcc 5.3.0进行编译和构建。



以下是我遵循的步骤:


  1. 我已经使用以下配置构建了FFMPEG库:


    ./ configure --prefix = / home / dep / ffmpeg / install / --pkg-config-flags = - static --enable-gpl --disable -yasm



  2. 我的编译命令是针对应用程序:


    g ++ -std = c ++ 11 -I / home / dep / ffmpeg / install / include / Queue.cpp Image.cpp CaptureFFMPEGFrame.cpp Object.cpp main.cpp -o main -L / home / dep / ffmpeg / install / lib -lavutil -lavcodec -lavformat -lavdevice -lavfilter -lswscale -lswresample -lpostproc -lpthread -lz -lrt -llzma -lbz2



我遇到的错误是:

  CaptureFFMPEGFrame.cpp:203:169:错误:'PIX_FMT_BGR24'未在此范围内声明
mpFra meSwsContext = sws_getContext(mpAVCodecContext-> width,mpAVCodecContext-> height,mpAVCodecContext-> pix_fmt,mpAVCodecContext-> width,mpAVCodecContext-> height,PIX_FMT_BGR24,SWS_BICUBIC,NULL,NULL,NULL)

我的努力和理解:


  1. 从我的理解,libavutil / pixfmt.h包含像其他包含的像素格式,错误仍然存​​在。您还可以看到我的应用程序包含的库。


  2. 由于我的程序是cpp代码,因此我的头文件已经包含使用externC,即 #includelibavcodec / avcodec .h


我可能错过了什么?



非常感谢。

解决方案

关于提交 78071a14 ,像素格式前缀为 AV _ ,而$ code > PIX_FMT _ * 定义是移动到 libavutil / old_pix_fmts.h (由原始 pixfmt.h )。该文件在下一个主要版本中被删除。



修正(如评论中所述)只是将此前缀添加到任何 PIX_FMT _ * 语句中没有更新。


I am building a simple decoding application using FFMPEG API. I know there are solutions available in OpenCV but for specific reason I am refraining myself from using that. Since I am very new to FFMPEG (and to this community as well), I would like to know if there is any mistake that I might have done while building FFMPEG.

Compiler: I am using gcc 5.3.0 for compilation and building.

Following are the steps that I followed:

  1. I have build FFMPEG library using following configuration:

    ./configure --prefix=/home/dep/ffmpeg/install/ --pkg-config-flags=--static --enable-gpl --disable-yasm

  2. My compiling command is for the application:

    g++ -std=c++11 -I/home/dep/ffmpeg/install/include/ Queue.cpp Image.cpp CaptureFFMPEGFrame.cpp Object.cpp main.cpp -o main -L/home/dep/ffmpeg/install/lib -lavutil -lavcodec -lavformat -lavdevice -lavfilter -lswscale -lswresample -lpostproc -lpthread -lz -lrt -llzma -lbz2

The error I am facing is :

CaptureFFMPEGFrame.cpp:203:169: error: ‘PIX_FMT_BGR24’ was not declared in this scope
     mpFrameSwsContext = sws_getContext(mpAVCodecContext->width, mpAVCodecContext->height, mpAVCodecContext->pix_fmt, mpAVCodecContext->width, mpAVCodecContext->height, PIX_FMT_BGR24, SWS_BICUBIC, NULL, NULL, NULL)

My effort and understanding:

  1. From my understanding, libavutil/pixfmt.h contains pixel formats which I included along with other includes and the error persists. You can also see libraries I have included along with my application.

  2. Since my program is cpp code, therefore my headers are already included using extern "C", i.e. #include "libavcodec/avcodec.h"

Anything I might have missed?

Many thanks.

解决方案

As of commit 78071a14, pixel formats have been prefixed with AV_, and the PIX_FMT_* defines were moves to libavutil/old_pix_fmts.h (which was included by the original pixfmt.h). This file was then removed in the next major version.

The fix (as described in the comments) was just to add this prefix to any PIX_FMT_* statements which haven't been updated yet.

这篇关于FFMPEG:在此范围内未声明“PIX_FMT_BGR24”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆