Interface UpdateCodecMessage

interface UpdateCodecMessage {
    data: {
        codec:
            | "vp8"
            | "h264"
            | "vp9"
            | "av1";
        participantIdentity: string;
        trackId: string;
    };
    kind: "updateCodec";
}

Hierarchy (view full)

Properties

Properties

data: {
    codec:
        | "vp8"
        | "h264"
        | "vp9"
        | "av1";
    participantIdentity: string;
    trackId: string;
}
kind: "updateCodec"