Remove a useless "& 0xF"

Originally committed as revision 18598 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Reimar Döffinger 16 years ago
parent 977d813447
commit e62f622193
  1. 2
      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++;

Loading…
Cancel
Save