summaryrefslogtreecommitdiffstats
path: root/win/CS
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS')
-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.
}
}