當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。