Struct AVBufferSrcParameters
#[repr(C)]pub struct AVBufferSrcParameters {
pub format: i32,
pub time_base: AVRational,
pub width: i32,
pub height: i32,
pub sample_aspect_ratio: AVRational,
pub frame_rate: AVRational,
pub hw_frames_ctx: *mut AVBufferRef,
pub sample_rate: i32,
pub ch_layout: AVChannelLayout,
pub color_space: u32,
pub color_range: u32,
}
Expand description
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: i32
video: the pixel format, value corresponds to enum AVPixelFormat audio: the sample format, value corresponds to enum AVSampleFormat
time_base: AVRational
The timebase to be used for the timestamps on the input frames.
width: i32
Video only, the display dimensions of the input frames.
height: i32
Video only, the display dimensions of the input frames.
sample_aspect_ratio: AVRational
Video only, the sample (pixel) aspect ratio.
frame_rate: AVRational
Video 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 AVBufferRef
Video with a hwaccel pixel format only. This should be a reference to an AVHWFramesContext instance describing the input frames.
sample_rate: i32
Audio only, the audio sampling rate in samples per second.
ch_layout: AVChannelLayout
Audio only, the audio channel layout
color_space: u32
Video only, the YUV colorspace and range.
color_range: u32
Trait Implementations§
§impl Clone for AVBufferSrcParameters
impl Clone for AVBufferSrcParameters
§fn clone(&self) -> AVBufferSrcParameters
fn clone(&self) -> AVBufferSrcParameters
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more