summaryrefslogtreecommitdiffstats
path: root/gtk/src
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/src')
-rw-r--r--gtk/src/hb-backend.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c
index cefe59098..e1e4187d3 100644
--- a/gtk/src/hb-backend.c
+++ b/gtk/src/hb-backend.c
@@ -2106,6 +2106,14 @@ x264_profile_opts_set(GtkBuilder *builder, const gchar *name)
for (ii = 0; ii < count; ii++)
{
+ // HandBrake doesn't support high10 (10 bit encoding)
+ // or high422 (YUV422)
+ if (!strcasecmp("high10", profiles[ii]) ||
+ !strcasecmp("high422", profiles[ii]))
+ {
+ continue;
+ }
+
gtk_list_store_append(store, &iter);
gtk_list_store_set(store, &iter,
0, profiles[ii],