[FFmpeg-cvslog] avcodec/mss4: Fix () in MKVAL() macro
Michael Niedermayer
git at videolan.org
Mon Jun 23 17:56:00 CEST 2014
ffmpeg | branch: release/2.1 | Michael Niedermayer <michaelni at gmx.at> | Sun May 25 05:19:09 2014 +0200| [66a9c50d42e01f23dfed12dc55112b4d27b11f8f] | committer: Michael Niedermayer
avcodec/mss4: Fix () in MKVAL() macro
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit cf7ff0146c76b93c32edf5230a28b9590acf5105)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=66a9c50d42e01f23dfed12dc55112b4d27b11f8f
---
libavcodec/mss4.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/mss4.c b/libavcodec/mss4.c
index 662cf24..6dadf07 100644
--- a/libavcodec/mss4.c
+++ b/libavcodec/mss4.c
@@ -364,7 +364,7 @@ static int get_value_cached(GetBitContext *gb, int vec_pos, uint8_t *vec,
return prev[component];
}
-#define MKVAL(vals) (vals[0] | (vals[1] << 3) | (vals[2] << 6))
+#define MKVAL(vals) ((vals)[0] | ((vals)[1] << 3) | ((vals)[2] << 6))
/* Image mode - the hardest to comprehend MSS4 coding mode.
*
More information about the ffmpeg-cvslog
mailing list