avcodec/aac: fix () in IS_CODEBOOK_UNSIGNED macro

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/72/head
Michael Niedermayer 11 years ago
parent 4372fb7a57
commit fa915d4193
  1. 2
      libavcodec/aac.h

@ -81,7 +81,7 @@ enum BandType {
INTENSITY_BT = 15, ///< Scalefactor data are intensity stereo positions. INTENSITY_BT = 15, ///< Scalefactor data are intensity stereo positions.
}; };
#define IS_CODEBOOK_UNSIGNED(x) ((x - 1) & 10) #define IS_CODEBOOK_UNSIGNED(x) (((x) - 1) & 10)
enum ChannelPosition { enum ChannelPosition {
AAC_CHANNEL_OFF = 0, AAC_CHANNEL_OFF = 0,

Loading…
Cancel
Save