Commit 208e45c9 authored by reimar's avatar reimar

Remove a useless "& 0xF"


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18598 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7d236ede
...@@ -333,7 +333,7 @@ static void xan_wc3_decode_frame(XanContext *s) { ...@@ -333,7 +333,7 @@ static void xan_wc3_decode_frame(XanContext *s) {
} }
} else { } else {
/* run-based motion compensation from last frame */ /* run-based motion compensation from last frame */
motion_x = (*vector_segment >> 4) & 0xF; motion_x = *vector_segment >> 4;
motion_y = *vector_segment & 0xF; motion_y = *vector_segment & 0xF;
vector_segment++; 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