summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-02-17 11:01:03 +0000
committerdynaflash <[email protected]>2008-02-17 11:01:03 +0000
commit2bc8b2d4147eefd03b9d6854a62ea6c4adb53a58 (patch)
treed8075d4ceb53a273842c51ff80ac7e224e6498b4
parent9084dafc40f3cbb056a0099395eaa77484f8c43f (diff)
MacGui: add HB_AMIXDOWN_AC3 to HB QueueController so it reports the new hybrid sound track(s) correctly
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1279 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/HBQueueController.mm5
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm
index 242b8744f..594bce09f 100644
--- a/macosx/HBQueueController.mm
+++ b/macosx/HBQueueController.mm
@@ -517,8 +517,9 @@ static NSDictionary* _shortHeightAttribute = NULL;
jobAudioInfo = [jobAudioInfo stringByAppendingString:[NSString stringWithFormat:@", Track %d: Dolby Surround", ai + 1]];
if (audio_mixdowns[ai] == HB_AMIXDOWN_DOLBYPLII)
jobAudioInfo = [jobAudioInfo stringByAppendingString:[NSString stringWithFormat:@", Track %d: Dolby Pro Logic II", ai + 1]];
- if (audio_mixdowns[ai] == HB_AMIXDOWN_6CH)
- jobAudioInfo = [jobAudioInfo stringByAppendingString:[NSString stringWithFormat:@", Track %d: 6-channel discreet", ai + 1]];
+ if (audio_mixdowns[ai] == HB_AMIXDOWN_AC3)
+ jobAudioInfo = [jobAudioInfo stringByAppendingString:[NSString stringWithFormat:@", Pass-Through", ai + 1]];
+
}
if (withIcon) // implies indent the info
[finalString appendString: @"\t" withAttributes:detailBoldAttr];