diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-09-19 20:22:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-19 20:22:39 +0000 |
commit | b3a391e8b8498b3156849dafe164c859fbfbbcd2 (patch) | |
tree | 644144317bfacadfec12fb071f31e86f7db9a347 /ffmpeg.c | |
parent | e8b62df6e44344033fef60015f938ff940affd27 (diff) | |
download | ffmpeg-b3a391e8b8498b3156849dafe164c859fbfbbcd2.tar.gz |
fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
Originally committed as revision 959 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ static int video_rc_min_rate=0; static float video_rc_initial_cplx=0; static float video_b_qfactor = 1.25; static float video_b_qoffset = 1.25; -static float video_i_qfactor = -0.5; +static float video_i_qfactor = -0.8; static float video_i_qoffset = 0.0; static int me_method = 0; static int video_disable = 0; |