Back to Exoplayer

DrmInitData.SchemeData (ExoPlayer library)

docs/doc/reference/com/google/android/exoplayer2/drm/DrmInitData.SchemeData.html

latest8.2 KB
Original Source

Package com.google.android.exoplayer2.drm

Class DrmInitData.SchemeData

  • java.lang.Object

    • com.google.android.exoplayer2.drm.DrmInitData.SchemeData
  • All Implemented Interfaces:ParcelableEnclosing class:DrmInitData


public static final classDrmInitData.SchemeDataextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")implements[Parcelable](https://developer.android.com/reference/android/os/Parcelable.html "class or interface in android.os")

Scheme initialization data.

Nested Class Summary

- 

Nested classes/interfaces inherited from interface android.os.Parcelable

Parcelable.ClassLoaderCreator<T extends Object>, Parcelable.Creator<T extends Object>

Field Summary

Fields | Modifier and Type | Field | Description | | --- | --- | --- | | static Parcelable.Creator<DrmInitData.SchemeData> | CREATOR | | | byte[] | data | The initialization data. | | String | licenseServerUrl | The URL of the server to which license requests should be made. | | String | mimeType | The mimeType of data. | | UUID | uuid | The UUID of the DRM scheme, or C.UUID_NIL if the data is universal (i.e. |

- 

Fields inherited from interface android.os.Parcelable

CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE

Constructor Summary

Constructors | Constructor | Description | | --- | --- | | SchemeData​(UUID uuid, String mimeType, byte[] data) | | | SchemeData​(UUID uuid, String licenseServerUrl, String mimeType, byte[] data) | |

Method Summary

All Methods Instance Methods Concrete Methods | Modifier and Type | Method | Description | | --- | --- | --- | | boolean | canReplace​(DrmInitData.SchemeData other) | Returns whether this DrmInitData.SchemeData can be used to replace other. | | DrmInitData.SchemeData | copyWithData​(byte[] data) | Returns a copy of this instance with the specified data. | | int | describeContents() | | | boolean | equals​(Object obj) | | | boolean | hasData() | Returns whether data is non-null. | | int | hashCode() | | | boolean | matches​(UUID schemeUuid) | Returns whether this initialization data applies to the specified scheme. | | void | writeToParcel​(Parcel dest, int flags) | |

- 

Methods inherited from class java.lang.Object

clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait

Field Detail

- 

uuid

public final[UUID](https://developer.android.com/reference/java/util/UUID.html "class or interface in java.util")uuid

The UUID of the DRM scheme, or C.UUID_NIL if the data is universal (i.e. applies to all schemes).

- 

licenseServerUrl

@Nullable
public final[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")licenseServerUrl

The URL of the server to which license requests should be made. May be null if unknown.

- 

mimeType

public final[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")mimeType

The mimeType of data.

- 

data

@Nullable
public final byte[] data

The initialization data. May be null for scheme support checks only.

- 

CREATOR

public static final[Parcelable.Creator](https://developer.android.com/reference/android/os/Parcelable.Creator.html "class or interface in android.os")<[DrmInitData.SchemeData](DrmInitData.SchemeData.html "class in com.google.android.exoplayer2.drm")> CREATOR

Constructor Detail

- 

SchemeData

public SchemeData​([UUID](https://developer.android.com/reference/java/util/UUID.html "class or interface in java.util")uuid,[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")mimeType,
                  @Nullable
                  byte[] data)

Parameters:uuid - The UUID of the DRM scheme, or C.UUID_NIL if the data is universal (i.e. applies to all schemes).mimeType - See mimeType.data - See data.

- 

SchemeData

public SchemeData​([UUID](https://developer.android.com/reference/java/util/UUID.html "class or interface in java.util")uuid,
                  @Nullable[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")licenseServerUrl,[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")mimeType,
                  @Nullable
                  byte[] data)

Parameters:uuid - The UUID of the DRM scheme, or C.UUID_NIL if the data is universal (i.e. applies to all schemes).licenseServerUrl - See licenseServerUrl.mimeType - See mimeType.data - See data.

Method Detail

- 

matches

public boolean matches​([UUID](https://developer.android.com/reference/java/util/UUID.html "class or interface in java.util")schemeUuid)

Returns whether this initialization data applies to the specified scheme. Parameters:schemeUuid - The scheme UUID.Returns:Whether this initialization data applies to the specified scheme.

- 

canReplace

public boolean canReplace​([DrmInitData.SchemeData](DrmInitData.SchemeData.html "class in com.google.android.exoplayer2.drm")other)

Returns whether this DrmInitData.SchemeData can be used to replace other. Parameters:other - A DrmInitData.SchemeData.Returns:Whether this DrmInitData.SchemeData can be used to replace other.

- 

hasData

public boolean hasData()

Returns whether data is non-null.

- 

copyWithData

@CheckResult
public[DrmInitData.SchemeData](DrmInitData.SchemeData.html "class in com.google.android.exoplayer2.drm")copyWithData​(@Nullable
                                           byte[] data)

Returns a copy of this instance with the specified data. Parameters:data - The data to include in the copy.Returns:The new instance.

- 

equals

public boolean equals​(@Nullable[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")obj)

Overrides:equals in class Object

- 

hashCode

public int hashCode()

Overrides:hashCode in class Object

- 

describeContents

public int describeContents()

Specified by:describeContents in interface Parcelable

- 

writeToParcel

public void writeToParcel​([Parcel](https://developer.android.com/reference/android/os/Parcel.html "class or interface in android.os")dest,
                          int flags)

Specified by:writeToParcel in interface Parcelable