Commit 09c45e69 authored by michaelni's avatar michaelni

fixing MV range in h263


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@351 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4bc28436
......@@ -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