2015-12-16 00:30:14 -05:00
|
|
|
export const ErrorTypes = {
|
|
|
|
// Identifier for a network error (loading error / timeout ...)
|
|
|
|
NETWORK_ERROR: 'hlsNetworkError',
|
|
|
|
// Identifier for a media Error (video/parsing/mediasource error)
|
|
|
|
MEDIA_ERROR: 'hlsMediaError',
|
|
|
|
// Identifier for all other errors
|
|
|
|
OTHER_ERROR: 'hlsOtherError'
|
|
|
|
};
|
|
|
|
|
|
|
|
export const ErrorDetails = {
|
|
|
|
// Identifier for a manifest load error - data: { url : faulty URL, response : XHR response}
|
|
|
|
MANIFEST_LOAD_ERROR: 'manifestLoadError',
|
|
|
|
// Identifier for a manifest load timeout - data: { url : faulty URL, response : XHR response}
|
|
|
|
MANIFEST_LOAD_TIMEOUT: 'manifestLoadTimeOut',
|
|
|
|
// Identifier for a manifest parsing error - data: { url : faulty URL, reason : error reason}
|
|
|
|
MANIFEST_PARSING_ERROR: 'manifestParsingError',
|
|
|
|
// Identifier for playlist load error - data: { url : faulty URL, response : XHR response}
|
|
|
|
LEVEL_LOAD_ERROR: 'levelLoadError',
|
|
|
|
// Identifier for playlist load timeout - data: { url : faulty URL, response : XHR response}
|
|
|
|
LEVEL_LOAD_TIMEOUT: 'levelLoadTimeOut',
|
|
|
|
// Identifier for a level switch error - data: { level : faulty level Id, event : error description}
|
|
|
|
LEVEL_SWITCH_ERROR: 'levelSwitchError',
|
|
|
|
// Identifier for fragment load error - data: { frag : fragment object, response : XHR response}
|
|
|
|
FRAG_LOAD_ERROR: 'fragLoadError',
|
|
|
|
// Identifier for fragment loop loading error - data: { frag : fragment object}
|
|
|
|
FRAG_LOOP_LOADING_ERROR: 'fragLoopLoadingError',
|
|
|
|
// Identifier for fragment load timeout error - data: { frag : fragment object}
|
|
|
|
FRAG_LOAD_TIMEOUT: 'fragLoadTimeOut',
|
|
|
|
// Identifier for a fragment decryption error event - data: parsing error description
|
|
|
|
FRAG_DECRYPT_ERROR: 'fragDecryptError',
|
|
|
|
// Identifier for a fragment parsing error event - data: parsing error description
|
|
|
|
FRAG_PARSING_ERROR: 'fragParsingError',
|
|
|
|
// Identifier for decrypt key load error - data: { frag : fragment object, response : XHR response}
|
|
|
|
KEY_LOAD_ERROR: 'keyLoadError',
|
|
|
|
// Identifier for decrypt key load timeout error - data: { frag : fragment object}
|
|
|
|
KEY_LOAD_TIMEOUT: 'keyLoadTimeOut',
|
|
|
|
// Identifier for a buffer append error - data: append error description
|
|
|
|
BUFFER_APPEND_ERROR: 'bufferAppendError',
|
|
|
|
// Identifier for a buffer appending error event - data: appending error description
|
2016-01-25 15:28:29 -05:00
|
|
|
BUFFER_APPENDING_ERROR: 'bufferAppendingError',
|
|
|
|
// Identifier for a buffer stalled error event
|
2016-02-24 22:15:07 -05:00
|
|
|
BUFFER_STALLED_ERROR: 'bufferStalledError',
|
|
|
|
// Identifier for a buffer full error event
|
|
|
|
BUFFER_FULL_ERROR: 'bufferFullError'
|
2015-12-16 00:30:14 -05:00
|
|
|
};
|