本文整理匯總了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;
}