summaryrefslogtreecommitdiff
path: root/omx/gstomxh265utils.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2017-07-12 11:01:15 +0200
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2017-09-06 14:50:18 -0400
commitcf9f1903db84a1e6745de26455baec9a7d138a1b (patch)
treec217c5dae1f6afa429e774512a41b461ffd41d43 /omx/gstomxh265utils.h
parent79df3b0e8e003304808fc5d62d3bd8903386b108 (diff)
downloadgst-omx-cf9f1903db84a1e6745de26455baec9a7d138a1b.tar.gz
omxh265enc: add H265 encoder
The OMX spec doesn't support HEVC but the OMX stack of the zynqultrascaleplus adds it as a custom extension. It uses the same API as the one of Android's OMX stack. I used the H264 encoder code as a template. https://bugzilla.gnome.org/show_bug.cgi?id=785434
Diffstat (limited to 'omx/gstomxh265utils.h')
-rw-r--r--omx/gstomxh265utils.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/omx/gstomxh265utils.h b/omx/gstomxh265utils.h
new file mode 100644
index 0000000..15b7d2a
--- /dev/null
+++ b/omx/gstomxh265utils.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2011, Hewlett-Packard Development Company, L.P.
+ * Copyright (C) 2017 Xilinx, Inc.
+ * Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>, Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation
+ * version 2.1 of the License.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __GST_OMX_H265_UTILS_H__
+#define __GST_OMX_H265_UTILS_H__
+
+#include "gstomx.h"
+
+G_BEGIN_DECLS
+
+OMX_VIDEO_HEVCPROFILETYPE gst_omx_h265_utils_get_profile_from_str (const
+ gchar * profile);
+OMX_VIDEO_HEVCLEVELTYPE gst_omx_h265_utils_get_level_from_str (const gchar *
+ level, const gchar * tier);
+
+G_END_DECLS
+#endif /* __GST_OMX_H265_UTILS_H__ */