diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index a4d53780f1..caf5f60338 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -815,7 +815,7 @@ static int read_decoding_params(MLPDecodeContext *m, GetBitContext *gbp, return 0; } -#define MSB_MASK(bits) (-1u << bits) +#define MSB_MASK(bits) (-1u << (bits)) /** Generate PCM samples using the prediction filters and residual values * read from the data stream, and update the filter state. */