Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-25 07:18:47 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-25 07:18:47 +0400
commit6e720c5c815e510188a0bda654662383f2c48050 (patch)
treeaaa66637933df9c80c5717613fffc9574ac33cb0 /libavcodec/mss34dsp.c
parentfa160af08b6f42f17e93124aef86e3f6eec70d51 (diff)
avcodec/mss34dsp: fix () in SOP* macros
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mss34dsp.c')
-rw-r--r--libavcodec/mss34dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mss34dsp.c b/libavcodec/mss34dsp.c
index e4d4299805..0397add17d 100644
--- a/libavcodec/mss34dsp.c
+++ b/libavcodec/mss34dsp.c
@@ -84,8 +84,8 @@ void ff_mss34_gen_quant_mat(uint16_t *qmat, int quality, int luma)
blk[6 * step] = (-(t3 + t7) + t8 + tA) >> shift; \
blk[7 * step] = (-(t1 + t6) + t9 + tB) >> shift; \
-#define SOP_ROW(a) ((a) << 16) + 0x2000
-#define SOP_COL(a) ((a + 32) << 16)
+#define SOP_ROW(a) (((a) << 16) + 0x2000)
+#define SOP_COL(a) (((a) + 32) << 16)
void ff_mss34_dct_put(uint8_t *dst, int stride, int *block)
{