From b511761f70fb7d7a8c1fd1f76ed26a904e21ec91 Mon Sep 17 00:00:00 2001 From: He Junyan Date: Tue, 22 Sep 2020 19:16:30 +0800 Subject: [PATCH] codecparsers: av1: Add unknow AV1 profile define for saint check. Part-of: --- gst-libs/gst/codecparsers/gstav1parser.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gst-libs/gst/codecparsers/gstav1parser.h b/gst-libs/gst/codecparsers/gstav1parser.h index 19a6072..f8a2d88 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; /** -- 2.7.4