OSDN Git Service

avcodec/bmvvideo: Add () to protect NEXT_BYTE() argument
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 16 Feb 2015 21:56:09 +0000 (22:56 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 16 Feb 2015 22:09:09 +0000 (23:09 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/bmvvideo.c

index 5143b2a..76a3d6f 100644 (file)
@@ -51,7 +51,7 @@ typedef struct BMVDecContext {
     const uint8_t *stream;
 } BMVDecContext;
 
-#define NEXT_BYTE(v) v = forward ? v + 1 : v - 1;
+#define NEXT_BYTE(v) (v) = forward ? (v) + 1 : (v) - 1;
 
 static int decode_bmv_frame(const uint8_t *source, int src_len, uint8_t *frame, int frame_off)
 {