]> granicus.if.org Git - handbrake/commitdiff
WinGui: Make sure to set libdvdnav setting before encoding. This fixes an issue where...
authorsr55 <sr55.hb@outlook.com>
Sat, 7 Jan 2017 19:58:01 +0000 (19:58 +0000)
committersr55 <sr55.hb@outlook.com>
Sat, 7 Jan 2017 19:58:17 +0000 (19:58 +0000)
win/CS/HandBrakeWPF/Services/Encode/LibEncode.cs

index 58505659bed9941c62ece30a44d66b4ba5f92849..d8f25373abc52021765cb5619992d4bad6ebdc36 100644 (file)
@@ -75,6 +75,8 @@ namespace HandBrakeWPF.Services.Encode
                 // Setup the HandBrake Instance
                 this.log.Reset(); // Reset so we have a clean log for the start of the encode.
                 this.ServiceLogMessage("Starting Encode ...");
+
+                HandBrakeUtils.SetDvdNav(!configuration.IsDvdNavDisabled);
                 this.instance = task.IsPreviewEncode ? HandBrakeInstanceManager.GetPreviewInstance(configuration.Verbosity) : HandBrakeInstanceManager.GetEncodeInstance(configuration.Verbosity);
                 
                 this.instance.EncodeCompleted += this.InstanceEncodeCompleted;