diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-02-02 19:33:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-02-02 19:33:48 +0000 |
commit | 6e0d8c06c7af61859e8d7bc2351a607d8abeab75 (patch) | |
tree | a2046b84143a0191ff3b998ab985c7c54be437aa /libavcodec/utils.c | |
parent | 957c743a23881636dcc1da307ad9c4ac6b65f7ac (diff) | |
download | ffmpeg-6e0d8c06c7af61859e8d7bc2351a607d8abeab75.tar.gz |
mb_lmin/max to limit the per mb quality for the ratecontrol independant from the frame limits
Originally committed as revision 3928 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index d7a7ed464b..99de9d38c6 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -430,8 +430,8 @@ void avcodec_get_context_defaults(AVCodecContext *s){ s->bit_rate_tolerance= s->bit_rate*10; s->qmin= 2; s->qmax= 31; - s->mb_qmin= 2; - s->mb_qmax= 31; + s->mb_lmin= FF_QP2LAMBDA * 2; + s->mb_lmax= FF_QP2LAMBDA * 31; s->rc_eq= "tex^qComp"; s->qcompress= 0.5; s->max_qdiff= 3; |