当前位置: 首页>>代码示例>>Java>>正文


Java ExoPlaybackException.TYPE_SOURCE属性代码示例

本文整理汇总了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);
}
 
开发者ID:cemrich,项目名称:zapp,代码行数:20,代码来源:VideoErrorHandler.java

示例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);
    }
}
 
开发者ID:teocci,项目名称:YouTube-In-Background,代码行数:23,代码来源:LocalPlayback.java

示例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;
}
 
开发者ID:yangchaojiang,项目名称:yjPlay,代码行数:19,代码来源:VideoPlayUtils.java

示例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;
}
 
开发者ID:ashwanijanghu,项目名称:ExoPlayer-Offline,代码行数:13,代码来源:PlayerActivity.java


注:本文中的com.google.android.exoplayer2.ExoPlaybackException.TYPE_SOURCE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。