summaryrefslogtreecommitdiffstats
path: root/libhb/handbrake/vce_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/handbrake/vce_common.h')
-rw-r--r--libhb/handbrake/vce_common.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/libhb/handbrake/vce_common.h b/libhb/handbrake/vce_common.h
new file mode 100644
index 000000000..0c5da62b2
--- /dev/null
+++ b/libhb/handbrake/vce_common.h
@@ -0,0 +1,20 @@
+/* vce_common.h
+ *
+ * Copyright (c) 2003-2019 HandBrake Team
+ * This file is part of the HandBrake source code.
+ * Homepage: <http://handbrake.fr/>.
+ * It may be used under the terms of the GNU General Public License v2.
+ * For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
+ */
+
+int hb_vce_h264_available();
+int hb_vce_h265_available();
+
+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,
+};