@yume-chan/scrcpy-decoder-webcodecs
Version:
Raw H.264 stream decoder and renderer using WebCodecs API (requires modern browser).
10 lines • 309 B
JavaScript
export function hexDigits(value) {
return value.toString(16).toUpperCase();
}
export function hexTwoDigits(value) {
return value.toString(16).toUpperCase().padStart(2, "0");
}
export function decimalTwoDigits(value) {
return value.toString(10).padStart(2, "0");
}
//# sourceMappingURL=utils.js.map