Commit 3f743e3e authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
(cherry picked from commit fa160af0)
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f2dbd64b
...@@ -872,7 +872,7 @@ static int read_decoding_params(MLPDecodeContext *m, GetBitContext *gbp, ...@@ -872,7 +872,7 @@ static int read_decoding_params(MLPDecodeContext *m, GetBitContext *gbp,
return 0; return 0;
} }
#define MSB_MASK(bits) (-1u << bits) #define MSB_MASK(bits) (-1u << (bits))
/** Generate PCM samples using the prediction filters and residual values /** Generate PCM samples using the prediction filters and residual values
* read from the data stream, and update the filter state. */ * 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