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:
Andy
2025-08-01 17:10:55 +00:00
parent a07345a0a2
commit 4691694d2e

View File

@@ -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