Commit e62f6221 authored by Reimar Döffinger's avatar Reimar Döffinger

Remove a useless "& 0xF"

Originally committed as revision 18598 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 977d8134
......@@ -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++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment