fixing MV range in h263

Originally committed as revision 351 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2002-03-23 00:31:33 +00:00
parent 2efe097a7e
commit 72a52b3142
1 changed files with 2 additions and 2 deletions

View File

@ -686,8 +686,8 @@ void h263_encode_init(MpegEncContext *s)
} }
s->mv_penalty= mv_penalty; s->mv_penalty= mv_penalty;
// use fcodes >1 only for mpeg4 FIXME // use fcodes >1 only for mpeg4&h263 FIXME
if(!s->h263_msmpeg4 && s->h263_pred) s->fcode_tab= fcode_tab; if(!s->h263_msmpeg4) s->fcode_tab= fcode_tab;
} }
static void h263_encode_block(MpegEncContext * s, DCTELEM * block, int n) static void h263_encode_block(MpegEncContext * s, DCTELEM * block, int n)