diff options
author | sr55 <[email protected]> | 2012-05-20 15:39:03 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-05-20 15:39:03 +0000 |
commit | 5e65c94c9f4785d05789e7b11056e9063d0d852f (patch) | |
tree | 691b298fa93b4a3974dba95fef9568146b8397d5 /win/CS/HandBrake.ApplicationServices | |
parent | a74a875a44e65737bf1b913d94c806498aac1efe (diff) |
WinGui: Range of bug fixes and UI tweaks.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4691 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/PresetService.cs | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs index 24161a27b..f2d5828f5 100644 --- a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs +++ b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs @@ -33,6 +33,7 @@ namespace HandBrake.ApplicationServices.Model this.x264Preset = x264Preset.None;
this.x264Profile = x264Profile.None;
this.X264Tune = x264Tune.None;
+ this.Modulus = 16;
}
/// <summary>
diff --git a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs index f22f84596..68bf80481 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs @@ -218,7 +218,6 @@ namespace HandBrake.ApplicationServices.Services this.UpdatePresetFiles();
}
-
/// <summary>
/// Get a Preset
/// </summary>
@@ -256,9 +255,6 @@ namespace HandBrake.ApplicationServices.Services /// <summary>
/// Reads the CLI's CLI output format and load's them into the preset List Preset
/// </summary>
- /// <param name="cliPath">
- /// The Path to the CLI, leave blank for current folder.
- /// </param>
public void UpdateBuiltInPresets()
{
// Create a new tempory file and execute the CLI to get the built in Presets.
@@ -312,6 +308,7 @@ namespace HandBrake.ApplicationServices.Services CropSettings = pic,
Description = string.Empty, // Maybe one day we will populate this.
IsBuildIn = true,
+ UsePictureFilters = true,
Task = QueryParserUtility.Parse(presetName[2])
};
|