diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-12-21 15:49:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-12-21 15:49:40 +0000 |
commit | 5970845f1f5cc604586a4bd503a2eb0aaf5996e1 (patch) | |
tree | 82f1cec44faa0f5023fc0f5335369588ae2e59d3 /libavcodec/mpegvideo.c | |
parent | 66884a29463e36854b1b665743504e3747009290 (diff) | |
download | ffmpeg-5970845f1f5cc604586a4bd503a2eb0aaf5996e1.tar.gz |
FIXME has already been fixed ages ago
Originally committed as revision 7348 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index a122b89004..3429fb6ccc 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -4344,7 +4344,7 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x, s->dquant= s->qscale - last_qp; if(s->out_format==FMT_H263){ - s->dquant= clip(s->dquant, -2, 2); //FIXME RD + s->dquant= clip(s->dquant, -2, 2); if(s->codec_id==CODEC_ID_MPEG4){ if(!s->mb_intra){ |