summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.mm
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-04-04 20:04:43 +0000
committerdynaflash <[email protected]>2007-04-04 20:04:43 +0000
commit50b599d43307ac4829627e92f775dfa9052bf444 (patch)
tree049505e5dfa80573a3e9ebefb769b624f3cab261 /macosx/Controller.mm
parentd8816f075ebda1282103e2998efa0bcf1a63662b (diff)
MacGui: disable Vorbis 6 channel encoding since it is broken in libhb.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@477 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r--macosx/Controller.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index f3e6133c1..c6232f308 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -851,7 +851,7 @@ static int FormatSettings[3][4] =
job->abitrate = hb_audio_bitrates[[fAudBitratePopUp
indexOfSelectedItem]].rate;
/* have we selected that 5.1 should be extracted as AAC? */
- if ((job->acodec == HB_ACODEC_FAAC || job->acodec == HB_ACODEC_VORBIS) && [fAudLang1SurroundCheck isEnabled] && [fAudLang1SurroundCheck state] == NSOnState) {
+ if (job->acodec == HB_ACODEC_FAAC && [fAudLang1SurroundCheck isEnabled] && [fAudLang1SurroundCheck state] == NSOnState) {
job->surround = 1;
} else {
job->surround = 0;
@@ -1367,8 +1367,8 @@ static int FormatSettings[3][4] =
int codecs = [fDstCodecsPopUp indexOfSelectedItem];
int acodec = FormatSettings[format][codecs] & HB_ACODEC_MASK;
- /* we only offer the option to extract 5.1 to 6-channel if the selected audio codec is AAC or Vorbis*/
- if (acodec == HB_ACODEC_FAAC || acodec == HB_ACODEC_VORBIS) {
+ /* we only offer the option to extract 5.1 to 6-channel if the selected audio codec is AAC*/
+ if (acodec == HB_ACODEC_FAAC) {
bool doneaudios = false;
int thisaudio = 0;
@@ -1391,7 +1391,7 @@ static int FormatSettings[3][4] =
}
}
- /* If we are extracting to AAC or Vorbis, and any of our soundtracks were 5.1, then enable the checkbox */
+ /* If we are extracting to AAC, and any of our soundtracks were 5.1, then enable the checkbox */
if (foundfiveoneaudio) {
[fAudLang1SurroundCheck setEnabled: YES];
/* Check default surround sound pref and if it is YES, lets also check the checkbox */