diff options
author | sr55 <[email protected]> | 2012-12-31 13:36:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-12-31 13:36:56 +0000 |
commit | d3e23e254e3a404b811773ce38ce183fab0b2a38 (patch) | |
tree | 90dd5ea81e5e18cf556e26c1801026843954574f | |
parent | 6f7ed1fa769075cfa4d16b41c3cdbc7b69f272f1 (diff) |
WinGui: Missed a place for removing High10 and 422
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5121 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs index 46e696ca1..d827daff1 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs @@ -432,10 +432,10 @@ namespace HandBrake.ApplicationServices.Utilities return x264Profile.Main;
case "high":
return x264Profile.High;
- case "high10":
- return x264Profile.High10;
- case "high422":
- return x264Profile.High422;
+ //case "high10":
+ // return x264Profile.High10;
+ //case "high422":
+ // return x264Profile.High422;
case "high444":
return x264Profile.High444;
default:
|