diff options
author | jstebbins <[email protected]> | 2011-11-02 21:29:17 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-11-02 21:29:17 +0000 |
commit | c1980da5f96ab9a19dfc5a63bdd7b5264d4b692b (patch) | |
tree | 1abc528b22261ad070e6a3fa2db04430ad0cae1e /libhb/common.h | |
parent | cb4d945ceb80b302b5c944b5b9dce37a77386add (diff) |
Fix ac3 mixdown to mono
we were setting the wrong mixdown flag. Funny how something like this
can go for so long unnoticed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4337 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h index b8eee7dd2..a657eb2ff 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -391,7 +391,7 @@ struct hb_job_s #define HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK 0x0000000F /* define the HB_AMIXDOWN_XXXX values */ #define HB_AMIXDOWN_NONE 0x00000000 -#define HB_AMIXDOWN_MONO 0x01000001 +#define HB_AMIXDOWN_MONO 0x01000011 // DCA_FORMAT of DCA_MONO = 0 = 0x000 // A52_FORMAT of A52_MONO = 1 = 0x01 // discrete channel count of 1 |