[][src]Struct stainless_ffmpeg_sys::AVDeviceCapabilitiesQuery

#[repr(C)]pub struct AVDeviceCapabilitiesQuery {
    pub av_class: *const AVClass,
    pub device_context: *mut AVFormatContext,
    pub codec: AVCodecID,
    pub sample_format: AVSampleFormat,
    pub pixel_format: AVPixelFormat,
    pub sample_rate: c_int,
    pub channels: c_int,
    pub channel_layout: i64,
    pub window_width: c_int,
    pub window_height: c_int,
    pub frame_width: c_int,
    pub frame_height: c_int,
    pub fps: AVRational,
}

Structure describes device capabilities.

It is used by devices in conjunction with av_device_capabilities AVOption table to implement capabilities probing API based on AVOption API. Should not be used directly.

Fields

av_class: *const AVClassdevice_context: *mut AVFormatContextcodec: AVCodecIDsample_format: AVSampleFormatpixel_format: AVPixelFormatsample_rate: c_intchannels: c_intchannel_layout: i64window_width: c_intwindow_height: c_intframe_width: c_intframe_height: c_intfps: AVRational

Trait Implementations

impl Clone for AVDeviceCapabilitiesQuery[src]

impl Copy for AVDeviceCapabilitiesQuery[src]

impl Debug for AVDeviceCapabilitiesQuery[src]

impl Eq for AVDeviceCapabilitiesQuery[src]

impl PartialEq<AVDeviceCapabilitiesQuery> for AVDeviceCapabilitiesQuery[src]

impl StructuralEq for AVDeviceCapabilitiesQuery[src]

impl StructuralPartialEq for AVDeviceCapabilitiesQuery[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.