diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-18 02:55:49 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-18 03:13:37 +0200 |
commit | c89be82c986f02c504a45d1dfcb4ea5be644fb8e (patch) | |
tree | f1f92a6a9d210c7489096e63153f6c4bd9e69db7 | |
parent | aab23f5ddd3d25feb300049683437d9c1cd6336c (diff) | |
download | ffmpeg-c89be82c986f02c504a45d1dfcb4ea5be644fb8e.tar.gz |
avcodec/vp8: fix () in macros
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/vp8.c | 2 | ||||
-rw-r--r-- | libavcodec/vp8dsp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 6547eb90a5..79c401d354 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -2755,7 +2755,7 @@ static av_cold int vp8_decode_init_thread_copy(AVCodecContext *avctx) return 0; } -#define REBASE(pic) pic ? pic - &s_src->frames[0] + &s->frames[0] : NULL +#define REBASE(pic) ((pic) ? (pic) - &s_src->frames[0] + &s->frames[0] : NULL) static int vp8_decode_update_thread_context(AVCodecContext *dst, const AVCodecContext *src) diff --git a/libavcodec/vp8dsp.c b/libavcodec/vp8dsp.c index f2a7f32079..e1a91bb8c6 100644 --- a/libavcodec/vp8dsp.c +++ b/libavcodec/vp8dsp.c @@ -254,7 +254,7 @@ MK_IDCT_DC_ADD4_C(vp8) int av_unused q2 = p[ 2 * stride]; \ int av_unused q3 = p[ 3 * stride]; -#define clip_int8(n) (cm[n + 0x80] - 0x80) +#define clip_int8(n) (cm[(n) + 0x80] - 0x80) static av_always_inline void filter_common(uint8_t *p, ptrdiff_t stride, int is4tap, int is_vp7) |