comparison mpegvideo.c @ 108:1e4a4af694d1 libavcodec

exporting qscale data for postprocessing (for MPlayer)
author arpi_esp
date Tue, 16 Oct 2001 23:10:38 +0000
parents 82e579c37bc3
children de80712db90b
comparison
equal deleted inserted replaced
107:bd163e13a0fb 108:1e4a4af694d1
673 op_pixels_func *op_pix; 673 op_pixels_func *op_pix;
674 674
675 mb_x = s->mb_x; 675 mb_x = s->mb_x;
676 mb_y = s->mb_y; 676 mb_y = s->mb_y;
677 677
678 #ifdef FF_POSTPROCESS
679 quant_store[mb_y][mb_x]=s->qscale;
680 //printf("[%02d][%02d] %d\n",mb_x,mb_y,s->qscale);
681 #endif
682
678 /* update DC predictors for P macroblocks */ 683 /* update DC predictors for P macroblocks */
679 if (!s->mb_intra) { 684 if (!s->mb_intra) {
680 if (s->h263_pred) { 685 if (s->h263_pred) {
681 int wrap, x, y, v; 686 int wrap, x, y, v;
682 wrap = 2 * s->mb_width + 2; 687 wrap = 2 * s->mb_width + 2;