From dbc598bb7963674e709509ac722443fdad9a5e9e Mon Sep 17 00:00:00 2001 From: Juanjo Date: Tue, 9 Apr 2002 00:08:39 +0000 Subject: [PATCH] - Commented out PIX_FMT_ANY by now. It seems that not all codecs are setting the PIX_FMT_ so they get PIX_FMT_ANY instead of PIX_FMT_YUV420P which obviuosly annoys ffmpeg. Originally committed as revision 391 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/avcodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3f6ee75661..9eab3d0a9f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -39,7 +39,7 @@ enum CodecType { }; enum PixelFormat { - PIX_FMT_ANY, + //PIX_FMT_ANY, PIX_FMT_YUV420P, PIX_FMT_YUV422, PIX_FMT_RGB24,