removing PIX_FMT_ANY
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 29 Dec 2002 22:35:46 +0000 (22:35 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 29 Dec 2002 22:35:46 +0000 (22:35 +0000)
Originally committed as revision 1373 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/avcodec.h
libavcodec/imgconvert.c

index a2a1d34..7ccd24b 100644 (file)
@@ -60,7 +60,6 @@ enum CodecType {
 };
 
 enum PixelFormat {
-    PIX_FMT_ANY = -1,
     PIX_FMT_YUV420P,
     PIX_FMT_YUV422,
     PIX_FMT_RGB24,
index d1e88a9..bdf6fe6 100644 (file)
@@ -720,8 +720,6 @@ int img_convert(AVPicture *dst, int dst_pix_fmt,
 {
     int i;
 
-    assert(pix_fmt != PIX_FMT_ANY && dst_pix_fmt != PIX_FMT_ANY);
-
     if (dst_pix_fmt == pix_fmt) {
         switch(pix_fmt) {
         case PIX_FMT_YUV420P: