Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
fa160af08b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mlpdec.c

+ 1
- 1
libavcodec/mlpdec.c View File

@@ -893,7 +893,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. */


Loading…
Cancel
Save