comparison mpc.c @ 4535:e3b224087a85 libavcodec

10l: forgot break statement
author kostya
date Sat, 17 Feb 2007 11:39:54 +0000
parents a188a94e1b61
children 0430aafe6f01
comparison
equal deleted inserted replaced
4534:a856fe4b80f0 4535:e3b224087a85
176 case -1: 176 case -1:
177 for(i = 0; i < SAMPLES_PER_BAND; i++){ 177 for(i = 0; i < SAMPLES_PER_BAND; i++){
178 t = mpc_rnd(c); 178 t = mpc_rnd(c);
179 *dst++ = ((t>>24)& 0xFF) + ((t>>16) & 0xFF) + ((t>>8) & 0xFF) + (t & 0xFF) - 510; 179 *dst++ = ((t>>24)& 0xFF) + ((t>>16) & 0xFF) + ((t>>8) & 0xFF) + (t & 0xFF) - 510;
180 } 180 }
181 break;
181 case 1: 182 case 1:
182 i1 = get_bits1(gb); 183 i1 = get_bits1(gb);
183 for(i = 0; i < SAMPLES_PER_BAND/3; i++){ 184 for(i = 0; i < SAMPLES_PER_BAND/3; i++){
184 t = get_vlc2(gb, quant_vlc[0][i1].table, 9, 2); 185 t = get_vlc2(gb, quant_vlc[0][i1].table, 9, 2);
185 *dst++ = mpc_idx30[t]; 186 *dst++ = mpc_idx30[t];