comparison vp3.c @ 11635:0c2b399b2e27 libavcodec

vp3: Remove internal debug statement
author conrad
date Fri, 16 Apr 2010 12:21:41 +0000
parents 8a4984c5cacc
children a9e758788a12
comparison
equal deleted inserted replaced
11634:456b580e244c 11635:0c2b399b2e27
1285 break; 1285 break;
1286 case 2: // coeff 1286 case 2: // coeff
1287 block[perm[i]] = (token >> 2) * dequantizer[perm[i]]; 1287 block[perm[i]] = (token >> 2) * dequantizer[perm[i]];
1288 s->dct_tokens[plane][i++]++; 1288 s->dct_tokens[plane][i++]++;
1289 break; 1289 break;
1290 default: 1290 default: // shouldn't happen
1291 av_log(s->avctx, AV_LOG_ERROR, "internal: invalid token type\n");
1292 return i; 1291 return i;
1293 } 1292 }
1294 } while (i < 64); 1293 } while (i < 64);
1295 end: 1294 end:
1296 // the actual DC+prediction is in the fragment structure 1295 // the actual DC+prediction is in the fragment structure