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 /ffserver.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 'ffserver.c')
-rw-r--r-- | ffserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c index 448fb65794..0d2d423670 100644 --- a/ffserver.c +++ b/ffserver.c @@ -3296,7 +3296,7 @@ void add_codec(FFStream *stream, AVCodecContext *av) if (!av->rc_eq) av->rc_eq = "tex^qComp"; if (!av->i_quant_factor) - av->i_quant_factor = 0.8; + av->i_quant_factor = -0.8; if (!av->b_quant_factor) av->b_quant_factor = 1.25; if (!av->b_quant_offset) |