1360 |
xvid_dec_frame_t * frame, xvid_dec_stats_t * stats, |
xvid_dec_frame_t * frame, xvid_dec_stats_t * stats, |
1361 |
int coding_type, int quant) |
int coding_type, int quant) |
1362 |
{ |
{ |
1363 |
|
const int brightness = XVID_VERSION_MINOR(frame->version) >= 1 ? frame->brightness : 0; |
1364 |
|
|
1365 |
if (dec->cartoon_mode) |
if (dec->cartoon_mode) |
1366 |
frame->general &= ~XVID_FILMEFFECT; |
frame->general &= ~XVID_FILMEFFECT; |
1367 |
|
|
1368 |
if ((frame->general & (XVID_DEBLOCKY|XVID_DEBLOCKUV|XVID_FILMEFFECT) || frame->brightness!=0) |
if ((frame->general & (XVID_DEBLOCKY|XVID_DEBLOCKUV|XVID_FILMEFFECT) || brightness!=0) |
1369 |
&& mbs != NULL) /* post process */ |
&& mbs != NULL) /* post process */ |
1370 |
{ |
{ |
1371 |
/* note: image is stored to tmp */ |
/* note: image is stored to tmp */ |
1372 |
image_copy(&dec->tmp, img, dec->edged_width, dec->height); |
image_copy(&dec->tmp, img, dec->edged_width, dec->height); |
1373 |
image_postproc(&dec->postproc, &dec->tmp, dec->edged_width, |
image_postproc(&dec->postproc, &dec->tmp, dec->edged_width, |
1374 |
mbs, dec->mb_width, dec->mb_height, dec->mb_width, |
mbs, dec->mb_width, dec->mb_height, dec->mb_width, |
1375 |
frame->general, frame->brightness, dec->frames, (coding_type == B_VOP)); |
frame->general, brightness, dec->frames, (coding_type == B_VOP)); |
1376 |
img = &dec->tmp; |
img = &dec->tmp; |
1377 |
} |
} |
1378 |
|
|