[FFmpeg-cvslog] avcodec/mss4: Fix () in MKVAL() macro
Michael Niedermayer
git at videolan.org
Wed Jun 25 17:01:44 CEST 2014
ffmpeg | branch: release/2.0 | Michael Niedermayer <michaelni at gmx.at> | Sun May 25 05:19:09 2014 +0200| [3c169251eec2f4786f54187867eb45277a9eeca4] | 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=3c169251eec2f4786f54187867eb45277a9eeca4
---
libavcodec/mss4.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/mss4.c b/libavcodec/mss4.c
index c518fda..583dfab 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