MediaDescrambler
public final class MediaDescrambler
extends Object implements AutoCloseable
| java.lang.Object | |
| ↳ | android.media.MediaDescrambler |
MediaDescrambler class can be used in conjunction with MediaCodec and MediaExtractor to decode media data scrambled by conditional access (CA) systems such as those in the ISO/IEC13818-1. A MediaDescrambler object is initialized from a session opened by a MediaCas object, and can be used to descramble media streams scrambled with that session's keys. Scrambling schemes are identified by 16-bit unsigned integer as in CA_system_id.
Summary
Constants | |
|---|---|
byte | SCRAMBLE_CONTROL_EVEN_KEY Scramble control value indicating that the even key is used. |
byte | SCRAMBLE_CONTROL_ODD_KEY Scramble control value indicating that the odd key is used. |
byte | SCRAMBLE_CONTROL_RESERVED Scramble control value reserved and shouldn't be used currently. |
byte | SCRAMBLE_CONTROL_UNSCRAMBLED Scramble control value indicating that the samples are not scrambled. |
byte | SCRAMBLE_FLAG_PES_HEADER Scramble flag for a hint indicating that the descrambling request is for retrieving the PES header info only. |
Public constructors | |
|---|---|
MediaDescrambler(int CA_system_id) Instantiate a MediaDescrambler. | |
Public methods | |
|---|---|
void | close() Closes this resource, relinquishing any underlying resources. |
int | descramble(ByteBuffer srcBuf, ByteBuffer dstBuf, MediaCodec.CryptoInfo cryptoInfo) Descramble a ByteBuffer of data described by a |
boolean | requiresSecureDecoderComponent(String mime) Query if the scrambling scheme requires the use of a secure decoder to decode data of the given mime type. |
void | setMediaCasSession(MediaCas.Session session) Associate a MediaCas session with this MediaDescrambler instance. |
Protected methods | |
|---|---|
void | finalize() Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. |
Inherited methods | |
|---|---|
Constants
SCRAMBLE_CONTROL_EVEN_KEY
public static final byte SCRAMBLE_CONTROL_EVEN_KEY
Scramble control value indicating that the even key is used.
Constant Value: 2 (0x00000002)
SCRAMBLE_CONTROL_ODD_KEY
public static final byte SCRAMBLE_CONTROL_ODD_KEY
Scramble control value indicating that the odd key is used.
Constant Value: 3 (0x00000003)
SCRAMBLE_CONTROL_RESERVED
public static final byte SCRAMBLE_CONTROL_RESERVED
Scramble control value reserved and shouldn't be used currently.
Constant Value: 1 (0x00000001)
SCRAMBLE_CONTROL_UNSCRAMBLED
public static final byte SCRAMBLE_CONTROL_UNSCRAMBLED
Scramble control value indicating that the samples are not scrambled.
Constant Value: 0 (0x00000000)
SCRAMBLE_FLAG_PES_HEADER
public static final byte SCRAMBLE_FLAG_PES_HEADER
Scramble flag for a hint indicating that the descrambling request is for retrieving the PES header info only.
Constant Value: 1 (0x00000001)
Public constructors
MediaDescrambler
public MediaDescrambler (int CA_system_id)
Instantiate a MediaDescrambler.
| Parameters | |
|---|---|
CA_system_id | int: The system id of the scrambling scheme. |
| Throws | |
|---|---|
MediaCasException.UnsupportedCasException | if the scrambling scheme is not supported. |
Public methods
close
public void close ()
Closes this resource, relinquishing any underlying resources. This method is invoked automatically on objects managed by the try-with-resources statement.
descramble
public int descramble (ByteBuffer srcBuf, ByteBuffer dstBuf, MediaCodec.CryptoInfo cryptoInfo)
Descramble a ByteBuffer of data described by a MediaCodec.CryptoInfo structure.
| Parameters | |
|---|---|
srcBuf | ByteBuffer: ByteBuffer containing the scrambled data, which starts at srcBuf.position(). This value cannot be null. |
dstBuf | ByteBuffer: ByteBuffer to hold the descrambled data, which starts at dstBuf.position(). This value cannot be null. |
cryptoInfo | MediaCodec.CryptoInfo: a MediaCodec.CryptoInfo structure describing the subsamples contained in srcBuf. The iv and mode fields in CryptoInfo are not used. key[0] contains the MPEG2TS scrambling control bits (as defined in ETSI TS 100 289 (2011): "Digital Video Broadcasting (DVB); Support for use of the DVB Scrambling Algorithm version 3 within digital broadcasting systems"), and the value must be one of SCRAMBLE_CONTROL_UNSCRAMBLED, SCRAMBLE_CONTROL_RESERVED, SCRAMBLE_CONTROL_EVEN_KEY or SCRAMBLE_CONTROL_ODD_KEY. key[1] is a set of bit flags, with the only possible bit being SCRAMBLE_FLAG_PES_HEADER currently. key[2~15] are not used. This value cannot be null. |
| Returns | |
|---|---|
int | number of bytes that have been successfully descrambled, with negative values indicating errors. |
| Throws | |
|---|---|
IllegalStateException | if the descrambler instance is not valid. |
MediaCasStateException | for CAS-specific state exceptions. |
requiresSecureDecoderComponent
public boolean requiresSecureDecoderComponent (String mime)
Query if the scrambling scheme requires the use of a secure decoder to decode data of the given mime type.
| Parameters | |
|---|---|
mime | String: The mime type of the media data This value cannot be null. |
| Returns | |
|---|---|
boolean | |
| Throws | |
|---|---|
IllegalStateException | if the descrambler instance is not valid. |
setMediaCasSession
public void setMediaCasSession (MediaCas.Session session)
Associate a MediaCas session with this MediaDescrambler instance. The MediaCas session is used to securely load decryption keys for the descrambler. The crypto keys loaded through the MediaCas session may be selected for use during the descrambling operation performed by or @link android.media.MediaCodec#queueSecureInputBuffer by specifying even or odd key in the MediaCodec.CryptoInfo.key field.
| Parameters | |
|---|---|
session | MediaCas.Session: the MediaCas session to associate with this MediaDescrambler instance. This value cannot be null. |
| Throws | |
|---|---|
IllegalStateException | if the descrambler instance is not valid. |
MediaCasStateException | for CAS-specific state exceptions. |
Protected methods
finalize
protected void finalize ()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. A subclass overrides the finalize method to dispose of system resources or to perform other cleanup.
The general contract of finalize is that it is invoked if and when the Java virtual machine has determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, except as a result of an action taken by the finalization of some other object or class which is ready to be finalized. The finalize method may take any action, including making this object available again to other threads; the usual purpose of finalize, however, is to perform cleanup actions before the object is irrevocably discarded. For example, the finalize method for an object that represents an input/output connection might perform explicit I/O transactions to break the connection before the object is permanently discarded.
The finalize method of class Object performs no special action; it simply returns normally. Subclasses of Object may override this definition.
The Java programming language does not guarantee which thread will invoke the finalize method for any given object. It is guaranteed, however, that the thread that invokes finalize will not be holding any user-visible synchronization locks when finalize is invoked. If an uncaught exception is thrown by the finalize method, the exception is ignored and finalization of that object terminates.
After the finalize method has been invoked for an object, no further action is taken until the Java virtual machine has again determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, including possible actions by other objects or classes which are ready to be finalized, at which point the object may be discarded.
The finalize method is never invoked more than once by a Java virtual machine for any given object.
Any exception thrown by the finalize method causes the finalization of this object to be halted, but is otherwise ignored.