Make _flushOrWaitForOngoingClose set closingPromise (fixes #270)

This commit is contained in:
Vanilagy
2026-01-12 14:36:51 +01:00
parent 1d774b5fbb
commit 78e78e5b4f
2 changed files with 39 additions and 6 deletions
+35
View File
@@ -0,0 +1,35 @@
import { test } from 'vitest';
import { Output } from '../../src/output.js';
import { WebMOutputFormat } from '../../src/output-format.js';
import { BufferTarget } from '../../src/target.js';
import { VideoSampleSource } from '../../src/media-source.js';
import { VideoSample } from '../../src/sample.js';
import { QUALITY_MEDIUM } from '../../src/encode.js';
test('VideoSampleSource.close() should be idempotent after finalize()', async () => {
const output = new Output({
format: new WebMOutputFormat(),
target: new BufferTarget(),
});
const videoSource = new VideoSampleSource({
codec: 'vp8',
bitrate: QUALITY_MEDIUM,
});
output.addVideoTrack(videoSource);
await output.start();
const canvas = new OffscreenCanvas(100, 100);
const ctx = canvas.getContext('2d')!;
ctx.fillStyle = 'red';
ctx.fillRect(0, 0, 100, 100);
const sample = new VideoSample(canvas, { timestamp: 0, duration: 1 / 30 });
await videoSource.add(sample);
sample.close();
await output.finalize();
videoSource.close(); // This previously threw
});