diff options
author | sr55 <[email protected]> | 2016-01-03 20:55:20 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-01-03 20:55:20 +0000 |
commit | 018396ad1821b2ae1fbdd6b3373fa93ec0f2b8ac (patch) | |
tree | ee3da88f80f9f063e4499516bd6f1732b7703afe /win | |
parent | eca730fe319ad47ce2cf98ca99d108f897f7760e (diff) |
WinGui: Presets: Fix loading of container type.
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs b/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs index d7a406048..b87119205 100644 --- a/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs +++ b/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs @@ -611,8 +611,11 @@ namespace HandBrakeWPF.Services.Presets.Factories default:
return OutputFormat.Mp4;
case "m4v":
+ case "mp4":
+ case "av_mp4":
return OutputFormat.Mp4;
case "mkv":
+ case "av_mkv":
return OutputFormat.Mkv;
}
}
|