@svta/common-media-library
Version:
A common library for media playback in JavaScript
19 lines • 429 B
TypeScript
import type { FullBox } from './FullBox.js';
import type { ItemLocation } from './ItemLocation.js';
/**
* Item Location Box - 'iloc'
*
* @group ISOBMFF
*
* @beta
*/
export type ItemLocationBox = FullBox & {
type: 'iloc';
offsetSize: number;
lengthSize: number;
baseOffsetSize: number;
indexSize?: number;
itemCount: number;
items: ItemLocation[];
};
//# sourceMappingURL=ItemLocationBox.d.ts.map