mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
codecparsers: av1: Add unknow AV1 profile define for saint check.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1464>
This commit is contained in:
parent
0d4982a3d5
commit
b511761f70
1 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue