#[repr(C)]pub struct AVBufferSrcParameters {Show 14 fields
pub format: c_int,
pub time_base: AVRational,
pub width: c_int,
pub height: c_int,
pub sample_aspect_ratio: AVRational,
pub frame_rate: AVRational,
pub hw_frames_ctx: *mut AVBufferRef,
pub sample_rate: c_int,
pub ch_layout: AVChannelLayout,
pub color_space: AVColorSpace,
pub color_range: AVColorRange,
pub side_data: *mut *mut AVFrameSideData,
pub nb_side_data: c_int,
pub alpha_mode: AVAlphaMode,
}展开描述
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.
ch_layout: AVChannelLayoutAudio only, the audio channel layout
color_space: AVColorSpaceVideo only, the YUV colorspace and range.
color_range: AVColorRange§side_data: *mut *mut AVFrameSideData§nb_side_data: c_int§alpha_mode: AVAlphaModeVideo only, the alpha mode.
trait 实现§
源代码§impl Clone for AVBufferSrcParameters
impl Clone for AVBufferSrcParameters
源代码§fn clone(&self) -> AVBufferSrcParameters
fn clone(&self) -> AVBufferSrcParameters
1.0.0 · 源代码§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source 执行拷贝赋值。 阅读更多