Interface IDecoder

Interface defining the basic decoder operations

interface IDecoder {
    paused: boolean;
    ready: boolean;
    start(): void;
    stop(): void;
}

Implemented by

Properties

Methods

Properties

paused: boolean

Indicates if the decoder is currently paused

ready: boolean

Indicates if the decoder is ready to process frames

Methods