pub trait AudioEncoderExtManual: Sealed + IsA<AudioEncoder> + 'static {
    // Provided methods
    fn negotiate(&self) -> Result<(), FlowError> { ... }
    fn set_output_format(&self, caps: &Caps) -> Result<(), FlowError> { ... }
    fn allocator(&self) -> (Option<Allocator>, AllocationParams) { ... }
    fn set_headers(&self, headers: impl IntoIterator<Item = Buffer>) { ... }
    fn sink_pad(&self) -> &Pad { ... }
    fn src_pad(&self) -> &Pad { ... }
}

Provided Methods§

source

fn negotiate(&self) -> Result<(), FlowError>

source

fn set_output_format(&self, caps: &Caps) -> Result<(), FlowError>

source

fn allocator(&self) -> (Option<Allocator>, AllocationParams)

source

fn set_headers(&self, headers: impl IntoIterator<Item = Buffer>)

source

fn sink_pad(&self) -> &Pad

source

fn src_pad(&self) -> &Pad

Object Safety§

This trait is not object safe.

Implementors§