summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-12-31 16:20:24 +0000
committersr55 <[email protected]>2012-12-31 16:20:24 +0000
commitb96ca4f7de03e2c1b2d6865a0ae65798c1afed6f (patch)
tree0b636eb59b3c084b9231e0f544a920c658530735
parenta4bfb04ed32cf776af0d46e7d346004796746f8e (diff)
WinGui: Removed High444, use auto instead.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5123 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs4
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs6
2 files changed, 5 insertions, 5 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs
index d827daff1..39b601a27 100644
--- a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs
+++ b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs
@@ -436,8 +436,8 @@ namespace HandBrake.ApplicationServices.Utilities
// return x264Profile.High10;
//case "high422":
// return x264Profile.High422;
- case "high444":
- return x264Profile.High444;
+ //case "high444":
+ // return x264Profile.High444;
default:
return x264Profile.Main;
}
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs
index d45a83f0a..ad2bc9063 100644
--- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs
+++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs
@@ -32,9 +32,9 @@ namespace HandBrake.Interop.Model.Encoding.x264
//High10, HandBrake does not yet support 10bit.
//[Display(Name = "High 422")]
- //High422,
+ //High422, Not supported
- [Display(Name = "High 444")]
- High444,
+ //[Display(Name = "High 444")]
+ // High444, Use Auto Instead.
}
}