UNPKG

@yume-chan/scrcpy

Version:
33 lines (27 loc) 918 B
import type { ReadableStream } from "@yume-chan/stream-extra"; export interface ScrcpyVideoStream { readonly stream: ReadableStream<Uint8Array>; readonly metadata: ScrcpyVideoStreamMetadata; } export interface ScrcpyVideoStreamMetadata { deviceName?: string | undefined; width?: number | undefined; height?: number | undefined; codec: ScrcpyVideoCodecId; } export const ScrcpyVideoCodecId = { H264: 0x68_32_36_34, H265: 0x68_32_36_35, AV1: 0x00_61_76_31, } as const; export type ScrcpyVideoCodecId = (typeof ScrcpyVideoCodecId)[keyof typeof ScrcpyVideoCodecId]; export const ScrcpyVideoCodecNameMap = /* #__PURE__ */ (() => { const result = new Map<number, string>(); for (const key in ScrcpyVideoCodecId) { const value = ScrcpyVideoCodecId[key as keyof typeof ScrcpyVideoCodecId]; result.set(value, key); } return result; })();