diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-25 21:41:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-25 21:41:35 +0200 |
commit | e5dc7439e33c44d1c524776d3b543aebaf2c04a4 (patch) | |
tree | 81db06c2d7fe08e2ab60019c7a7b3d4392b696a5 | |
parent | a3950a90f64377327197009ce00f1256d81f3408 (diff) | |
download | ffmpeg-e5dc7439e33c44d1c524776d3b543aebaf2c04a4.tar.gz |
avcodec/proresenc_anatoliy: Fix () in macros
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/proresenc_anatoliy.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c index 80ce1359c5..dd75ad5b06 100644 --- a/libavcodec/proresenc_anatoliy.c +++ b/libavcodec/proresenc_anatoliy.c @@ -183,11 +183,11 @@ static void encode_codeword(PutBitContext *pb, int val, int codebook) } } -#define QSCALE(qmat,ind,val) ((val) / (qmat[ind])) -#define TO_GOLOMB(val) ((val << 1) ^ (val >> 31)) -#define DIFF_SIGN(val, sign) ((val >> 31) ^ sign) -#define IS_NEGATIVE(val) (((val >> 31) ^ -1) + 1) -#define TO_GOLOMB2(val,sign) (val==0 ? 0 : (val << 1) + sign) +#define QSCALE(qmat,ind,val) ((val) / ((qmat)[ind])) +#define TO_GOLOMB(val) (((val) << 1) ^ ((val) >> 31)) +#define DIFF_SIGN(val, sign) (((val) >> 31) ^ (sign)) +#define IS_NEGATIVE(val) ((((val) >> 31) ^ -1) + 1) +#define TO_GOLOMB2(val,sign) ((val)==0 ? 0 : ((val) << 1) + (sign)) static av_always_inline int get_level(int val) { |