pull/586/head
FongMi 11 months ago
parent 7e569c6387
commit 4fdd653f71
  1. 23
      app/src/main/java/com/fongmi/android/tv/player/Players.java

@ -583,8 +583,25 @@ public class Players implements Player.Listener, ParseCallback {
public void onPlayerError(@NonNull PlaybackException error) {
Logger.t(TAG).e(error.errorCode + "," + url);
if (retried()) ErrorEvent.extract(error.getErrorCodeName());
else if (error.errorCode == PlaybackException.ERROR_CODE_BEHIND_LIVE_WINDOW) seekToDefaultPosition();
else if (error.errorCode >= PlaybackException.ERROR_CODE_DECODER_INIT_FAILED && error.errorCode <= PlaybackException.ERROR_CODE_DECODING_RESOURCES_RECLAIMED) toggleDecode();
else if (error.errorCode == PlaybackException.ERROR_CODE_IO_UNSPECIFIED || error.errorCode >= PlaybackException.ERROR_CODE_PARSING_CONTAINER_MALFORMED && error.errorCode <= PlaybackException.ERROR_CODE_PARSING_MANIFEST_UNSUPPORTED) setFormat(ExoUtil.getMimeType(error.errorCode));
else switch (error.errorCode) {
case PlaybackException.ERROR_CODE_BEHIND_LIVE_WINDOW:
seekToDefaultPosition();
break;
case PlaybackException.ERROR_CODE_DECODER_INIT_FAILED:
case PlaybackException.ERROR_CODE_DECODER_QUERY_FAILED:
case PlaybackException.ERROR_CODE_DECODING_FAILED:
toggleDecode();
break;
case PlaybackException.ERROR_CODE_IO_UNSPECIFIED:
case PlaybackException.ERROR_CODE_PARSING_CONTAINER_MALFORMED:
case PlaybackException.ERROR_CODE_PARSING_MANIFEST_MALFORMED:
case PlaybackException.ERROR_CODE_PARSING_CONTAINER_UNSUPPORTED:
case PlaybackException.ERROR_CODE_PARSING_MANIFEST_UNSUPPORTED:
setFormat(ExoUtil.getMimeType(error.errorCode));
break;
default:
ErrorEvent.extract(error.getErrorCodeName());
break;
}
}
}

Loading…
Cancel
Save