Remove a useless "& 0xF"

Originally committed as revision 18598 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-04-17 20:01:45 +00:00
parent 977d813447
commit e62f622193
1 changed files with 1 additions and 1 deletions

View File

@ -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++;