本文整理汇总了Java中com.google.android.exoplayer2.ExoPlaybackException.TYPE_SOURCE属性的典型用法代码示例。如果您正苦于以下问题:Java ExoPlaybackException.TYPE_SOURCE属性的具体用法?Java ExoPlaybackException.TYPE_SOURCE怎么用?Java ExoPlaybackException.TYPE_SOURCE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.google.android.exoplayer2.ExoPlaybackException
的用法示例。
在下文中一共展示了ExoPlaybackException.TYPE_SOURCE属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onPlayerError
@Override
public void onPlayerError(ExoPlaybackException error) {
int errorMessageResourceId = R.string.error_stream_unknown;
switch (error.type) {
case ExoPlaybackException.TYPE_SOURCE:
Timber.e(error,"exo player error TYPE_SOURCE");
errorMessageResourceId = R.string.error_stream_io;
break;
case ExoPlaybackException.TYPE_RENDERER:
Timber.e(error,"exo player error TYPE_RENDERER");
errorMessageResourceId = R.string.error_stream_unsupported;
break;
case ExoPlaybackException.TYPE_UNEXPECTED:
Timber.e(error,"exo player error TYPE_UNEXPECTED");
break;
}
listener.onVideoError(errorMessageResourceId);
}
示例2: onPlayerError
@Override
public void onPlayerError(ExoPlaybackException error)
{
final String what;
switch (error.type) {
case ExoPlaybackException.TYPE_SOURCE:
what = error.getSourceException().getMessage();
break;
case ExoPlaybackException.TYPE_RENDERER:
what = error.getRendererException().getMessage();
break;
case ExoPlaybackException.TYPE_UNEXPECTED:
what = error.getUnexpectedException().getMessage();
break;
default:
what = "Unknown: " + error;
}
LogHelper.e(TAG, "ExoPlayer error: what=" + what);
if (callback != null) {
callback.onError("ExoPlayer error " + what);
}
}
示例3: isBehindLiveWindow
/***
* 是否TYPE_SOURCE 异常
*
* @param e 异常
* @return boolean boolean
*/
public static boolean isBehindLiveWindow(@NonNull ExoPlaybackException e) {
if (e.type != ExoPlaybackException.TYPE_SOURCE) {
return false;
}
Throwable cause = e.getSourceException();
while (cause != null) {
if (cause instanceof BehindLiveWindowException) {
return true;
}
cause = cause.getCause();
}
return false;
}
示例4: isBehindLiveWindow
private static boolean isBehindLiveWindow(ExoPlaybackException e) {
if (e.type != ExoPlaybackException.TYPE_SOURCE) {
return false;
}
Throwable cause = e.getSourceException();
while (cause != null) {
if (cause instanceof BehindLiveWindowException) {
return true;
}
cause = cause.getCause();
}
return false;
}