avcodec/vp9: fix () in macros

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2014-06-18 02:55:35 +02:00
parent 28bf111503
commit aab23f5ddd
2 changed files with 2 additions and 2 deletions

View File

@@ -896,7 +896,7 @@ itxfm_wrapper(iadst, idct, sz, bits, 0) \
itxfm_wrapper(idct, iadst, sz, bits, 0) \
itxfm_wrapper(iadst, iadst, sz, bits, 0)
#define IN(x) in[x * stride]
#define IN(x) in[(x) * stride]
static av_always_inline void idct4_1d(const int16_t *in, ptrdiff_t stride,
int16_t *out, int pass)