You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Use enum PixelFormat to silence one icc warning:
warning #188: enumerated type mixed with another type enum PixelFormat pix_fmts[] = { c->pix_fmt, PIX_FMT_NONE }; ^ Originally committed as revision 23640 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -26,7 +26,8 @@ typedef struct {
|
||||
int64_t pts;
|
||||
AVFrame frame;
|
||||
int has_frame;
|
||||
int h, w, pix_fmt;
|
||||
int h, w;
|
||||
enum PixelFormat pix_fmt;
|
||||
AVRational pixel_aspect;
|
||||
} BufferSourceContext;
|
||||
|
||||
|
Reference in New Issue
Block a user