diff options
author | dynaflash <[email protected]> | 2010-11-30 17:19:03 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-11-30 17:19:03 +0000 |
commit | 52146d5dab53232965a8599993bd538c769b6a11 (patch) | |
tree | 90bdc6863973e81fccfffa79164124961769b04f | |
parent | 462eac327c30522a9301d5c8feeec849fd556f06 (diff) |
MacGui: Audio mixdown fix
- Patch by Rodeo. Thanks!
- Update the list of permitted mixdowns when the source audio track changes.
- Discussed here: http://forum.handbrake.fr/viewtopic.php?f=4&t=18840
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3689 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/HBAudio.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m index fe5d5da40..c1c0cd591 100644 --- a/macosx/HBAudio.m +++ b/macosx/HBAudio.m @@ -428,6 +428,7 @@ static NSMutableArray *masterBitRateArray = nil; else if (YES == [keyPath isEqualToString: @"track"]) { if (nil != [self track]) { [self updateCodecs]; + [self updateMixdowns: YES]; if (YES == [self enabled]) { [self setSampleRate: [[self sampleRates] objectAtIndex: 0]]; // default to Auto } |