]> git.sesse.net Git - ffmpeg/commitdiff
10l: forgot break statement
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 17 Feb 2007 11:39:54 +0000 (11:39 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 17 Feb 2007 11:39:54 +0000 (11:39 +0000)
Originally committed as revision 8003 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mpc.c

index a500479c0e667e67255bcf3da98abb3ade9c8d42..f0a46257e619a335da45e194076ca5e8586824cb 100644 (file)
@@ -178,6 +178,7 @@ static void inline idx_to_quant(MPCContext *c, GetBitContext *gb, int idx, int *
             t = mpc_rnd(c);
             *dst++ = ((t>>24)& 0xFF) + ((t>>16) & 0xFF) + ((t>>8) & 0xFF) + (t & 0xFF) - 510;
         }
+        break;
     case 1:
         i1 = get_bits1(gb);
         for(i = 0; i < SAMPLES_PER_BAND/3; i++){