mirror of https://git.ffmpeg.org/ffmpeg.git
Remove a useless "& 0xF"
Originally committed as revision 18598 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
977d813447
commit
e62f622193
|
@ -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…
Reference in New Issue