Browse Source

avcodec/dss_sp: Protect DSS_SP_FORMULA() with a set of outside brackets

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
4f1c1b26f2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dss_sp.c

+ 1
- 1
libavcodec/dss_sp.c View File

@@ -33,7 +33,7 @@

#define DSS_SP_FRAME_SIZE 42
#define DSS_SP_SAMPLE_COUNT (66 * SUBFRAMES)
#define DSS_SP_FORMULA(a, b, c) ((((a) << 15) + (b) * (c)) + 0x4000) >> 15
#define DSS_SP_FORMULA(a, b, c) (((((a) << 15) + (b) * (c)) + 0x4000) >> 15)

typedef struct DssSpSubframe {
int16_t gain;


Loading…
Cancel
Save