summaryrefslogtreecommitdiff
path: root/libavcodec/mpc.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2007-02-17 11:39:54 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2007-02-17 11:39:54 +0000
commiteeb40eb3673d15c772b224d8b940542af77d3e11 (patch)
tree16d79b681c7932b3366043e10e5b4c04734a06b8 /libavcodec/mpc.c
parent18064f5cf38730b70a6587c389e1838b00c753bb (diff)
10l: forgot break statement
Originally committed as revision 8003 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpc.c')
-rw-r--r--libavcodec/mpc.c1
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++){