pub trait Descriptor {
    type OutputMuxer: Muxer + Send;

    fn create(&self) -> Self::OutputMuxer;
    fn describe(&self) -> &Descr;
}
Expand description

Used to get a format descriptor and create a new muxer.

Required Associated Types

Required Methods

Creates a new muxer for the requested format.

Returns the descriptor of a format.

Implementors