OSDN Git Service

Replace apparently always true condition by assert().
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 27 Sep 2008 02:39:24 +0000 (02:39 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 27 Sep 2008 02:39:24 +0000 (02:39 +0000)
Originally committed as revision 15437 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mjpegdec.c

index bb088b5..e8a34ef 100644 (file)
@@ -298,10 +298,9 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
     case 0x11111100:
         if(s->rgb){
             s->avctx->pix_fmt = PIX_FMT_RGB32;
-        }else if(s->nb_components==3)
+        }else
             s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV444P : PIX_FMT_YUVJ444P;
-        else
-            s->avctx->pix_fmt = PIX_FMT_GRAY8;
+        assert(s->nb_components==3);
         break;
     case 0x11000000:
         s->avctx->pix_fmt = PIX_FMT_GRAY8;