@svta/common-media-library
Version:
A common library for media playback in JavaScript
15 lines • 384 B
TypeScript
import type { FullBox } from './FullBox.js';
import type { SubsampleEntry } from './SubsampleEntry.js';
/**
* ISO/IEC 14496-12:2015 - 8.7.7 Sub-Sample Information Box
*
* @group ISOBMFF
*
* @beta
*/
export type SubsampleInformationBox = FullBox & {
type: 'subs';
entryCount: number;
entries: SubsampleEntry[];
};
//# sourceMappingURL=SubsampleInformationBox.d.ts.map