@svta/common-media-library
Version:
A common library for media playback in JavaScript
15 lines • 313 B
TypeScript
import type { FullBox } from './FullBox.js';
/**
* Compact Sample Size Box - 'stz2'
*
* @group ISOBMFF
*
* @beta
*/
export type CompactSampleSizeBox = FullBox & {
type: 'stz2';
fieldSize: number;
sampleCount: number;
entrySize: number[];
};
//# sourceMappingURL=CompactSampleSizeBox.d.ts.map