Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
73b5d0c3
authored
Jul 07, 2021
by
aquilescanta
Committed by
kim-vde
Jul 09, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Expand documentation of ERROR_CODE_DRM_CONTENT_ERROR
PiperOrigin-RevId: 383382813
parent
a302e349
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
library/common/src/main/java/com/google/android/exoplayer2/PlaybackException.java
library/common/src/main/java/com/google/android/exoplayer2/PlaybackException.java
View file @
73b5d0c3
...
@@ -182,7 +182,12 @@ public class PlaybackException extends Exception implements Bundleable {
...
@@ -182,7 +182,12 @@ public class PlaybackException extends Exception implements Bundleable {
public
static
final
int
ERROR_CODE_DRM_SCHEME_UNSUPPORTED
=
6001
;
public
static
final
int
ERROR_CODE_DRM_SCHEME_UNSUPPORTED
=
6001
;
/** Caused by a failure while provisioning the device. */
/** Caused by a failure while provisioning the device. */
public
static
final
int
ERROR_CODE_DRM_PROVISIONING_FAILED
=
6002
;
public
static
final
int
ERROR_CODE_DRM_PROVISIONING_FAILED
=
6002
;
/** Caused by attempting to play incompatible DRM-protected content. */
/**
* Caused by attempting to play incompatible DRM-protected content.
*
* <p>For example, this can happen when attempting to play a DRM protected stream using a scheme
* (like Widevine) for which there is no corresponding license acquisition data (like a pssh box).
*/
public
static
final
int
ERROR_CODE_DRM_CONTENT_ERROR
=
6003
;
public
static
final
int
ERROR_CODE_DRM_CONTENT_ERROR
=
6003
;
/** Caused by a failure while trying to obtain a license. */
/** Caused by a failure while trying to obtain a license. */
public
static
final
int
ERROR_CODE_DRM_LICENSE_ACQUISITION_FAILED
=
6004
;
public
static
final
int
ERROR_CODE_DRM_LICENSE_ACQUISITION_FAILED
=
6004
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment