diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-18 02:55:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-18 03:13:37 +0200 |
commit | aab23f5ddd3d25feb300049683437d9c1cd6336c (patch) | |
tree | ca2f8fe3cbdeb21e335cba45e50fdde39a86b215 /libavcodec/vp9dsp.c | |
parent | 28bf11150346cede3a65f5a00e12cc265e0ccd5a (diff) | |
download | ffmpeg-aab23f5ddd3d25feb300049683437d9c1cd6336c.tar.gz |
avcodec/vp9: fix () in macros
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp9dsp.c')
-rw-r--r-- | libavcodec/vp9dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp9dsp.c b/libavcodec/vp9dsp.c index e2f99f72c8..6356adde32 100644 --- a/libavcodec/vp9dsp.c +++ b/libavcodec/vp9dsp.c @@ -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) |