UNPKG

@svta/common-media-library

Version:
22 lines 554 B
import type { Entity } from './Entity.js'; import type { FullBox } from './FullBox.js'; /** * ISO/IEC 14496-12:202x - 8.18.4.1 Preselection group box * * @group ISOBMFF * * @beta */ export type PreselectionGroupBox = FullBox & { type: 'prsl'; /** Group ID */ groupId: number; /** Number of entities in group */ numEntitiesInGroup: number; /** Entities */ entities: Entity[]; preselectionTag?: string; selectionPriority?: number; interleavingTag?: string; }; //# sourceMappingURL=PreselectionGroupBox.d.ts.map