Commit 27e80ebf authored by michael's avatar michael

h263 4mv encoding fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2755 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c5c4d4a8
......@@ -1123,7 +1123,7 @@ void h263_encode_mb(MpegEncContext * s,
/* compute cbp */
cbp= get_p_cbp(s, block, motion_x, motion_y);
if ((cbp | motion_x | motion_y | s->dquant) == 0) {
if ((cbp | motion_x | motion_y | s->dquant | (s->mv_type - MV_TYPE_16X16)) == 0) {
/* skip macroblock */
put_bits(&s->pb, 1, 1);
if(interleaved_stats){
......
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