Interface UpdateCodecMessage

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

Hierarchy (View Summary)

Properties

Properties

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