mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
vc1parser: fix level values for simple/main profile
In simple profile, level set to 0 or 2 indicate low and medium level respectively. In main profile, level set to 0, 2 or 4 indicate low, medium and high level respectively. Level values are defined in Annex J.1.2 of the SMPTE 421M. https://bugzilla.gnome.org/show_bug.cgi?id=738230
This commit is contained in:
parent
2cd4f5d0c1
commit
de327bf45b
1 changed files with 2 additions and 2 deletions
|
@ -84,8 +84,8 @@ typedef enum
|
|||
typedef enum
|
||||
{
|
||||
GST_VC1_LEVEL_LOW = 0, /* Simple/Main profile low level */
|
||||
GST_VC1_LEVEL_MEDIUM = 1, /* Simple/Main profile medium level */
|
||||
GST_VC1_LEVEL_HIGH = 2, /* Main profile high level */
|
||||
GST_VC1_LEVEL_MEDIUM = 2, /* Simple/Main profile medium level */
|
||||
GST_VC1_LEVEL_HIGH = 4, /* Main profile high level */
|
||||
|
||||
GST_VC1_LEVEL_L0 = 0, /* Advanced profile level 0 */
|
||||
GST_VC1_LEVEL_L1 = 1, /* Advanced profile level 1 */
|
||||
|
|
Loading…
Reference in a new issue