(width: number, height: number)
| 98 | } |
| 99 | |
| 100 | export function getNativeVideoInputByteSize(width: number, height: number): number { |
| 101 | return width * height * NATIVE_EXPORT_INPUT_BYTES_PER_PIXEL; |
| 102 | } |
| 103 | |
| 104 | export function parseAvailableFfmpegEncoders(stdout: string): Set<string> { |
| 105 | const encoders = new Set<string>(); |
no outgoing calls
no test coverage detected