]> git.sesse.net Git - ffmpeg/commitdiff
loco: silence warning: decoded may be used uninitialized in this function
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 28 Feb 2013 17:10:30 +0000 (18:10 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 28 Feb 2013 17:10:49 +0000 (18:10 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/loco.c

index e21e693166cc015168765e2b74293fb193b594d8..2b7116685d5df382e8ee35273e1851975b445469 100644 (file)
@@ -238,6 +238,8 @@ static int decode_frame(AVCodecContext *avctx,
         decoded = loco_decode_plane(l, p->data[0] + p->linesize[0]*(avctx->height-1) + 3, avctx->width, avctx->height,
                                     -p->linesize[0], buf, buf_size, 4);
         break;
+    default:
+        av_assert0(0);
     }
 
     if (decoded < 0 || decoded > buf_size)