diff options
author | Rodeo <[email protected]> | 2012-01-24 17:13:26 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-01-24 17:13:26 +0000 |
commit | b0c88b1f459ffbb9baeb13b88f97293d170fcc74 (patch) | |
tree | 3a56ed5b5a269794fabc185133d528104bb565dc /macosx/Controller.h | |
parent | dab8b3b4cfbe05f84bb89fb76252c68c41d3a06f (diff) |
MacGui: add Auto Passthru support.
By default, all available passthru codecs are allowed, and the fallback is the AC3 encoder.
Advanced settings can be enabled in Preferences > Audio, but are disabled by default.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4419 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index 58a8e2e00..62aad34dd 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -166,7 +166,17 @@ BOOL fIsDragging; /* New Audio box */ IBOutlet HBAudioController * fAudioDelegate; - + + /* New Audio Auto Passthru box */ + IBOutlet NSBox * fAudioAutoPassthruBox; + IBOutlet NSButton * fAudioAllowAACPassCheck; + IBOutlet NSButton * fAudioAllowAC3PassCheck; + IBOutlet NSButton * fAudioAllowDTSHDPassCheck; + IBOutlet NSButton * fAudioAllowDTSPassCheck; + IBOutlet NSButton * fAudioAllowMP3PassCheck; + IBOutlet NSButton * fAudioFallbackPopUp; + + /* Chapters box */ IBOutlet NSButton * fCreateChapterMarkers; IBOutlet NSTableView * fChapterTable; |