Package-level declarations

Types

Link copied to clipboard
interface DRMDelegate

A delegate for Handling DRM specific Requests

Link copied to clipboard
data class DRMKeyRequest(val defaultLicenseURL: String, val data: ByteArray, val requestProperties: Map<String, String> = emptyMap())

Contains information necessary to construct the DRM Key Request.

Link copied to clipboard
data class DRMLicenseInfo(val licenseUrl: String, val licenseTokens: List<DRMLicenseToken>?)

DRM License information that must be submitted to the player when streaming DRM content.

Link copied to clipboard
data class DRMLicenseToken(val type: String = "header", val name: String, val value: String)