java.lang.Object
↳java.lang.Throwable
↳java.lang.Exception
↳androidx.media3.common.PlaybackException
Subclasses:
ExoPlaybackException
Gradle dependencies
compile group: 'androidx.media3', name: 'media3-common', version: '1.5.0-alpha01'
- groupId: androidx.media3
- artifactId: media3-common
- version: 1.5.0-alpha01
Artifact androidx.media3:media3-common:1.5.0-alpha01 it located at Google repository (https://maven.google.com/)
Overview
Thrown when a non locally recoverable playback failure occurs.
Summary
Constructors |
---|
protected | PlaybackException(Bundle bundle)
Creates a new instance using the fields obtained from the given . |
public | PlaybackException(java.lang.String message, java.lang.Throwable cause, int errorCode)
Creates an instance. |
public | PlaybackException(java.lang.String message, java.lang.Throwable cause, int errorCode, Bundle extras)
Creates an instance. |
protected | PlaybackException(java.lang.String message, java.lang.Throwable cause, int errorCode, Bundle extras, long timestampMs)
Creates a new instance using the given values. |
Methods |
---|
public boolean | errorInfoEquals(PlaybackException other)
Returns whether the error data associated to this exception equals the error data associated to
other. |
public static PlaybackException | fromBundle(Bundle bundle)
Restores a PlaybackException from a . |
public final java.lang.String | getErrorCodeName()
Equivalent to PlaybackException.getErrorCodeName(this.errorCode). |
public static java.lang.String | getErrorCodeName(int errorCode)
Returns the name of a given errorCode. |
public Bundle | toBundle()
Returns a representing the information stored in this exception. |
from java.lang.Throwable | addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
from java.lang.Object | clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Fields
public static final int
ERROR_CODE_INVALID_STATECaused by a command that cannot be completed because the current state is not valid.
public static final int
ERROR_CODE_BAD_VALUECaused by an argument that is illegal.
public static final int
ERROR_CODE_PERMISSION_DENIEDCaused by a command that is not allowed.
public static final int
ERROR_CODE_NOT_SUPPORTEDCaused by a command that is not supported.
public static final int
ERROR_CODE_DISCONNECTEDCaused by a disconnected component.
public static final int
ERROR_CODE_AUTHENTICATION_EXPIREDCaused by expired authentication.
public static final int
ERROR_CODE_PREMIUM_ACCOUNT_REQUIREDCaused by a premium account that is required but the user is not subscribed.
public static final int
ERROR_CODE_CONCURRENT_STREAM_LIMITCaused by too many concurrent streams.
public static final int
ERROR_CODE_PARENTAL_CONTROL_RESTRICTEDCaused by the content being blocked due to parental controls.
public static final int
ERROR_CODE_NOT_AVAILABLE_IN_REGIONCaused by the content being blocked due to being regionally unavailable.
public static final int
ERROR_CODE_SKIP_LIMIT_REACHEDCaused by the skip limit that is exhausted.
public static final int
ERROR_CODE_SETUP_REQUIREDCaused by playback that needs manual user intervention.
public static final int
ERROR_CODE_END_OF_PLAYLISTCaused by navigation that failed because the playlist was exhausted.
public static final int
ERROR_CODE_CONTENT_ALREADY_PLAYINGCaused by a request for content that was already playing.
public static final int
ERROR_CODE_UNSPECIFIEDCaused by an error whose cause could not be identified.
public static final int
ERROR_CODE_REMOTE_ERRORCaused by an unidentified error in a remote Player, which is a Player that runs on a different
host or process.
public static final int
ERROR_CODE_BEHIND_LIVE_WINDOWCaused by the loading position falling behind the sliding window of available live content.
public static final int
ERROR_CODE_TIMEOUTCaused by a generic timeout.
public static final int
ERROR_CODE_FAILED_RUNTIME_CHECKCaused by a failed runtime check.
This can happen when the application fails to comply with the player's API requirements (for
example, by passing invalid arguments), or when the player reaches an invalid state.
public static final int
ERROR_CODE_IO_UNSPECIFIEDCaused by an Input/Output error which could not be identified.
public static final int
ERROR_CODE_IO_NETWORK_CONNECTION_FAILEDCaused by a network connection failure.
The following is a non-exhaustive list of possible reasons:
- There is no network connectivity (you can check this by querying
ConnectivityManager
).
- The URL's domain is misspelled or does not exist.
- The target host is unreachable.
- The server unexpectedly closes the connection.
public static final int
ERROR_CODE_IO_NETWORK_CONNECTION_TIMEOUTCaused by a network timeout, meaning the server is taking too long to fulfill a request.
public static final int
ERROR_CODE_IO_INVALID_HTTP_CONTENT_TYPECaused by a server returning a resource with an invalid "Content-Type" HTTP header value.
For example, this can happen when the player is expecting a piece of media, but the server
returns a paywall HTML page, with content type "text/html".
public static final int
ERROR_CODE_IO_BAD_HTTP_STATUSCaused by an HTTP server returning an unexpected HTTP response status code.
public static final int
ERROR_CODE_IO_FILE_NOT_FOUNDCaused by a non-existent file.
public static final int
ERROR_CODE_IO_NO_PERMISSIONCaused by lack of permission to perform an IO operation. For example, lack of permission to
access internet or external storage.
public static final int
ERROR_CODE_IO_CLEARTEXT_NOT_PERMITTEDCaused by the player trying to access cleartext HTTP traffic (meaning http:// rather than
https://) when the app's Network Security Configuration does not permit it.
See this
corresponding troubleshooting topic.
public static final int
ERROR_CODE_IO_READ_POSITION_OUT_OF_RANGECaused by reading data out of the data bound.
public static final int
ERROR_CODE_PARSING_CONTAINER_MALFORMEDCaused by a parsing error associated with a media container format bitstream.
public static final int
ERROR_CODE_PARSING_MANIFEST_MALFORMEDCaused by a parsing error associated with a media manifest. Examples of a media manifest are a
DASH or a SmoothStreaming manifest, or an HLS playlist.
public static final int
ERROR_CODE_PARSING_CONTAINER_UNSUPPORTEDCaused by attempting to extract a file with an unsupported media container format, or an
unsupported media container feature.
public static final int
ERROR_CODE_PARSING_MANIFEST_UNSUPPORTEDCaused by an unsupported feature in a media manifest. Examples of a media manifest are a DASH
or a SmoothStreaming manifest, or an HLS playlist.
public static final int
ERROR_CODE_DECODER_INIT_FAILEDCaused by a decoder initialization failure.
public static final int
ERROR_CODE_DECODER_QUERY_FAILEDCaused by a decoder query failure.
public static final int
ERROR_CODE_DECODING_FAILEDCaused by a failure while trying to decode media samples.
public static final int
ERROR_CODE_DECODING_FORMAT_EXCEEDS_CAPABILITIESCaused by trying to decode content whose format exceeds the capabilities of the device.
public static final int
ERROR_CODE_DECODING_FORMAT_UNSUPPORTEDCaused by trying to decode content whose format is not supported.
public static final int
ERROR_CODE_DECODING_RESOURCES_RECLAIMEDCaused by higher priority task reclaiming resources needed for decoding.
public static final int
ERROR_CODE_AUDIO_TRACK_INIT_FAILEDCaused by an AudioTrack initialization failure.
public static final int
ERROR_CODE_AUDIO_TRACK_WRITE_FAILEDCaused by an AudioTrack write operation failure.
public static final int
ERROR_CODE_AUDIO_TRACK_OFFLOAD_WRITE_FAILEDCaused by an AudioTrack write operation failure in offload mode.
public static final int
ERROR_CODE_AUDIO_TRACK_OFFLOAD_INIT_FAILEDCaused by an AudioTrack init operation failure in offload mode.
public static final int
ERROR_CODE_DRM_UNSPECIFIEDCaused by an unspecified error related to DRM protection.
public static final int
ERROR_CODE_DRM_SCHEME_UNSUPPORTEDCaused by a chosen DRM protection scheme not being supported by the device. Examples of DRM
protection schemes are ClearKey and Widevine.
public static final int
ERROR_CODE_DRM_PROVISIONING_FAILEDCaused by a failure while provisioning the device.
public static final int
ERROR_CODE_DRM_CONTENT_ERRORCaused by attempting to play incompatible DRM-protected content.
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_LICENSE_ACQUISITION_FAILEDCaused by a failure while trying to obtain a license.
public static final int
ERROR_CODE_DRM_DISALLOWED_OPERATIONCaused by an operation being disallowed by a license policy.
public static final int
ERROR_CODE_DRM_SYSTEM_ERRORCaused by an error in the DRM system.
public static final int
ERROR_CODE_DRM_DEVICE_REVOKEDCaused by the device having revoked DRM privileges.
public static final int
ERROR_CODE_DRM_LICENSE_EXPIREDCaused by an expired DRM license being loaded into an open DRM session.
public static final int
ERROR_CODE_VIDEO_FRAME_PROCESSOR_INIT_FAILEDCaused by a failure when initializing a VideoFrameProcessor.
public static final int
ERROR_CODE_VIDEO_FRAME_PROCESSING_FAILEDCaused by a failure when processing a video frame.
public static final int
CUSTOM_ERROR_CODE_BASEPlayer implementations that want to surface custom errors can use error codes greater than this
value, so as to avoid collision with other error codes defined in this class.
public final int
errorCodeAn error code which identifies the cause of the playback failure.
public final long
timestampMsThe value of when this exception was created.
public final Bundle
extrasAn extras .
protected static final int
FIELD_CUSTOM_ID_BASEDefines a minimum field ID value for subclasses to use when implementing PlaybackException.toBundle()
and delegating to PlaybackException.PlaybackException(Bundle).
Subclasses should obtain their field keys by applying a non-negative
offset on this constant and passing the result to Util.intToStringMaxRadix(int).
Constructors
public
PlaybackException(java.lang.String message, java.lang.Throwable cause, int errorCode)
Creates an instance.
Parameters:
errorCode: A number which identifies the cause of the error. May be one of the ErrorCodes.
cause: See getCause
.
message: See getMessage
.
public
PlaybackException(java.lang.String message, java.lang.Throwable cause, int errorCode, Bundle extras)
Creates an instance.
Parameters:
errorCode: A number which identifies the cause of the error. May be one of the ErrorCodes.
cause: See getCause
.
message: See getMessage
.
extras: An optional .
protected
PlaybackException(Bundle bundle)
Creates a new instance using the fields obtained from the given .
protected
PlaybackException(java.lang.String message, java.lang.Throwable cause, int errorCode, Bundle extras, long timestampMs)
Creates a new instance using the given values.
Methods
public static java.lang.String
getErrorCodeName(int errorCode)
Returns the name of a given errorCode.
public final java.lang.String
getErrorCodeName()
Equivalent to PlaybackException.getErrorCodeName(this.errorCode).
Returns whether the error data associated to this exception equals the error data associated to
other.
Note that this method does not compare the exceptions' stacktraces.
Restores a PlaybackException from a .
Returns a representing the information stored in this exception.
Source
/*
* Copyright 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.media3.common;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.LOCAL_VARIABLE;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE_USE;
import android.net.ConnectivityManager;
import android.os.Bundle;
import android.os.RemoteException;
import android.os.SystemClock;
import android.text.TextUtils;
import androidx.annotation.CallSuper;
import androidx.annotation.IntDef;
import androidx.annotation.Nullable;
import androidx.media3.common.util.Clock;
import androidx.media3.common.util.UnstableApi;
import androidx.media3.common.util.Util;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Thrown when a non locally recoverable playback failure occurs. */
public class PlaybackException extends Exception {
/**
* Codes that identify causes of player errors.
*
* <p>This list of errors may be extended in future versions, and {@link Player} implementations
* may define custom error codes.
*/
// @Target list includes both 'default' targets and TYPE_USE, to ensure backwards compatibility
// with Kotlin usages from before TYPE_USE was added.
@Documented
@Retention(RetentionPolicy.SOURCE)
@Target({FIELD, METHOD, PARAMETER, LOCAL_VARIABLE, TYPE_USE})
@IntDef(
open = true,
value = {
ERROR_CODE_INVALID_STATE,
ERROR_CODE_BAD_VALUE,
ERROR_CODE_PERMISSION_DENIED,
ERROR_CODE_NOT_SUPPORTED,
ERROR_CODE_DISCONNECTED,
ERROR_CODE_AUTHENTICATION_EXPIRED,
ERROR_CODE_PREMIUM_ACCOUNT_REQUIRED,
ERROR_CODE_CONCURRENT_STREAM_LIMIT,
ERROR_CODE_PARENTAL_CONTROL_RESTRICTED,
ERROR_CODE_NOT_AVAILABLE_IN_REGION,
ERROR_CODE_SKIP_LIMIT_REACHED,
ERROR_CODE_SETUP_REQUIRED,
ERROR_CODE_END_OF_PLAYLIST,
ERROR_CODE_CONTENT_ALREADY_PLAYING,
ERROR_CODE_UNSPECIFIED,
ERROR_CODE_REMOTE_ERROR,
ERROR_CODE_BEHIND_LIVE_WINDOW,
ERROR_CODE_TIMEOUT,
ERROR_CODE_FAILED_RUNTIME_CHECK,
ERROR_CODE_IO_UNSPECIFIED,
ERROR_CODE_IO_NETWORK_CONNECTION_FAILED,
ERROR_CODE_IO_NETWORK_CONNECTION_TIMEOUT,
ERROR_CODE_IO_INVALID_HTTP_CONTENT_TYPE,
ERROR_CODE_IO_BAD_HTTP_STATUS,
ERROR_CODE_IO_FILE_NOT_FOUND,
ERROR_CODE_IO_NO_PERMISSION,
ERROR_CODE_IO_CLEARTEXT_NOT_PERMITTED,
ERROR_CODE_IO_READ_POSITION_OUT_OF_RANGE,
ERROR_CODE_PARSING_CONTAINER_MALFORMED,
ERROR_CODE_PARSING_MANIFEST_MALFORMED,
ERROR_CODE_PARSING_CONTAINER_UNSUPPORTED,
ERROR_CODE_PARSING_MANIFEST_UNSUPPORTED,
ERROR_CODE_DECODER_INIT_FAILED,
ERROR_CODE_DECODER_QUERY_FAILED,
ERROR_CODE_DECODING_FAILED,
ERROR_CODE_DECODING_FORMAT_EXCEEDS_CAPABILITIES,
ERROR_CODE_DECODING_FORMAT_UNSUPPORTED,
ERROR_CODE_AUDIO_TRACK_INIT_FAILED,
ERROR_CODE_AUDIO_TRACK_WRITE_FAILED,
ERROR_CODE_AUDIO_TRACK_OFFLOAD_INIT_FAILED,
ERROR_CODE_AUDIO_TRACK_OFFLOAD_WRITE_FAILED,
ERROR_CODE_DRM_UNSPECIFIED,
ERROR_CODE_DRM_SCHEME_UNSUPPORTED,
ERROR_CODE_DRM_PROVISIONING_FAILED,
ERROR_CODE_DRM_CONTENT_ERROR,
ERROR_CODE_DRM_LICENSE_ACQUISITION_FAILED,
ERROR_CODE_DRM_DISALLOWED_OPERATION,
ERROR_CODE_DRM_SYSTEM_ERROR,
ERROR_CODE_DRM_DEVICE_REVOKED,
ERROR_CODE_DRM_LICENSE_EXPIRED
})
public @interface ErrorCode {}
// Policy errors (-1 to -999)
/** Caused by a command that cannot be completed because the current state is not valid. */
public static final int ERROR_CODE_INVALID_STATE = -2;
/** Caused by an argument that is illegal. */
public static final int ERROR_CODE_BAD_VALUE = -3;
/** Caused by a command that is not allowed. */
public static final int ERROR_CODE_PERMISSION_DENIED = -4;
/** Caused by a command that is not supported. */
public static final int ERROR_CODE_NOT_SUPPORTED = -6;
/** Caused by a disconnected component. */
public static final int ERROR_CODE_DISCONNECTED = -100;
/** Caused by expired authentication. */
public static final int ERROR_CODE_AUTHENTICATION_EXPIRED = -102;
/** Caused by a premium account that is required but the user is not subscribed. */
public static final int ERROR_CODE_PREMIUM_ACCOUNT_REQUIRED = -103;
/** Caused by too many concurrent streams. */
public static final int ERROR_CODE_CONCURRENT_STREAM_LIMIT = -104;
/** Caused by the content being blocked due to parental controls. */
public static final int ERROR_CODE_PARENTAL_CONTROL_RESTRICTED = -105;
/** Caused by the content being blocked due to being regionally unavailable. */
public static final int ERROR_CODE_NOT_AVAILABLE_IN_REGION = -106;
/** Caused by the skip limit that is exhausted. */
public static final int ERROR_CODE_SKIP_LIMIT_REACHED = -107;
/** Caused by playback that needs manual user intervention. */
public static final int ERROR_CODE_SETUP_REQUIRED = -108;
/** Caused by navigation that failed because the playlist was exhausted. */
public static final int ERROR_CODE_END_OF_PLAYLIST = -109;
/** Caused by a request for content that was already playing. */
public static final int ERROR_CODE_CONTENT_ALREADY_PLAYING = -110;
// Miscellaneous errors (1xxx).
/** Caused by an error whose cause could not be identified. */
public static final int ERROR_CODE_UNSPECIFIED = 1000;
/**
* Caused by an unidentified error in a remote Player, which is a Player that runs on a different
* host or process.
*/
public static final int ERROR_CODE_REMOTE_ERROR = 1001;
/** Caused by the loading position falling behind the sliding window of available live content. */
public static final int ERROR_CODE_BEHIND_LIVE_WINDOW = 1002;
/** Caused by a generic timeout. */
public static final int ERROR_CODE_TIMEOUT = 1003;
/**
* Caused by a failed runtime check.
*
* <p>This can happen when the application fails to comply with the player's API requirements (for
* example, by passing invalid arguments), or when the player reaches an invalid state.
*/
public static final int ERROR_CODE_FAILED_RUNTIME_CHECK = 1004;
// Input/Output errors (2xxx).
/** Caused by an Input/Output error which could not be identified. */
public static final int ERROR_CODE_IO_UNSPECIFIED = 2000;
/**
* Caused by a network connection failure.
*
* <p>The following is a non-exhaustive list of possible reasons:
*
* <ul>
* <li>There is no network connectivity (you can check this by querying {@link
* ConnectivityManager#getActiveNetwork}).
* <li>The URL's domain is misspelled or does not exist.
* <li>The target host is unreachable.
* <li>The server unexpectedly closes the connection.
* </ul>
*/
public static final int ERROR_CODE_IO_NETWORK_CONNECTION_FAILED = 2001;
/** Caused by a network timeout, meaning the server is taking too long to fulfill a request. */
public static final int ERROR_CODE_IO_NETWORK_CONNECTION_TIMEOUT = 2002;
/**
* Caused by a server returning a resource with an invalid "Content-Type" HTTP header value.
*
* <p>For example, this can happen when the player is expecting a piece of media, but the server
* returns a paywall HTML page, with content type "text/html".
*/
public static final int ERROR_CODE_IO_INVALID_HTTP_CONTENT_TYPE = 2003;
/** Caused by an HTTP server returning an unexpected HTTP response status code. */
public static final int ERROR_CODE_IO_BAD_HTTP_STATUS = 2004;
/** Caused by a non-existent file. */
public static final int ERROR_CODE_IO_FILE_NOT_FOUND = 2005;
/**
* Caused by lack of permission to perform an IO operation. For example, lack of permission to
* access internet or external storage.
*/
public static final int ERROR_CODE_IO_NO_PERMISSION = 2006;
/**
* Caused by the player trying to access cleartext HTTP traffic (meaning http:// rather than
* https://) when the app's Network Security Configuration does not permit it.
*
* <p>See <a
* href="https://developer.android.com/guide/topics/media/issues/cleartext-not-permitted">this
* corresponding troubleshooting topic</a>.
*/
public static final int ERROR_CODE_IO_CLEARTEXT_NOT_PERMITTED = 2007;
/** Caused by reading data out of the data bound. */
public static final int ERROR_CODE_IO_READ_POSITION_OUT_OF_RANGE = 2008;
// Content parsing errors (3xxx).
/** Caused by a parsing error associated with a media container format bitstream. */
public static final int ERROR_CODE_PARSING_CONTAINER_MALFORMED = 3001;
/**
* Caused by a parsing error associated with a media manifest. Examples of a media manifest are a
* DASH or a SmoothStreaming manifest, or an HLS playlist.
*/
public static final int ERROR_CODE_PARSING_MANIFEST_MALFORMED = 3002;
/**
* Caused by attempting to extract a file with an unsupported media container format, or an
* unsupported media container feature.
*/
public static final int ERROR_CODE_PARSING_CONTAINER_UNSUPPORTED = 3003;
/**
* Caused by an unsupported feature in a media manifest. Examples of a media manifest are a DASH
* or a SmoothStreaming manifest, or an HLS playlist.
*/
public static final int ERROR_CODE_PARSING_MANIFEST_UNSUPPORTED = 3004;
// Decoding errors (4xxx).
/** Caused by a decoder initialization failure. */
public static final int ERROR_CODE_DECODER_INIT_FAILED = 4001;
/** Caused by a decoder query failure. */
public static final int ERROR_CODE_DECODER_QUERY_FAILED = 4002;
/** Caused by a failure while trying to decode media samples. */
public static final int ERROR_CODE_DECODING_FAILED = 4003;
/** Caused by trying to decode content whose format exceeds the capabilities of the device. */
public static final int ERROR_CODE_DECODING_FORMAT_EXCEEDS_CAPABILITIES = 4004;
/** Caused by trying to decode content whose format is not supported. */
public static final int ERROR_CODE_DECODING_FORMAT_UNSUPPORTED = 4005;
// TODO: b/322943860 - Stabilize error code and add to IntDef
/** Caused by higher priority task reclaiming resources needed for decoding. */
@UnstableApi public static final int ERROR_CODE_DECODING_RESOURCES_RECLAIMED = 4006;
// AudioTrack errors (5xxx).
/** Caused by an AudioTrack initialization failure. */
public static final int ERROR_CODE_AUDIO_TRACK_INIT_FAILED = 5001;
/** Caused by an AudioTrack write operation failure. */
public static final int ERROR_CODE_AUDIO_TRACK_WRITE_FAILED = 5002;
/** Caused by an AudioTrack write operation failure in offload mode. */
public static final int ERROR_CODE_AUDIO_TRACK_OFFLOAD_WRITE_FAILED = 5003;
/** Caused by an AudioTrack init operation failure in offload mode. */
public static final int ERROR_CODE_AUDIO_TRACK_OFFLOAD_INIT_FAILED = 5004;
// DRM errors (6xxx).
/** Caused by an unspecified error related to DRM protection. */
public static final int ERROR_CODE_DRM_UNSPECIFIED = 6000;
/**
* Caused by a chosen DRM protection scheme not being supported by the device. Examples of DRM
* protection schemes are ClearKey and Widevine.
*/
public static final int ERROR_CODE_DRM_SCHEME_UNSUPPORTED = 6001;
/** Caused by a failure while provisioning the device. */
public static final int ERROR_CODE_DRM_PROVISIONING_FAILED = 6002;
/**
* 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;
/** Caused by a failure while trying to obtain a license. */
public static final int ERROR_CODE_DRM_LICENSE_ACQUISITION_FAILED = 6004;
/** Caused by an operation being disallowed by a license policy. */
public static final int ERROR_CODE_DRM_DISALLOWED_OPERATION = 6005;
/** Caused by an error in the DRM system. */
public static final int ERROR_CODE_DRM_SYSTEM_ERROR = 6006;
/** Caused by the device having revoked DRM privileges. */
public static final int ERROR_CODE_DRM_DEVICE_REVOKED = 6007;
/** Caused by an expired DRM license being loaded into an open DRM session. */
public static final int ERROR_CODE_DRM_LICENSE_EXPIRED = 6008;
// Frame processing errors (7xxx).
/** Caused by a failure when initializing a {@link VideoFrameProcessor}. */
@UnstableApi public static final int ERROR_CODE_VIDEO_FRAME_PROCESSOR_INIT_FAILED = 7000;
/** Caused by a failure when processing a video frame. */
@UnstableApi public static final int ERROR_CODE_VIDEO_FRAME_PROCESSING_FAILED = 7001;
/**
* Player implementations that want to surface custom errors can use error codes greater than this
* value, so as to avoid collision with other error codes defined in this class.
*/
public static final int CUSTOM_ERROR_CODE_BASE = 1000000;
/** Returns the name of a given {@code errorCode}. */
public static String getErrorCodeName(@ErrorCode int errorCode) {
switch (errorCode) {
case ERROR_CODE_INVALID_STATE:
return "ERROR_CODE_INVALID_STATE";
case ERROR_CODE_BAD_VALUE:
return "ERROR_CODE_BAD_VALUE";
case ERROR_CODE_PERMISSION_DENIED:
return "ERROR_CODE_PERMISSION_DENIED";
case ERROR_CODE_NOT_SUPPORTED:
return "ERROR_CODE_NOT_SUPPORTED";
case ERROR_CODE_DISCONNECTED:
return "ERROR_CODE_DISCONNECTED";
case ERROR_CODE_AUTHENTICATION_EXPIRED:
return "ERROR_CODE_AUTHENTICATION_EXPIRED";
case ERROR_CODE_PREMIUM_ACCOUNT_REQUIRED:
return "ERROR_CODE_PREMIUM_ACCOUNT_REQUIRED";
case ERROR_CODE_CONCURRENT_STREAM_LIMIT:
return "ERROR_CODE_CONCURRENT_STREAM_LIMIT";
case ERROR_CODE_PARENTAL_CONTROL_RESTRICTED:
return "ERROR_CODE_PARENTAL_CONTROL_RESTRICTED";
case ERROR_CODE_NOT_AVAILABLE_IN_REGION:
return "ERROR_CODE_NOT_AVAILABLE_IN_REGION";
case ERROR_CODE_SKIP_LIMIT_REACHED:
return "ERROR_CODE_SKIP_LIMIT_REACHED";
case ERROR_CODE_SETUP_REQUIRED:
return "ERROR_CODE_SETUP_REQUIRED";
case ERROR_CODE_END_OF_PLAYLIST:
return "ERROR_CODE_END_OF_PLAYLIST";
case ERROR_CODE_CONTENT_ALREADY_PLAYING:
return "ERROR_CODE_CONTENT_ALREADY_PLAYING";
case ERROR_CODE_UNSPECIFIED:
return "ERROR_CODE_UNSPECIFIED";
case ERROR_CODE_REMOTE_ERROR:
return "ERROR_CODE_REMOTE_ERROR";
case ERROR_CODE_BEHIND_LIVE_WINDOW:
return "ERROR_CODE_BEHIND_LIVE_WINDOW";
case ERROR_CODE_TIMEOUT:
return "ERROR_CODE_TIMEOUT";
case ERROR_CODE_FAILED_RUNTIME_CHECK:
return "ERROR_CODE_FAILED_RUNTIME_CHECK";
case ERROR_CODE_IO_UNSPECIFIED:
return "ERROR_CODE_IO_UNSPECIFIED";
case ERROR_CODE_IO_NETWORK_CONNECTION_FAILED:
return "ERROR_CODE_IO_NETWORK_CONNECTION_FAILED";
case ERROR_CODE_IO_NETWORK_CONNECTION_TIMEOUT:
return "ERROR_CODE_IO_NETWORK_CONNECTION_TIMEOUT";
case ERROR_CODE_IO_INVALID_HTTP_CONTENT_TYPE:
return "ERROR_CODE_IO_INVALID_HTTP_CONTENT_TYPE";
case ERROR_CODE_IO_BAD_HTTP_STATUS:
return "ERROR_CODE_IO_BAD_HTTP_STATUS";
case ERROR_CODE_IO_FILE_NOT_FOUND:
return "ERROR_CODE_IO_FILE_NOT_FOUND";
case ERROR_CODE_IO_NO_PERMISSION:
return "ERROR_CODE_IO_NO_PERMISSION";
case ERROR_CODE_IO_CLEARTEXT_NOT_PERMITTED:
return "ERROR_CODE_IO_CLEARTEXT_NOT_PERMITTED";
case ERROR_CODE_IO_READ_POSITION_OUT_OF_RANGE:
return "ERROR_CODE_IO_READ_POSITION_OUT_OF_RANGE";
case ERROR_CODE_PARSING_CONTAINER_MALFORMED:
return "ERROR_CODE_PARSING_CONTAINER_MALFORMED";
case ERROR_CODE_PARSING_MANIFEST_MALFORMED:
return "ERROR_CODE_PARSING_MANIFEST_MALFORMED";
case ERROR_CODE_PARSING_CONTAINER_UNSUPPORTED:
return "ERROR_CODE_PARSING_CONTAINER_UNSUPPORTED";
case ERROR_CODE_PARSING_MANIFEST_UNSUPPORTED:
return "ERROR_CODE_PARSING_MANIFEST_UNSUPPORTED";
case ERROR_CODE_DECODER_INIT_FAILED:
return "ERROR_CODE_DECODER_INIT_FAILED";
case ERROR_CODE_DECODER_QUERY_FAILED:
return "ERROR_CODE_DECODER_QUERY_FAILED";
case ERROR_CODE_DECODING_FAILED:
return "ERROR_CODE_DECODING_FAILED";
case ERROR_CODE_DECODING_FORMAT_EXCEEDS_CAPABILITIES:
return "ERROR_CODE_DECODING_FORMAT_EXCEEDS_CAPABILITIES";
case ERROR_CODE_DECODING_FORMAT_UNSUPPORTED:
return "ERROR_CODE_DECODING_FORMAT_UNSUPPORTED";
case ERROR_CODE_DECODING_RESOURCES_RECLAIMED:
return "ERROR_CODE_DECODING_RESOURCES_RECLAIMED";
case ERROR_CODE_AUDIO_TRACK_INIT_FAILED:
return "ERROR_CODE_AUDIO_TRACK_INIT_FAILED";
case ERROR_CODE_AUDIO_TRACK_WRITE_FAILED:
return "ERROR_CODE_AUDIO_TRACK_WRITE_FAILED";
case ERROR_CODE_AUDIO_TRACK_OFFLOAD_WRITE_FAILED:
return "ERROR_CODE_AUDIO_TRACK_OFFLOAD_WRITE_FAILED";
case ERROR_CODE_AUDIO_TRACK_OFFLOAD_INIT_FAILED:
return "ERROR_CODE_AUDIO_TRACK_OFFLOAD_INIT_FAILED";
case ERROR_CODE_DRM_UNSPECIFIED:
return "ERROR_CODE_DRM_UNSPECIFIED";
case ERROR_CODE_DRM_SCHEME_UNSUPPORTED:
return "ERROR_CODE_DRM_SCHEME_UNSUPPORTED";
case ERROR_CODE_DRM_PROVISIONING_FAILED:
return "ERROR_CODE_DRM_PROVISIONING_FAILED";
case ERROR_CODE_DRM_CONTENT_ERROR:
return "ERROR_CODE_DRM_CONTENT_ERROR";
case ERROR_CODE_DRM_LICENSE_ACQUISITION_FAILED:
return "ERROR_CODE_DRM_LICENSE_ACQUISITION_FAILED";
case ERROR_CODE_DRM_DISALLOWED_OPERATION:
return "ERROR_CODE_DRM_DISALLOWED_OPERATION";
case ERROR_CODE_DRM_SYSTEM_ERROR:
return "ERROR_CODE_DRM_SYSTEM_ERROR";
case ERROR_CODE_DRM_DEVICE_REVOKED:
return "ERROR_CODE_DRM_DEVICE_REVOKED";
case ERROR_CODE_DRM_LICENSE_EXPIRED:
return "ERROR_CODE_DRM_LICENSE_EXPIRED";
case ERROR_CODE_VIDEO_FRAME_PROCESSOR_INIT_FAILED:
return "ERROR_CODE_VIDEO_FRAME_PROCESSOR_INIT_FAILED";
case ERROR_CODE_VIDEO_FRAME_PROCESSING_FAILED:
return "ERROR_CODE_VIDEO_FRAME_PROCESSING_FAILED";
default:
if (errorCode >= CUSTOM_ERROR_CODE_BASE) {
return "custom error code";
} else {
return "invalid error code";
}
}
}
/**
* Equivalent to {@link PlaybackException#getErrorCodeName(int)
* PlaybackException.getErrorCodeName(this.errorCode)}.
*/
public final String getErrorCodeName() {
return getErrorCodeName(errorCode);
}
/** An error code which identifies the cause of the playback failure. */
public final @ErrorCode int errorCode;
/** The value of {@link SystemClock#elapsedRealtime()} when this exception was created. */
public final long timestampMs;
/** An extras {@link Bundle}. */
@UnstableApi public final Bundle extras;
/**
* Creates an instance.
*
* @param errorCode A number which identifies the cause of the error. May be one of the {@link
* ErrorCode ErrorCodes}.
* @param cause See {@link #getCause()}.
* @param message See {@link #getMessage()}.
*/
@UnstableApi
public PlaybackException(
@Nullable String message, @Nullable Throwable cause, @ErrorCode int errorCode) {
this(message, cause, errorCode, Bundle.EMPTY, Clock.DEFAULT.elapsedRealtime());
}
/**
* Creates an instance.
*
* @param errorCode A number which identifies the cause of the error. May be one of the {@link
* ErrorCode ErrorCodes}.
* @param cause See {@link #getCause()}.
* @param message See {@link #getMessage()}.
* @param extras An optional {@link Bundle}.
*/
@UnstableApi
public PlaybackException(
@Nullable String message,
@Nullable Throwable cause,
@ErrorCode int errorCode,
Bundle extras) {
this(message, cause, errorCode, extras, Clock.DEFAULT.elapsedRealtime());
}
/** Creates a new instance using the fields obtained from the given {@link Bundle}. */
@UnstableApi
protected PlaybackException(Bundle bundle) {
this(
/* message= */ bundle.getString(FIELD_STRING_MESSAGE),
/* cause= */ getCauseFromBundle(bundle),
/* errorCode= */ bundle.getInt(
FIELD_INT_ERROR_CODE, /* defaultValue= */ ERROR_CODE_UNSPECIFIED),
/* extras= */ getExtrasFromBundle(bundle),
/* timestampMs= */ bundle.getLong(
FIELD_LONG_TIMESTAMP_MS, /* defaultValue= */ SystemClock.elapsedRealtime()));
}
/** Creates a new instance using the given values. */
@UnstableApi
protected PlaybackException(
@Nullable String message,
@Nullable Throwable cause,
@ErrorCode int errorCode,
Bundle extras,
long timestampMs) {
super(message, cause);
this.errorCode = errorCode;
this.extras = extras;
this.timestampMs = timestampMs;
}
/**
* Returns whether the error data associated to this exception equals the error data associated to
* {@code other}.
*
* <p>Note that this method does not compare the exceptions' stacktraces.
*/
@CallSuper
public boolean errorInfoEquals(@Nullable PlaybackException other) {
if (this == other) {
return true;
}
if (other == null || getClass() != other.getClass()) {
return false;
}
@Nullable Throwable thisCause = getCause();
@Nullable Throwable thatCause = other.getCause();
if (thisCause != null && thatCause != null) {
if (!Util.areEqual(thisCause.getMessage(), thatCause.getMessage())) {
return false;
}
if (!Util.areEqual(thisCause.getClass(), thatCause.getClass())) {
return false;
}
} else if (thisCause != null || thatCause != null) {
return false;
}
return errorCode == other.errorCode
&& Util.areEqual(getMessage(), other.getMessage())
&& timestampMs == other.timestampMs;
}
private static final String FIELD_INT_ERROR_CODE = Util.intToStringMaxRadix(0);
private static final String FIELD_LONG_TIMESTAMP_MS = Util.intToStringMaxRadix(1);
private static final String FIELD_STRING_MESSAGE = Util.intToStringMaxRadix(2);
private static final String FIELD_STRING_CAUSE_CLASS_NAME = Util.intToStringMaxRadix(3);
private static final String FIELD_STRING_CAUSE_MESSAGE = Util.intToStringMaxRadix(4);
private static final String FIELD_BUNDLE_EXTRAS = Util.intToStringMaxRadix(5);
/**
* Defines a minimum field ID value for subclasses to use when implementing {@link #toBundle()}
* and delegating to {@link #PlaybackException(Bundle)}.
*
* <p>Subclasses should obtain their {@link Bundle Bundle's} field keys by applying a non-negative
* offset on this constant and passing the result to {@link Util#intToStringMaxRadix(int)}.
*/
@UnstableApi protected static final int FIELD_CUSTOM_ID_BASE = 1000;
/** Restores a {@code PlaybackException} from a {@link Bundle}. */
@UnstableApi
public static PlaybackException fromBundle(Bundle bundle) {
return new PlaybackException(bundle);
}
/** Returns a {@link Bundle} representing the information stored in this exception. */
@UnstableApi
@CallSuper
public Bundle toBundle() {
Bundle bundle = new Bundle();
bundle.putInt(FIELD_INT_ERROR_CODE, errorCode);
bundle.putLong(FIELD_LONG_TIMESTAMP_MS, timestampMs);
bundle.putString(FIELD_STRING_MESSAGE, getMessage());
bundle.putBundle(FIELD_BUNDLE_EXTRAS, extras);
@Nullable Throwable cause = getCause();
if (cause != null) {
bundle.putString(FIELD_STRING_CAUSE_CLASS_NAME, cause.getClass().getName());
bundle.putString(FIELD_STRING_CAUSE_MESSAGE, cause.getMessage());
}
return bundle;
}
// Creates a new {@link Throwable} with possibly {@code null} message.
@SuppressWarnings("nullness:argument")
private static Throwable createThrowable(Class<?> clazz, @Nullable String message)
throws Exception {
return (Throwable) clazz.getConstructor(String.class).newInstance(message);
}
// Creates a new {@link RemoteException} with possibly {@code null} message.
@SuppressWarnings("nullness:argument")
private static RemoteException createRemoteException(@Nullable String message) {
return new RemoteException(message);
}
private static Bundle getExtrasFromBundle(Bundle bundle) {
Bundle extras = bundle.getBundle(FIELD_BUNDLE_EXTRAS);
return extras != null ? extras : Bundle.EMPTY;
}
@Nullable
private static Throwable getCauseFromBundle(Bundle bundle) {
@Nullable String causeClassName = bundle.getString(FIELD_STRING_CAUSE_CLASS_NAME);
@Nullable String causeMessage = bundle.getString(FIELD_STRING_CAUSE_MESSAGE);
@Nullable Throwable cause = null;
if (!TextUtils.isEmpty(causeClassName)) {
try {
Class<?> clazz =
Class.forName(
causeClassName, /* initialize= */ true, PlaybackException.class.getClassLoader());
if (Throwable.class.isAssignableFrom(clazz)) {
cause = createThrowable(clazz, causeMessage);
}
} catch (Throwable e) {
// There was an error while creating the cause using reflection, do nothing here and let the
// finally block handle the issue.
} finally {
if (cause == null) {
// The bundle has fields to represent the cause, but we were unable to re-create the
// exception using reflection. We instantiate a RemoteException to reflect this problem.
cause = createRemoteException(causeMessage);
}
}
}
return cause;
}
}