#[repr(u32)]pub enum AVCodecConfig {
AV_CODEC_CONFIG_PIX_FORMAT = 0,
AV_CODEC_CONFIG_FRAME_RATE = 1,
AV_CODEC_CONFIG_SAMPLE_RATE = 2,
AV_CODEC_CONFIG_SAMPLE_FORMAT = 3,
AV_CODEC_CONFIG_CHANNEL_LAYOUT = 4,
AV_CODEC_CONFIG_COLOR_RANGE = 5,
AV_CODEC_CONFIG_COLOR_SPACE = 6,
}Variants§
AV_CODEC_CONFIG_PIX_FORMAT = 0
< AVPixelFormat, terminated by AV_PIX_FMT_NONE
AV_CODEC_CONFIG_FRAME_RATE = 1
< AVRational, terminated by {0, 0}
AV_CODEC_CONFIG_SAMPLE_RATE = 2
< int, terminated by 0
AV_CODEC_CONFIG_SAMPLE_FORMAT = 3
< AVSampleFormat, terminated by AV_SAMPLE_FMT_NONE
AV_CODEC_CONFIG_CHANNEL_LAYOUT = 4
< AVChannelLayout, terminated by {0}
AV_CODEC_CONFIG_COLOR_RANGE = 5
< AVColorRange, terminated by AVCOL_RANGE_UNSPECIFIED
AV_CODEC_CONFIG_COLOR_SPACE = 6
< AVColorSpace, terminated by AVCOL_SPC_UNSPECIFIED
Trait Implementations§
Source§impl Clone for AVCodecConfig
impl Clone for AVCodecConfig
Source§fn clone(&self) -> AVCodecConfig
fn clone(&self) -> AVCodecConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AVCodecConfig
Source§impl Debug for AVCodecConfig
impl Debug for AVCodecConfig
impl Eq for AVCodecConfig
Source§impl Hash for AVCodecConfig
impl Hash for AVCodecConfig
Source§impl PartialEq for AVCodecConfig
impl PartialEq for AVCodecConfig
impl StructuralPartialEq for AVCodecConfig
Auto Trait Implementations§
impl Freeze for AVCodecConfig
impl RefUnwindSafe for AVCodecConfig
impl Send for AVCodecConfig
impl Sync for AVCodecConfig
impl Unpin for AVCodecConfig
impl UnsafeUnpin for AVCodecConfig
impl UnwindSafe for AVCodecConfig
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