pub trait StatelessCodec {
    type FormatInfo;
    type DecoderState<B: StatelessDecoderBackend<Self::FormatInfo>>;
}

Required Associated Types§

source

type FormatInfo

Type providing current format information for the codec: resolution, color format, etc.

For H.264 this would be the Sps, for VP8 or VP9 the frame header.

source

type DecoderState<B: StatelessDecoderBackend<Self::FormatInfo>>

State that needs to be kept during a decoding operation, typed by backend.

Implementors§