@svta/common-media-library
Version:
A common library for media playback in JavaScript
16 lines • 615 B
TypeScript
import type { ContainerBox } from './ContainerBox.js';
import type { IpmpInfoBox } from './IpmpInfoBox.js';
import type { OriginalFormatBox } from './OriginalFormatBox.js';
import type { SchemeInformationBox } from './SchemeInformationBox.js';
import type { SchemeTypeBox } from './SchemeTypeBox.js';
/**
* Protection Scheme Information Box - 'sinf' - Container
*
* @group ISOBMFF
*
* @beta
*/
export type ProtectionSchemeInformationBox = ContainerBox<OriginalFormatBox | IpmpInfoBox | SchemeTypeBox | SchemeInformationBox> & {
type: 'sinf';
};
//# sourceMappingURL=ProtectionSchemeInformationBox.d.ts.map