diff rawdec.c @ 10880:1184d065c26a libavcodec

Do not assign codec_tag to pix_fmt in rawdec.c, but in raw.c
author cehoyos
date Fri, 15 Jan 2010 00:45:47 +0000
parents 98520e1f1f53
children 1cebb3ea364b
line wrap: on
line diff
--- a/rawdec.c	Thu Jan 14 17:50:33 2010 +0000
+++ b/rawdec.c	Fri Jan 15 00:45:47 2010 +0000
@@ -74,8 +74,6 @@
 
     if (avctx->codec_tag == MKTAG('r','a','w',' '))
         avctx->pix_fmt = findPixelFormat(pixelFormatBpsMOV, avctx->bits_per_coded_sample);
-    else if (avctx->codec_tag == MKTAG('A', 'V', 'R', 'n'))
-        avctx->pix_fmt = PIX_FMT_UYVY422; // Avid AVI Codec "Resolution 1:1"
     else if (avctx->codec_tag)
         avctx->pix_fmt = findPixelFormat(ff_raw_pixelFormatTags, avctx->codec_tag);
     else if (avctx->bits_per_coded_sample)