Commit 416c0fba authored by kostya's avatar kostya

10l: forgot break statement

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8003 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0e8554ee
......@@ -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++){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment