Commit fa160af0 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mlpdec: fix () in MSB_MASK() macro

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f276bf30
......@@ -893,7 +893,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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment