From e62f62219353d333df45aa7f8327631d6cd9d31d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Fri, 17 Apr 2009 20:01:45 +0000 Subject: [PATCH] Remove a useless "& 0xF" Originally committed as revision 18598 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/xan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/xan.c b/libavcodec/xan.c index 4152ff454..bb6dab49c 100644 --- a/libavcodec/xan.c +++ b/libavcodec/xan.c @@ -333,7 +333,7 @@ static void xan_wc3_decode_frame(XanContext *s) { } } else { /* run-based motion compensation from last frame */ - motion_x = (*vector_segment >> 4) & 0xF; + motion_x = *vector_segment >> 4; motion_y = *vector_segment & 0xF; vector_segment++; -- 2.11.0