ST2110VideoTransportFormat type
Norsk-internal flat enum that bundles ST 2110-20 sampling, depth and byte-order into a single string. Each value maps to a specific combination of the SDP a=fmtp: sampling= and depth= parameters plus an implied big-endian RFC 4175 packing.
Preferred SDK usage is the orthogonal { sampling, depth } form on ST2110OutputVideoSender, which decomposes cleanly to the SDP fields a 2110-fluent caller is reading on the wire. This enum remains as a @deprecated shorthand for the simple case.
YUV_422_PLANAR10_LE is Norsk-internal experimental and has no { sampling, depth } equivalent — keep it on this enum if you need it.
Signature:
export type ST2110VideoTransportFormat = "YUV_422_10_BE" | "YUV_422_8_BE" | "YUV_422_12_BE" | "YUV_422_16_BE" | "YUV_420_8_BE" | "YUV_420_10_BE" | "YUV_420_12_BE" | "YUV_420_16_BE" | "RGB_8_BE" | "RGB_10_BE" | "RGB_12_BE" | "RGB_16_BE" | "YUV_444_8_BE" | "YUV_444_10_BE" | "YUV_444_12_BE" | "YUV_444_16_BE" | "YUV_422_PLANAR10_LE";