Class DrmInitData.SchemeData
- java.lang.Object
-
- com.google.android.exoplayer2.drm.DrmInitData.SchemeData
-
- All Implemented Interfaces:
Parcelable
- Enclosing class:
- DrmInitData
public static final class DrmInitData.SchemeData extends Object implements Parcelable
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 ofdata
.UUID
uuid
TheUUID
of the DRM scheme, orC.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 thisDrmInitData.SchemeData
can be used to replaceother
.DrmInitData.SchemeData
copyWithData(byte[] data)
Returns a copy of this instance with the specified data.int
describeContents()
boolean
equals(Object obj)
boolean
hasData()
Returns whetherdata
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)
-
-
-
Field Detail
-
uuid
public final UUID uuid
TheUUID
of the DRM scheme, orC.UUID_NIL
if the data is universal (i.e. applies to all schemes).
-
licenseServerUrl
@Nullable public final String licenseServerUrl
The URL of the server to which license requests should be made. May be null if unknown.
-
data
@Nullable public final byte[] data
The initialization data. May be null for scheme support checks only.
-
CREATOR
public static final Parcelable.Creator<DrmInitData.SchemeData> CREATOR
-
-
Constructor Detail
-
SchemeData
public SchemeData(UUID uuid, String mimeType, @Nullable byte[] data)
- Parameters:
uuid
- TheUUID
of the DRM scheme, orC.UUID_NIL
if the data is universal (i.e. applies to all schemes).mimeType
- SeemimeType
.data
- Seedata
.
-
SchemeData
public SchemeData(UUID uuid, @Nullable String licenseServerUrl, String mimeType, @Nullable byte[] data)
- Parameters:
uuid
- TheUUID
of the DRM scheme, orC.UUID_NIL
if the data is universal (i.e. applies to all schemes).licenseServerUrl
- SeelicenseServerUrl
.mimeType
- SeemimeType
.data
- Seedata
.
-
-
Method Detail
-
matches
public boolean matches(UUID schemeUuid)
Returns whether this initialization data applies to the specified scheme.- Parameters:
schemeUuid
- The schemeUUID
.- Returns:
- Whether this initialization data applies to the specified scheme.
-
canReplace
public boolean canReplace(DrmInitData.SchemeData other)
Returns whether thisDrmInitData.SchemeData
can be used to replaceother
.- Parameters:
other
- ADrmInitData.SchemeData
.- Returns:
- Whether this
DrmInitData.SchemeData
can be used to replaceother
.
-
hasData
public boolean hasData()
Returns whetherdata
is non-null.
-
copyWithData
@CheckResult public DrmInitData.SchemeData 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.
-
describeContents
public int describeContents()
- Specified by:
describeContents
in interfaceParcelable
-
writeToParcel
public void writeToParcel(Parcel dest, int flags)
- Specified by:
writeToParcel
in interfaceParcelable
-
-