From: sr55 Date: Sun, 3 Jan 2016 21:12:34 +0000 (+0000) Subject: WinGui: Don't set mixdown to dpl2 for Passthru. Should now use internal libhb defaults. X-Git-Tag: 1.0.0~724 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e6b7a64fd8b9637dc511b060cc15bc4137fa1f3;p=handbrake WinGui: Don't set mixdown to dpl2 for Passthru. Should now use internal libhb defaults. --- diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Mixdown.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Mixdown.cs index 05f554e6b..66a2d4e1a 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Mixdown.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Mixdown.cs @@ -22,11 +22,11 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding DolbyProLogicII = 0, [Display(Name = "None")] - [ShortName("dpl2")] + [ShortName("none")] None, [Display(Name = "Automatic")] - [ShortName("dpl2")] + [ShortName("none")] Auto, [Display(Name = "Mono")] diff --git a/win/CS/HandBrakeWPF/Services/Encode/Model/Models/AudioTrack.cs b/win/CS/HandBrakeWPF/Services/Encode/Model/Models/AudioTrack.cs index dea5f41e6..87e6caaaa 100644 --- a/win/CS/HandBrakeWPF/Services/Encode/Model/Models/AudioTrack.cs +++ b/win/CS/HandBrakeWPF/Services/Encode/Model/Models/AudioTrack.cs @@ -143,7 +143,7 @@ namespace HandBrakeWPF.Services.Encode.Model.Models { get { - return this.mixDown; + return this.IsPassthru ? Mixdown.Auto : this.mixDown; } set