mirror of
https://github.com/zoriya/react-native-video.git
synced 2025-12-06 07:16:12 +00:00
15 lines
369 B
Swift
15 lines
369 B
Swift
//
|
|
// DRMManagerSpec.swift
|
|
// ReactNativeVideo
|
|
//
|
|
// Created by Krzysztof Moch on 05/08/2025.
|
|
//
|
|
|
|
import Foundation
|
|
import AVFoundation
|
|
|
|
public protocol DRMManagerSpec: AVContentKeySessionDelegate {
|
|
/// Creates a content key request for the given asset and DRM parameters.
|
|
func createContentKeyRequest(for asset: AVURLAsset, drmParams: NativeDrmParams) throws
|
|
}
|