summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authoreddyg <[email protected]>2008-02-15 23:37:54 +0000
committereddyg <[email protected]>2008-02-15 23:37:54 +0000
commit0b8c4601d56a6cc153d3543b782a975a0e725fc4 (patch)
tree6a4e0242bae7001db90e1fc8b821ac9453d7a20e /macosx
parent89e85a13cc9f83f7b82130113cd26a998a4fd270 (diff)
Allow multiple output audio tracks from a single DVD audio track.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1266 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Controller.mm2
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 279678ca5..8ef13d725 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -2786,6 +2786,7 @@ the user is using "Custom" settings by determining the sender*/
/* get the index of the selected audio */
int thisAudioIndex = [sender indexOfSelectedItem] - 1;
+#if 0
/* Handbrake can't currently cope with ripping the same source track twice */
/* So, if this audio is also selected in the other audio track popup, set that popup's selection to "none" */
/* get a reference to the two audio track popups */
@@ -2797,6 +2798,7 @@ the user is using "Custom" settings by determining the sender*/
[otherAudioPopUp selectItemAtIndex: 0];
[self audioTrackPopUpChanged: otherAudioPopUp];
}
+#endif
/* pointer for the hb_audio_s struct we will use later on */
hb_audio_t * audio;