[−][src]Struct ac_ffmpeg::codec::bsf::BitstreamFilterBuilder
A builder for bitstream filters.
Implementations
impl BitstreamFilterBuilder[src]
pub fn input_time_base(self, time_base: TimeBase) -> Self[src]
Set input time base. By default it's in microseconds. All input packets will be rescaled to this time base before passing them to the filter.
pub fn input_codec_parameters(self, codec_parameters: &CodecParameters) -> Self[src]
Set input codec parameters.
pub fn output_time_base(self, time_base: TimeBase) -> Self[src]
Set output time base. By default it's in microseconds. All output packets will use this time base.
pub fn output_codec_parameters(self, codec_parameters: &CodecParameters) -> Self[src]
Set output codec parameters.
pub fn build(self) -> Result<BitstreamFilter, Error>[src]
Build the bitstream filter.
Trait Implementations
impl Drop for BitstreamFilterBuilder[src]
impl Send for BitstreamFilterBuilder[src]
impl Sync for BitstreamFilterBuilder[src]
Auto Trait Implementations
impl RefUnwindSafe for BitstreamFilterBuilder
impl Unpin for BitstreamFilterBuilder
impl UnwindSafe for BitstreamFilterBuilder
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, 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>,