diff mpegvideo.c @ 661:a0901e38c564 libavcodec

fixing interlaced mpeg4 decoding
author michaelni
date Thu, 12 Sep 2002 18:28:17 +0000
parents e47fa3e3f2d5
children 00a882f626bd
line wrap: on
line diff
--- a/mpegvideo.c	Thu Sep 12 15:22:14 2002 +0000
+++ b/mpegvideo.c	Thu Sep 12 18:28:17 2002 +0000
@@ -1480,7 +1480,6 @@
                 motion_x = s->mv[0][0][0] + s->mv[0][1][0];
                 motion_y = s->mv[0][0][1] + s->mv[0][1][1];
                 motion_x = (motion_x>>1) | (motion_x&1);
-                motion_y = (motion_y>>1) | (motion_y&1);
             }
             /* no update if 8X8 because it has been done during parsing */
             s->motion_val[xy][0] = motion_x;