diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-12-19 13:41:27 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-12-19 13:41:27 +0000 |
commit | 8ed9f9ab324f5370d891a67f4ae6162db80f84a1 (patch) | |
tree | 5b1d781e63f8c91d450712a3c79ebe43c229b178 /libavcodec/mpegvideo.h | |
parent | 2ceff404b5416035ae05caad39bbdfe56a31064a (diff) | |
download | ffmpeg-8ed9f9ab324f5370d891a67f4ae6162db80f84a1.tar.gz |
use correct qp & lambda for ME on the second pass
Originally committed as revision 4757 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index da9f0ba3fb..7dc83d0a3c 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -972,7 +972,7 @@ void ff_mjpeg_stuffing(PutBitContext * pbc); /* rate control */ int ff_rate_control_init(MpegEncContext *s); -float ff_rate_estimate_qscale(MpegEncContext *s); +float ff_rate_estimate_qscale(MpegEncContext *s, int dry_run); void ff_write_pass1_stats(MpegEncContext *s); void ff_rate_control_uninit(MpegEncContext *s); double ff_eval(char *s, double *const_value, const char **const_name, |