UNPKG

@svta/common-media-library

Version:
19 lines 348 B
/** * Parse a IdentifiedMediaDataBox from an IsoView * * @param view - The IsoView to read data from * * @returns A parsed IdentifiedMediaDataBox * * @group ISOBMFF * * @beta */ export function imda(view) { return { imdaIdentifier: view.readUint(4), data: view.readData(-1), }; } ; //# sourceMappingURL=imda.js.map