Enum rav1e::prelude::TransferCharacteristics
source · #[repr(C)]pub enum TransferCharacteristics {
Show 17 variants
BT709 = 1,
Unspecified = 2,
BT470M = 4,
BT470BG = 5,
BT601 = 6,
SMPTE240 = 7,
Linear = 8,
Log100 = 9,
Log100Sqrt10 = 10,
IEC61966 = 11,
BT1361 = 12,
SRGB = 13,
BT2020_10Bit = 14,
BT2020_12Bit = 15,
SMPTE2084 = 16,
SMPTE428 = 17,
HLG = 18,
}
Expand description
Supported Transfer Characteristics
As defined by “Transfer characteristics” section of ISO/IEC 23091-4/ITU-TH.273.
Variants§
BT709 = 1
BT.709
Unspecified = 2
Unspecified, must be signaled or inferred outside of the bitstream
BT470M = 4
BT.470 System M (historical)
BT470BG = 5
BT.470 System B, G (historical)
BT601 = 6
BT.601-7 525 (SMPTE 170 M)
SMPTE240 = 7
SMPTE 240 M
Linear = 8
Linear
Log100 = 9
Logarithmic (100:1 range)
Log100Sqrt10 = 10
Logarithmic ((100 * √10):1 range)
IEC61966 = 11
IEC 61966-2-4
BT1361 = 12
BT.1361 extended color gamut system (historical)
SRGB = 13
sRGB or sYCC
BT2020_10Bit = 14
BT.2020 10-bit systems
BT2020_12Bit = 15
BT.2020 12-bit systems
SMPTE2084 = 16
SMPTE ST 2084, ITU BT.2100 PQ
SMPTE428 = 17
SMPTE ST 428
HLG = 18
BT.2100 HLG (Hybrid Log Gamma), ARIB STD-B67
Implementations§
Trait Implementations§
source§impl Clone for TransferCharacteristics
impl Clone for TransferCharacteristics
source§fn clone(&self) -> TransferCharacteristics
fn clone(&self) -> TransferCharacteristics
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TransferCharacteristics
impl Debug for TransferCharacteristics
source§impl Default for TransferCharacteristics
impl Default for TransferCharacteristics
source§fn default() -> TransferCharacteristics
fn default() -> TransferCharacteristics
Returns the “default value” for a type. Read more
source§impl Display for TransferCharacteristics
impl Display for TransferCharacteristics
source§impl FromPrimitive for TransferCharacteristics
impl FromPrimitive for TransferCharacteristics
source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an
i64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an
u64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an
isize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an
i8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an
i16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an
i32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
Converts an
i128
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read moresource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a
usize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an
u8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an
u16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an
u32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
Converts an
u128
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read moresource§impl FromStr for TransferCharacteristics
impl FromStr for TransferCharacteristics
source§impl PartialEq for TransferCharacteristics
impl PartialEq for TransferCharacteristics
source§fn eq(&self, other: &TransferCharacteristics) -> bool
fn eq(&self, other: &TransferCharacteristics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TransferCharacteristics
impl Eq for TransferCharacteristics
impl StructuralPartialEq for TransferCharacteristics
Auto Trait Implementations§
impl Freeze for TransferCharacteristics
impl RefUnwindSafe for TransferCharacteristics
impl Send for TransferCharacteristics
impl Sync for TransferCharacteristics
impl Unpin for TransferCharacteristics
impl UnwindSafe for TransferCharacteristics
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more