mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-30 11:24:17 +00:00
avcodec/mss4: Fix () in MKVAL() macro
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6e720c5c81
commit
cf7ff0146c
@ -363,7 +363,7 @@ static int get_value_cached(GetBitContext *gb, int vec_pos, uint8_t *vec,
|
|||||||
return prev[component];
|
return prev[component];
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MKVAL(vals) (vals[0] | (vals[1] << 3) | (vals[2] << 6))
|
#define MKVAL(vals) ((vals)[0] | ((vals)[1] << 3) | ((vals)[2] << 6))
|
||||||
|
|
||||||
/* Image mode - the hardest to comprehend MSS4 coding mode.
|
/* Image mode - the hardest to comprehend MSS4 coding mode.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user