Mercurial > libavcodec.hg
diff mpegvideo.c @ 2972:4b4ee324b4c4 libavcodec
fix q=0 bug
| author | michael |
|---|---|
| date | Sun, 18 Dec 2005 19:59:33 +0000 |
| parents | ef2149182f1c |
| children | bb0222145083 |
line wrap: on
line diff
--- a/mpegvideo.c Sun Dec 18 13:29:09 2005 +0000 +++ b/mpegvideo.c Sun Dec 18 19:59:33 2005 +0000 @@ -5369,7 +5369,8 @@ } if (!s->fixed_qscale) - s->current_picture.quality = ff_rate_estimate_qscale(s); //FIXME pic_ptr + s->current_picture_ptr->quality= + s->current_picture.quality = ff_rate_estimate_qscale(s); if(s->adaptive_quant){ switch(s->codec_id){
