BPStatusCode
enum : int {
/**
* Session ends normally status code
*/
BPSessionEndsNormally = 200,
/**
* Format not supported status code
*
* An error has occurred because the format is not supported by the player (i.e. HLS not supported)
*/
BPFormatNotSupportedError = 3001,
/**
* Decoding error status code
*
* An error has occurred during the decoding of the video content. This error can be triggered during video playback.
*/
BPDecodingError = 3002,
/**
* Networking error status code
*
* An error has occurred during the transmission/reception of data over the network.
*/
BPNetworkingError = 3003,
/**
* Access right error status code
*
* An error has occurred because user does not have sufficient rights to display the video. This error is triggered when there is a problem to connect to the DRM server.
*/
BPAccessRightError = 3004,
/**
* Unspecified error status code
*
* An unspecified error has occurred.
*/
BPUnspecifiedError = 3005
}
Undocumented
-
Session ends normally status code
Declaration
Objective-C
BPSessionEndsNormally = 200 -
Format not supported status code
An error has occurred because the format is not supported by the player (i.e. HLS not supported)
Declaration
Objective-C
BPFormatNotSupportedError = 3001 -
Decoding error status code
An error has occurred during the decoding of the video content. This error can be triggered during video playback.
Declaration
Objective-C
BPDecodingError = 3002 -
Networking error status code
An error has occurred during the transmission/reception of data over the network.
Declaration
Objective-C
BPNetworkingError = 3003 -
Access right error status code
An error has occurred because user does not have sufficient rights to display the video. This error is triggered when there is a problem to connect to the DRM server.
Declaration
Objective-C
BPAccessRightError = 3004 -
Unspecified error status code
An unspecified error has occurred.
Declaration
Objective-C
BPUnspecifiedError = 3005
Install in Dash
BPStatusCode Enumeration Reference