Commit c89be82c authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vp8: fix () in macros

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent aab23f5d
......@@ -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)
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment