summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudio.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBAudio.m')
-rw-r--r--macosx/HBAudio.m15
1 files changed, 13 insertions, 2 deletions
diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m
index 194d4dd16..920cd13ae 100644
--- a/macosx/HBAudio.m
+++ b/macosx/HBAudio.m
@@ -135,6 +135,13 @@ static NSMutableArray *masterBitRateArray = nil;
[NSNumber numberWithInt: HB_ACODEC_DCA], keyAudioMustMatchTrack,
nil]];
[masterCodecArray addObject: [NSDictionary dictionaryWithObjectsAndKeys:
+ NSLocalizedString(@"DTS-HD Passthru", @"DTS-HD Passthru"), keyAudioCodecName,
+ [NSNumber numberWithInt: HB_ACODEC_DCA_HD_PASS], keyAudioCodec,
+ [NSNumber numberWithBool: NO], keyAudioMP4,
+ [NSNumber numberWithBool: YES], keyAudioMKV,
+ [NSNumber numberWithInt: HB_ACODEC_DCA_HD], keyAudioMustMatchTrack,
+ nil]];
+ [masterCodecArray addObject: [NSDictionary dictionaryWithObjectsAndKeys:
NSLocalizedString(@"Vorbis (vorbis)", @"Vorbis (vorbis)"), keyAudioCodecName,
[NSNumber numberWithInt: HB_ACODEC_VORBIS], keyAudioCodec,
[NSNumber numberWithBool: NO], keyAudioMP4,
@@ -151,6 +158,10 @@ static NSMutableArray *masterBitRateArray = nil;
NSLocalizedString(@"DTS Passthru", @"DTS Passthru"), keyAudioMixdownName,
[NSNumber numberWithInt: HB_ACODEC_DCA_PASS], keyAudioMixdown,
nil]];
+ [masterMixdownArray addObject: [NSDictionary dictionaryWithObjectsAndKeys:
+ NSLocalizedString(@"DTS-HD Passthru", @"DTS-HD Passthru"), keyAudioMixdownName,
+ [NSNumber numberWithInt: HB_ACODEC_DCA_HD_PASS], keyAudioMixdown,
+ nil]];
for (i = 0; i < hb_audio_mixdowns_count; i++)
{
[masterMixdownArray addObject: [NSDictionary dictionaryWithObjectsAndKeys:
@@ -639,7 +650,7 @@ static NSMutableArray *masterBitRateArray = nil;
if (YES == retval)
{
int myMixdown = [[[self mixdown] objectForKey: keyAudioMixdown] intValue];
- if (HB_ACODEC_AC3_PASS == myMixdown || HB_ACODEC_DCA_PASS == myMixdown)
+ if (myMixdown & HB_ACODEC_PASS_FLAG)
{
retval = NO;
}
@@ -672,7 +683,7 @@ static NSMutableArray *masterBitRateArray = nil;
if (YES == retval)
{
int myCodecCodec = [[[self codec] objectForKey: keyAudioCodec] intValue];
- if (HB_ACODEC_AC3_PASS == myCodecCodec || HB_ACODEC_DCA_PASS == myCodecCodec)
+ if (myCodecCodec & HB_ACODEC_PASS_FLAG)
{
retval = NO;
}