mirror of
https://github.com/unshackle-dl/unshackle.git
synced 2025-10-23 15:11:08 +00:00
feat: Add Unspecified_Image option to Transfer enum in Video class.
The Transfer enum was missing value 2, which according to ITU-T H.Sup19 standards represents "Unspecified (Image characteristics are unknown or are determined by the application)". This value is often used for still image coding systems.
This commit is contained in:
@@ -116,6 +116,7 @@ class Video(Track):
|
|||||||
class Transfer(Enum):
|
class Transfer(Enum):
|
||||||
Unspecified = 0
|
Unspecified = 0
|
||||||
BT_709 = 1
|
BT_709 = 1
|
||||||
|
Unspecified_Image = 2
|
||||||
BT_601 = 6
|
BT_601 = 6
|
||||||
BT_2020 = 14
|
BT_2020 = 14
|
||||||
BT_2100 = 15
|
BT_2100 = 15
|
||||||
|
|||||||
Reference in New Issue
Block a user