#[repr(C)]pub struct AVCodecHWConfig {
pub pix_fmt: AVPixelFormat,
pub methods: c_int,
pub device_type: AVHWDeviceType,
}
Fields§
§pix_fmt: AVPixelFormat
A hardware pixel format which the codec can use.
methods: c_int
Bit set of AV_CODEC_HW_CONFIG_METHOD_* flags, describing the possible setup methods which can be used with this configuration.
device_type: AVHWDeviceType
The device type associated with the configuration.
Must be set for AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX and AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX, otherwise unused.
Trait Implementations§
Source§impl Clone for AVCodecHWConfig
impl Clone for AVCodecHWConfig
Source§fn clone(&self) -> AVCodecHWConfig
fn clone(&self) -> AVCodecHWConfig
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 AVCodecHWConfig
impl Debug for AVCodecHWConfig
impl Copy for AVCodecHWConfig
Auto Trait Implementations§
impl Freeze for AVCodecHWConfig
impl RefUnwindSafe for AVCodecHWConfig
impl Send for AVCodecHWConfig
impl Sync for AVCodecHWConfig
impl Unpin for AVCodecHWConfig
impl UnwindSafe for AVCodecHWConfig
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