summaryrefslogtreecommitdiffstats
path: root/libhb/vce_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/vce_common.h')
-rw-r--r--libhb/vce_common.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/libhb/vce_common.h b/libhb/vce_common.h
index 3a6949e16..7d513c8da 100644
--- a/libhb/vce_common.h
+++ b/libhb/vce_common.h
@@ -10,5 +10,11 @@
int hb_vce_h264_available();
int hb_vce_h265_available();
-static const char * const hb_h264_profile_names[] = { "baseline", "main", "high", NULL, };
-static const char * const hb_h265_profile_names[] = { "main", NULL, }; \ No newline at end of file
+static const char * const hb_vce_h264_profile_names[] = { "baseline", "main", "high", NULL, };
+static const char * const hb_vce_h265_profile_names[] = { "main", NULL, };
+
+static const char * const hb_vce_h264_level_names[] =
+{
+ "auto", "1.0", "1.1", "1.2", "1.3", "2.0", "2.1", "2.2", "3.0",
+ "3.1", "3.2", "4.0", "4.1", "4.2", "5.0", "5.1", "5.2", NULL,
+};