@svta/common-media-library
Version:
A common library for media playback in JavaScript
13 lines • 321 B
TypeScript
import type { FullBox } from './FullBox.js';
/**
* ISO/IEC 14496-12:202x - 12.2.8 Audio rendering indication box
*
* @group ISOBMFF
*
* @beta
*/
export type AudioRenderingIndicationBox = FullBox & {
type: 'ardi';
audioRenderingIndication: number;
};
//# sourceMappingURL=AudioRenderingIndicationBox.d.ts.map