summaryrefslogtreecommitdiff
path: root/gst-libs/gst/codecparsers
diff options
context:
space:
mode:
authorHe Junyan <junyan.he@intel.com>2020-09-22 19:16:30 +0800
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2020-11-17 19:31:09 +0000
commitb511761f70fb7d7a8c1fd1f76ed26a904e21ec91 (patch)
tree5c926f4443726e03cc3b0e137ac30e1baaaa058b /gst-libs/gst/codecparsers
parent0d4982a3d51adba03e959d3c4590ef33f6f54577 (diff)
downloadgstreamer-plugins-bad-b511761f70fb7d7a8c1fd1f76ed26a904e21ec91.tar.gz
codecparsers: av1: Add unknow AV1 profile define for saint check.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1464>
Diffstat (limited to 'gst-libs/gst/codecparsers')
-rw-r--r--gst-libs/gst/codecparsers/gstav1parser.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/gst-libs/gst/codecparsers/gstav1parser.h b/gst-libs/gst/codecparsers/gstav1parser.h
index 19a607245..f8a2d88a1 100644
--- a/gst-libs/gst/codecparsers/gstav1parser.h
+++ b/gst-libs/gst/codecparsers/gstav1parser.h
@@ -142,13 +142,22 @@ typedef enum {
* @GST_AV1_PROFILE_0: 8-bit and 10-bit 4:2:0 and 4:0:0 only.
* @GST_AV1_PROFILE_1: 8-bit and 10-bit 4:4:4.
* @GST_AV1_PROFILE_2: 8-bit and 10-bit 4:2:2, 12-bit 4:0:0 4:2:2 and 4:4:4
+ * @GST_AV1_PROFILE_UNDEFINED: unknow AV1 profile (Since: 1.20)
*
* Defines the AV1 profiles
*/
+/**
+ * GST_AV1_PROFILE_UNDEFINED:
+ *
+ * unknow AV1 profile
+ *
+ * Since: 1.20
+ */
typedef enum {
GST_AV1_PROFILE_0 = 0,
GST_AV1_PROFILE_1 = 1,
GST_AV1_PROFILE_2 = 2,
+ GST_AV1_PROFILE_UNDEFINED,
} GstAV1Profile;
/**