Browse Source

fix AC3ENC_OPT_MODE_ON/OFF

The values were reversed.

Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
tags/n0.9
John Stebbins Justin Ruggles 13 years ago
parent
commit
5f3fb59953
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/ac3enc.h

+ 2
- 2
libavcodec/ac3enc.h View File

@@ -73,8 +73,8 @@ typedef int64_t CoefSumType;
#define AC3ENC_OPT_OFF 0
#define AC3ENC_OPT_ON 1
#define AC3ENC_OPT_NOT_INDICATED 0
#define AC3ENC_OPT_MODE_ON 1
#define AC3ENC_OPT_MODE_OFF 2
#define AC3ENC_OPT_MODE_ON 2
#define AC3ENC_OPT_MODE_OFF 1

/* specific option values */
#define AC3ENC_OPT_LARGE_ROOM 1


Loading…
Cancel
Save