From d501b986a97634ddcc53a4cb62e69e01042e9366 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 18 Feb 2015 01:55:15 +0100 Subject: [PATCH] swscale/bayer_template: Add () to protect the argument of BAYER_READ() Signed-off-by: Michael Niedermayer --- libswscale/bayer_template.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libswscale/bayer_template.c b/libswscale/bayer_template.c index 67ab2aee09..1af1b6056e 100644 --- a/libswscale/bayer_template.c +++ b/libswscale/bayer_template.c @@ -36,12 +36,12 @@ #define BAYER_SHIFT 0 #endif #if defined(BAYER_16LE) -#define BAYER_READ(x) AV_RL16(&x) +#define BAYER_READ(x) AV_RL16(&(x)) #define BAYER_SIZEOF 2 #define BAYER_SHIFT 8 #endif #if defined(BAYER_16BE) -#define BAYER_READ(x) AV_RB16(&x) +#define BAYER_READ(x) AV_RB16(&(x)) #define BAYER_SIZEOF 2 #define BAYER_SHIFT 8 #endif