316 |
stop_iquant_timer(); |
stop_iquant_timer(); |
317 |
|
|
318 |
start_timer(); |
start_timer(); |
319 |
idct(&data[i * 64]); |
idct((short * const)&data[i * 64]); |
320 |
stop_idct_timer(); |
stop_idct_timer(); |
321 |
|
|
322 |
} |
} |
406 |
|
|
407 |
/* iDCT */ |
/* iDCT */ |
408 |
start_timer(); |
start_timer(); |
409 |
idct(&data[0]); |
idct((short * const)&data[0]); |
410 |
stop_idct_timer(); |
stop_idct_timer(); |
411 |
|
|
412 |
/* Add this residual to the predicted block */ |
/* Add this residual to the predicted block */ |
1485 |
} |
} |
1486 |
|
|
1487 |
/* perform post processing if necessary, and output the image */ |
/* perform post processing if necessary, and output the image */ |
1488 |
void decoder_output(DECODER * dec, IMAGE * img, MACROBLOCK * mbs, |
static void decoder_output(DECODER * dec, IMAGE * img, MACROBLOCK * mbs, |
1489 |
xvid_dec_frame_t * frame, xvid_dec_stats_t * stats, |
xvid_dec_frame_t * frame, xvid_dec_stats_t * stats, |
1490 |
int coding_type, int quant) |
int coding_type, int quant) |
1491 |
{ |
{ |