diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-25 21:42:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-25 21:42:19 +0200 |
commit | 9f50d3b944a9797186af2e309eeb3a97a1f009d8 (patch) | |
tree | ab97d45df0f660ed8e08a57770fa45655f947caf /libavcodec/rv34.c | |
parent | a45e6b7bc5ad3931ba880efd9b6b853240ab99bb (diff) | |
download | ffmpeg-9f50d3b944a9797186af2e309eeb3a97a1f009d8.tar.gz |
avcodec/rv34: Fix () in GET_PTS_DIFF() macro
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rv34.c')
-rw-r--r-- | libavcodec/rv34.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c index 4bae2c4112..b275c550f4 100644 --- a/libavcodec/rv34.c +++ b/libavcodec/rv34.c @@ -509,7 +509,7 @@ static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int } } -#define GET_PTS_DIFF(a, b) ((a - b + 8192) & 0x1FFF) +#define GET_PTS_DIFF(a, b) (((a) - (b) + 8192) & 0x1FFF) /** * Calculate motion vector component that should be added for direct blocks. |