[−][src]Struct ffav_sys::AVBufferSrcParameters
This structure contains the parameters describing the frames that will be passed to this filter.
It should be allocated with av_buffersrc_parameters_alloc() and freed with av_free(). All the allocated fields in it remain owned by the caller.
Fields
format: c_intvideo: the pixel format, value corresponds to enum AVPixelFormat audio: the sample format, value corresponds to enum AVSampleFormat
time_base: AVRationalThe timebase to be used for the timestamps on the input frames.
width: c_intVideo only, the display dimensions of the input frames.
height: c_intVideo only, the display dimensions of the input frames.
sample_aspect_ratio: AVRationalVideo only, the sample (pixel) aspect ratio.
frame_rate: AVRationalVideo only, the frame rate of the input video. This field must only be set to a non-zero value if input stream has a known constant framerate and should be left at its initial value if the framerate is variable or unknown.
hw_frames_ctx: *mut AVBufferRefVideo with a hwaccel pixel format only. This should be a reference to an AVHWFramesContext instance describing the input frames.
sample_rate: c_intAudio only, the audio sampling rate in samples per second.
channel_layout: u64Audio only, the audio channel layout
Trait Implementations
impl Clone for AVBufferSrcParameters[src]
fn clone(&self) -> AVBufferSrcParameters[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for AVBufferSrcParameters[src]
impl Debug for AVBufferSrcParameters[src]
impl Eq for AVBufferSrcParameters[src]
impl PartialEq<AVBufferSrcParameters> for AVBufferSrcParameters[src]
fn eq(&self, other: &AVBufferSrcParameters) -> bool[src]
fn ne(&self, other: &AVBufferSrcParameters) -> bool[src]
impl StructuralEq for AVBufferSrcParameters[src]
impl StructuralPartialEq for AVBufferSrcParameters[src]
Auto Trait Implementations
impl RefUnwindSafe for AVBufferSrcParameters
impl !Send for AVBufferSrcParameters
impl !Sync for AVBufferSrcParameters
impl Unpin for AVBufferSrcParameters
impl UnwindSafe for AVBufferSrcParameters
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,