我想使用功能ff_load_image

程式

#include "../ffmpeg/libavfilter/lavfutils.h"

int main ()
{
  uint8_t* data;

  int linesize, width, height, log_ctx;

  int i = ff_load_image(&data, &linesize, &width, &height, AV_PIX_FMT_RGB24, "blue.jpg", &log_ctx);
}


这样可以编译,但是会发出警告。

program.c: In function 'main':
program.c:11: warning: passing argument 5 of 'ff_load_image' makes pointer from integer without a cast
../ffmpeg/libavfilter/lavfutils.h:39: note: expected 'enum AVPixelFormat *' but argument is of type 'int'


当我运行程序时,它会分割故障。我想不出任何其他方式来指定像素格式。 ffmpeg为什么会认为AV_PIX_FMT_RGB8是整数?显然是AVPixelFormat

最佳答案

ff_load_image()需要一个enum AVPixelFormat *ffmpeg认为它是整数,因为它是enumAVPixelFormat元素。而且,in C枚举常量的类型为int

您应该使用:

enum AVPixelFormat pix_fmt = AV_PIX_FMT_RGB24;
int i = ff_load_image(&data, &linesize, &width, &height
                           , &pix_fmt, "blue.jpg", &log_ctx);

10-08 09:44