Package apple.avfoundation.protocol
Interface AVContentKeyRecipient
-
- All Known Implementing Classes:
AVFragmentedAsset,AVURLAsset
public interface AVContentKeyRecipient[@protocol] AVContentKeyRecipient Classes of objects that may require decryption keys for media data in order to enable processing, such as parsing or playback, conform to this protocol.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmayRequireContentKeysForMediaDataProcessing()[@property] mayRequireContentKeysForMediaDataProcessing Indicates whether the receiver may require decryption keys for media data in order to enable processing.
-
-
-
Method Detail
-
mayRequireContentKeysForMediaDataProcessing
boolean mayRequireContentKeysForMediaDataProcessing()
[@property] mayRequireContentKeysForMediaDataProcessing Indicates whether the receiver may require decryption keys for media data in order to enable processing. When the value of mayRequireContentKeysForMediaDataProcessing is YES, adding the receiver to an AVContentKeySession allows it to employ the session's already existing keys and also enables the handling of new key requests by the AVContentKeySession's delegate.
-
-