Commit fa915d41 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/aac: fix () in IS_CODEBOOK_UNSIGNED macro

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4372fb7a
......@@ -81,7 +81,7 @@ enum BandType {
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 {
AAC_CHANNEL_OFF = 0,
......
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