@svta/common-media-library
Version:
A common library for media playback in JavaScript
14 lines • 434 B
TypeScript
/**
* Converts a 16-byte key ID from little-endian to big-endian format.
*
* @param keyId - The little-endian key ID to convert.
* @returns The big-endian representation of the key ID.
*
* @group DRM
* @beta
*
* @example
* {@includeCode ../../../test/drm/playready/toBigEndianKeyId.test.ts#example}
*/
export declare function toBigEndianKeyId(keyId: ArrayBuffer): ArrayBuffer;
//# sourceMappingURL=toBigEndianKeyId.d.ts.map