初始化

This commit is contained in:
2025-07-30 13:39:32 +08:00
commit d1f2452b28
253 changed files with 32087 additions and 0 deletions

6
vendor/h264-live-player/Canvas.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
import Size from './utils/Size';
export default abstract class Canvas {
protected constructor(readonly canvas: HTMLCanvasElement, readonly size: Size) {}
public abstract decode(buffer: Uint8Array, width: number, height: number): void;
}