From f10bd870bff404c36f34b17398bc43b368068ca1 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 24 Jun 2002 15:02:52 +0000 Subject: [PATCH] 4mv bugfix Originally committed as revision 702 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/motion_est.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c index 8f2ffa4..21d1a74 100644 --- a/libavcodec/motion_est.c +++ b/libavcodec/motion_est.c @@ -1715,9 +1715,9 @@ void ff_fix_long_p_mvs(MpegEncContext * s) s->mb_type[i] |= MB_TYPE_INTRA; } } - xy+=2; - i++; } + xy+=2; + i++; } } } -- 2.7.4