Commit 9940a885 authored by astrange's avatar astrange

Export qscale so that postprocessing works.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14008 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 117d005d
...@@ -203,8 +203,8 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -203,8 +203,8 @@ static int decode_frame(AVCodecContext *avctx,
} }
} }
// p->quality= (32 + a->inv_qscale/2)/a->inv_qscale; p->quality= a->qscale * FF_QP2LAMBDA;
// memset(p->qscale_table, p->quality, p->qstride*a->mb_height); memset(p->qscale_table, a->qscale, p->qstride*a->mb_height);
*picture= *(AVFrame*)&a->picture; *picture= *(AVFrame*)&a->picture;
*data_size = sizeof(AVPicture); *data_size = sizeof(AVPicture);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment