Interface RTPVideoMapMessage

interface RTPVideoMapMessage {
    data: {
        map: Map<number, "vp8" | "h264" | "vp9" | "av1">;
        participantIdentity: string;
    };
    kind: "setRTPMap";
}

Hierarchy (view full)

Properties

Properties

data: {
    map: Map<number, "vp8" | "h264" | "vp9" | "av1">;
    participantIdentity: string;
}

Type declaration

  • map: Map<number, "vp8" | "h264" | "vp9" | "av1">
  • participantIdentity: string
kind: "setRTPMap"