diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-02-17 11:39:54 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-02-17 11:39:54 +0000 |
commit | eeb40eb3673d15c772b224d8b940542af77d3e11 (patch) | |
tree | 16d79b681c7932b3366043e10e5b4c04734a06b8 | |
parent | 18064f5cf38730b70a6587c389e1838b00c753bb (diff) | |
download | ffmpeg-eeb40eb3673d15c772b224d8b940542af77d3e11.tar.gz |
10l: forgot break statement
Originally committed as revision 8003 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpc.c b/libavcodec/mpc.c index a500479c0e..f0a46257e6 100644 --- a/libavcodec/mpc.c +++ b/libavcodec/mpc.c @@ -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++){ |