Commit 72a52b31 authored by Michael Niedermayer's avatar Michael Niedermayer

fixing MV range in h263

Originally committed as revision 351 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2efe097a
......@@ -686,8 +686,8 @@ void h263_encode_init(MpegEncContext *s)
}
s->mv_penalty= mv_penalty;
// use fcodes >1 only for mpeg4 FIXME
if(!s->h263_msmpeg4 && s->h263_pred) s->fcode_tab= fcode_tab;
// use fcodes >1 only for mpeg4&h263 FIXME
if(!s->h263_msmpeg4) s->fcode_tab= fcode_tab;
}
static void h263_encode_block(MpegEncContext * s, DCTELEM * block, int n)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment