Java Code Examples for org.chromium.chrome.browser.media.remote.RemoteVideoInfo.PlayerState#LOADING

The following examples show how to use org.chromium.chrome.browser.media.remote.RemoteVideoInfo.PlayerState#LOADING . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CastNotificationControl.java    From delion with Apache License 2.0 6 votes vote down vote up
private void updateNotification() {
    // Nothing shown yet, nothing to update.
    if (mNotificationBuilder == null) return;

    mNotificationBuilder.setMetadata(new MediaMetadata(mTitle, "", ""));
    if (mState == PlayerState.PAUSED || mState == PlayerState.PLAYING) {
        mNotificationBuilder.setPaused(mState != PlayerState.PLAYING);
        mNotificationBuilder.setActions(MediaNotificationInfo.ACTION_STOP
                | MediaNotificationInfo.ACTION_PLAY_PAUSE);
        MediaNotificationManager.show(mContext, mNotificationBuilder.build());
    } else if (mState == PlayerState.LOADING) {
        mNotificationBuilder.setActions(MediaNotificationInfo.ACTION_STOP);
        MediaNotificationManager.show(mContext, mNotificationBuilder.build());
    } else {
        hide();
    }
}
 
Example 2
Source File: CastNotificationControl.java    From delion with Apache License 2.0 6 votes vote down vote up
@Override
public void onPlaybackStateChanged(PlayerState newState) {
    if (!mIsShowing
            && (newState == PlayerState.PLAYING || newState == PlayerState.LOADING
                    || newState == PlayerState.PAUSED)) {
        show(newState);
        return;
    }

    if (mState == newState
            || mState == PlayerState.PAUSED && newState == PlayerState.LOADING && mIsShowing) {
        return;
    }

    mState = newState;
    updateNotification();
}
 
Example 3
Source File: CastNotificationControl.java    From AndroidChromium with Apache License 2.0 6 votes vote down vote up
private void updateNotification() {
    // Nothing shown yet, nothing to update.
    if (mNotificationBuilder == null) return;

    mNotificationBuilder.setMetadata(new MediaMetadata(mTitle, "", ""));
    if (mState == PlayerState.PAUSED || mState == PlayerState.PLAYING) {
        mNotificationBuilder.setPaused(mState != PlayerState.PLAYING);
        mNotificationBuilder.setActions(MediaNotificationInfo.ACTION_STOP
                | MediaNotificationInfo.ACTION_PLAY_PAUSE);
        MediaNotificationManager.show(mContext, mNotificationBuilder.build());
    } else if (mState == PlayerState.LOADING) {
        mNotificationBuilder.setActions(MediaNotificationInfo.ACTION_STOP);
        MediaNotificationManager.show(mContext, mNotificationBuilder.build());
    } else {
        hide();
    }
}
 
Example 4
Source File: CastNotificationControl.java    From AndroidChromium with Apache License 2.0 6 votes vote down vote up
@Override
public void onPlaybackStateChanged(PlayerState newState) {
    if (!mIsShowing
            && (newState == PlayerState.PLAYING || newState == PlayerState.LOADING
                    || newState == PlayerState.PAUSED)) {
        show(newState);
        return;
    }

    if (mState == newState
            || mState == PlayerState.PAUSED && newState == PlayerState.LOADING && mIsShowing) {
        return;
    }

    mState = newState;
    updateNotification();
}
 
Example 5
Source File: CastNotificationControl.java    From 365browser with Apache License 2.0 6 votes vote down vote up
private void updateNotification() {
    // Nothing shown yet, nothing to update.
    if (mNotificationBuilder == null) return;

    mNotificationBuilder.setMetadata(new MediaMetadata(mTitle, "", ""));
    if (mTabOrigin != null) mNotificationBuilder.setOrigin(mTabOrigin);

    if (mState == PlayerState.PAUSED || mState == PlayerState.PLAYING) {
        mNotificationBuilder.setPaused(mState != PlayerState.PLAYING);
        mNotificationBuilder.setActions(MediaNotificationInfo.ACTION_STOP
                | MediaNotificationInfo.ACTION_PLAY_PAUSE);
        MediaNotificationManager.show(mNotificationBuilder.build());
    } else if (mState == PlayerState.LOADING) {
        mNotificationBuilder.setActions(MediaNotificationInfo.ACTION_STOP);
        MediaNotificationManager.show(mNotificationBuilder.build());
    } else {
        hide();
    }
}
 
Example 6
Source File: CastNotificationControl.java    From 365browser with Apache License 2.0 6 votes vote down vote up
@Override
public void onPlaybackStateChanged(PlayerState newState) {
    if (!mIsShowing
            && (newState == PlayerState.PLAYING || newState == PlayerState.LOADING
                    || newState == PlayerState.PAUSED)) {
        show(newState);
        return;
    }

    if (mState == newState
            || mState == PlayerState.PAUSED && newState == PlayerState.LOADING && mIsShowing) {
        return;
    }

    mState = newState;
    updateNotification();
}
 
Example 7
Source File: AbstractMediaRouteController.java    From delion with Apache License 2.0 5 votes vote down vote up
@VisibleForTesting
void setPlayerStateForMediaItemState(int state) {
    PlayerState playerState = PlayerState.STOPPED;
    switch (state) {
        case MediaItemStatus.PLAYBACK_STATE_BUFFERING:
            playerState = PlayerState.LOADING;
            break;
        case MediaItemStatus.PLAYBACK_STATE_CANCELED:
            playerState = PlayerState.FINISHED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_ERROR:
            playerState = PlayerState.ERROR;
            break;
        case MediaItemStatus.PLAYBACK_STATE_FINISHED:
            playerState = PlayerState.FINISHED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_INVALIDATED:
            playerState = PlayerState.INVALIDATED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_PAUSED:
            if (isAtEndOfVideo(getPosition(), getDuration())) {
                playerState = PlayerState.FINISHED;
            } else {
                playerState = PlayerState.PAUSED;
            }
            break;
        case MediaItemStatus.PLAYBACK_STATE_PENDING:
            playerState = PlayerState.PAUSED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_PLAYING:
            playerState = PlayerState.PLAYING;
            break;
        default:
            break;
    }

    mRemotePlayerState = playerState;
}
 
Example 8
Source File: AbstractMediaRouteController.java    From AndroidChromium with Apache License 2.0 5 votes vote down vote up
@VisibleForTesting
void setPlayerStateForMediaItemState(int state) {
    PlayerState playerState = PlayerState.STOPPED;
    switch (state) {
        case MediaItemStatus.PLAYBACK_STATE_BUFFERING:
            playerState = PlayerState.LOADING;
            break;
        case MediaItemStatus.PLAYBACK_STATE_CANCELED:
            playerState = PlayerState.FINISHED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_ERROR:
            playerState = PlayerState.ERROR;
            break;
        case MediaItemStatus.PLAYBACK_STATE_FINISHED:
            playerState = PlayerState.FINISHED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_INVALIDATED:
            playerState = PlayerState.INVALIDATED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_PAUSED:
            if (isAtEndOfVideo(getPosition(), getDuration())) {
                playerState = PlayerState.FINISHED;
            } else {
                playerState = PlayerState.PAUSED;
            }
            break;
        case MediaItemStatus.PLAYBACK_STATE_PENDING:
            playerState = PlayerState.PAUSED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_PLAYING:
            playerState = PlayerState.PLAYING;
            break;
        default:
            break;
    }

    mRemotePlayerState = playerState;
}
 
Example 9
Source File: AbstractMediaRouteController.java    From 365browser with Apache License 2.0 5 votes vote down vote up
@VisibleForTesting
void setPlayerStateForMediaItemState(int state) {
    PlayerState playerState = PlayerState.STOPPED;
    switch (state) {
        case MediaItemStatus.PLAYBACK_STATE_BUFFERING:
            playerState = PlayerState.LOADING;
            break;
        case MediaItemStatus.PLAYBACK_STATE_CANCELED:
            playerState = PlayerState.FINISHED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_ERROR:
            playerState = PlayerState.ERROR;
            break;
        case MediaItemStatus.PLAYBACK_STATE_FINISHED:
            playerState = PlayerState.FINISHED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_INVALIDATED:
            playerState = PlayerState.INVALIDATED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_PAUSED:
            if (isAtEndOfVideo(getPosition(), getDuration())) {
                playerState = PlayerState.FINISHED;
            } else {
                playerState = PlayerState.PAUSED;
            }
            break;
        case MediaItemStatus.PLAYBACK_STATE_PENDING:
            playerState = PlayerState.PAUSED;
            break;
        case MediaItemStatus.PLAYBACK_STATE_PLAYING:
            playerState = PlayerState.PLAYING;
            break;
        default:
            break;
    }

    mRemotePlayerState = playerState;
}
 
Example 10
Source File: DefaultMediaRouteController.java    From delion with Apache License 2.0 4 votes vote down vote up
private void processMediaStatusBundle(Bundle statusBundle) {
    if (statusBundle == null) return;
    logBundle("processMediaStatusBundle: ", statusBundle);

    String itemId = statusBundle.getString(MediaControlIntent.EXTRA_ITEM_ID);
    if (itemId == null || !itemId.equals(mCurrentItemId)) return;

    // Extract item metadata, if available.
    if (statusBundle.containsKey(MediaControlIntent.EXTRA_ITEM_METADATA)) {
        Bundle metadataBundle =
                (Bundle) statusBundle.getParcelable(MediaControlIntent.EXTRA_ITEM_METADATA);
        updateTitle(metadataBundle.getString(MediaItemMetadata.KEY_TITLE, mPreferredTitle));
    }

    // Extract the item status, if available.
    if (statusBundle.containsKey(MediaControlIntent.EXTRA_ITEM_STATUS)) {
        Bundle itemStatusBundle =
                (Bundle) statusBundle.getParcelable(MediaControlIntent.EXTRA_ITEM_STATUS);
        MediaItemStatus itemStatus = MediaItemStatus.fromBundle(itemStatusBundle);

        logBundle("Received item status: ", itemStatusBundle);

        updateState(itemStatus.getPlaybackState());

        // Update the PositionExtrapolator that the playback state has changed.
        if (itemStatus.getPlaybackState() == MediaItemStatus.PLAYBACK_STATE_PLAYING) {
            mPositionExtrapolator.onResumed();
        } else if (itemStatus.getPlaybackState() == MediaItemStatus.PLAYBACK_STATE_FINISHED) {
            mPositionExtrapolator.onFinished();
        } else {
            mPositionExtrapolator.onPaused();
        }

        if ((getRemotePlayerState() == PlayerState.PAUSED)
                || (getRemotePlayerState() == PlayerState.PLAYING)
                || (getRemotePlayerState() == PlayerState.LOADING)) {
            this.mCurrentItemId = itemId;

            // duration can possibly be -1 if it's unknown, so cap to 0
            long duration = Math.max(itemStatus.getContentDuration(), 0);
            // update the position using the remote player's position
            // duration can possibly be -1 if it's unknown, so cap to 0
            long position = Math.min(Math.max(itemStatus.getContentPosition(), 0), duration);
            // TODO(zqzhang): The GMS core currently uses SystemClock.uptimeMillis() as
            // timestamp, which does not conform to the MediaRouter support library docs. See
            // b/28378525 and
            // http://developer.android.com/reference/android/support/v7/media/MediaItemStatus.html#getTimestamp().
            // Override the timestamp with elapsedRealtime() by assuming the delay between the
            // GMS core produces the MediaItemStatus and the code reaches here is short enough.
            // long timestamp = itemStatus.getTimestamp();
            long timestamp = SystemClock.elapsedRealtime();
            notifyDurationUpdated(duration);
            notifyPositionUpdated(position);
            mPositionExtrapolator.onPositionInfoUpdated(duration, position, timestamp);

            if (mSeeking) {
                mSeeking = false;
                if (getMediaStateListener() != null) getMediaStateListener().onSeekCompleted();
            }
        }
        logExtraHttpInfo(itemStatus.getExtras());
    }
}
 
Example 11
Source File: AbstractMediaRouteController.java    From delion with Apache License 2.0 4 votes vote down vote up
@Override
public final boolean isPlaying() {
    return mRemotePlayerState == PlayerState.PLAYING
            || mRemotePlayerState == PlayerState.LOADING;
}
 
Example 12
Source File: DefaultMediaRouteController.java    From AndroidChromium with Apache License 2.0 4 votes vote down vote up
private void processMediaStatusBundle(Bundle statusBundle) {
    if (statusBundle == null) return;
    logBundle("processMediaStatusBundle: ", statusBundle);

    String itemId = statusBundle.getString(MediaControlIntent.EXTRA_ITEM_ID);
    if (itemId == null || !itemId.equals(mCurrentItemId)) return;

    // Extract item metadata, if available.
    if (statusBundle.containsKey(MediaControlIntent.EXTRA_ITEM_METADATA)) {
        Bundle metadataBundle =
                (Bundle) statusBundle.getParcelable(MediaControlIntent.EXTRA_ITEM_METADATA);
        updateTitle(metadataBundle.getString(MediaItemMetadata.KEY_TITLE, mPreferredTitle));
    }

    // Extract the item status, if available.
    if (statusBundle.containsKey(MediaControlIntent.EXTRA_ITEM_STATUS)) {
        Bundle itemStatusBundle =
                (Bundle) statusBundle.getParcelable(MediaControlIntent.EXTRA_ITEM_STATUS);
        MediaItemStatus itemStatus = MediaItemStatus.fromBundle(itemStatusBundle);

        logBundle("Received item status: ", itemStatusBundle);

        updateState(itemStatus.getPlaybackState());

        // Update the PositionExtrapolator that the playback state has changed.
        if (itemStatus.getPlaybackState() == MediaItemStatus.PLAYBACK_STATE_PLAYING) {
            mPositionExtrapolator.onResumed();
        } else if (itemStatus.getPlaybackState() == MediaItemStatus.PLAYBACK_STATE_FINISHED) {
            mPositionExtrapolator.onFinished();
        } else {
            mPositionExtrapolator.onPaused();
        }

        if ((getRemotePlayerState() == PlayerState.PAUSED)
                || (getRemotePlayerState() == PlayerState.PLAYING)
                || (getRemotePlayerState() == PlayerState.LOADING)) {
            this.mCurrentItemId = itemId;

            // duration can possibly be -1 if it's unknown, so cap to 0
            long duration = Math.max(itemStatus.getContentDuration(), 0);
            // update the position using the remote player's position
            // duration can possibly be -1 if it's unknown, so cap to 0
            long position = Math.min(Math.max(itemStatus.getContentPosition(), 0), duration);
            // TODO(zqzhang): The GMS core currently uses SystemClock.uptimeMillis() as
            // timestamp, which does not conform to the MediaRouter support library docs. See
            // b/28378525 and
            // http://developer.android.com/reference/android/support/v7/media/MediaItemStatus.html#getTimestamp().
            // Override the timestamp with elapsedRealtime() by assuming the delay between the
            // GMS core produces the MediaItemStatus and the code reaches here is short enough.
            // long timestamp = itemStatus.getTimestamp();
            long timestamp = SystemClock.elapsedRealtime();
            notifyDurationUpdated(duration);
            notifyPositionUpdated(position);
            mPositionExtrapolator.onPositionInfoUpdated(duration, position, timestamp);

            if (mSeeking) {
                mSeeking = false;
                if (getMediaStateListener() != null) getMediaStateListener().onSeekCompleted();
            }
        }
        logExtraHttpInfo(itemStatus.getExtras());
    }
}
 
Example 13
Source File: AbstractMediaRouteController.java    From AndroidChromium with Apache License 2.0 4 votes vote down vote up
@Override
public final boolean isPlaying() {
    return mRemotePlayerState == PlayerState.PLAYING
            || mRemotePlayerState == PlayerState.LOADING;
}
 
Example 14
Source File: DefaultMediaRouteController.java    From 365browser with Apache License 2.0 4 votes vote down vote up
private void processMediaStatusBundle(Bundle statusBundle) {
    if (statusBundle == null) return;
    logBundle("processMediaStatusBundle: ", statusBundle);

    String itemId = statusBundle.getString(MediaControlIntent.EXTRA_ITEM_ID);
    if (itemId == null || !itemId.equals(mCurrentItemId)) return;

    // Extract item metadata, if available.
    if (statusBundle.containsKey(MediaControlIntent.EXTRA_ITEM_METADATA)) {
        Bundle metadataBundle =
                (Bundle) statusBundle.getParcelable(MediaControlIntent.EXTRA_ITEM_METADATA);
        updateTitle(metadataBundle.getString(MediaItemMetadata.KEY_TITLE, mPreferredTitle));
    }

    // Extract the item status, if available.
    if (statusBundle.containsKey(MediaControlIntent.EXTRA_ITEM_STATUS)) {
        Bundle itemStatusBundle =
                (Bundle) statusBundle.getParcelable(MediaControlIntent.EXTRA_ITEM_STATUS);
        MediaItemStatus itemStatus = MediaItemStatus.fromBundle(itemStatusBundle);

        logBundle("Received item status: ", itemStatusBundle);

        updateState(itemStatus.getPlaybackState());

        // Update the PositionExtrapolator that the playback state has changed.
        if (itemStatus.getPlaybackState() == MediaItemStatus.PLAYBACK_STATE_PLAYING) {
            mPositionExtrapolator.onResumed();
        } else if (itemStatus.getPlaybackState() == MediaItemStatus.PLAYBACK_STATE_FINISHED) {
            mPositionExtrapolator.onFinished();
        } else {
            mPositionExtrapolator.onPaused();
        }

        if ((getRemotePlayerState() == PlayerState.PAUSED)
                || (getRemotePlayerState() == PlayerState.PLAYING)
                || (getRemotePlayerState() == PlayerState.LOADING)) {
            this.mCurrentItemId = itemId;

            // duration can possibly be -1 if it's unknown, so cap to 0
            long duration = Math.max(itemStatus.getContentDuration(), 0);
            // update the position using the remote player's position
            // duration can possibly be -1 if it's unknown, so cap to 0
            long position = Math.min(Math.max(itemStatus.getContentPosition(), 0), duration);
            // TODO(zqzhang): The GMS core currently uses SystemClock.uptimeMillis() as
            // timestamp, which does not conform to the MediaRouter support library docs. See
            // b/28378525 and
            // http://developer.android.com/reference/android/support/v7/media/MediaItemStatus.html#getTimestamp().
            // Override the timestamp with elapsedRealtime() by assuming the delay between the
            // GMS core produces the MediaItemStatus and the code reaches here is short enough.
            // long timestamp = itemStatus.getTimestamp();
            long timestamp = SystemClock.elapsedRealtime();
            notifyDurationUpdated(duration);
            notifyPositionUpdated(position);
            mPositionExtrapolator.onPositionInfoUpdated(duration, position, timestamp);

            if (mSeeking) {
                mSeeking = false;
                if (getMediaStateListener() != null) getMediaStateListener().onSeekCompleted();
            }
        }
        logExtraHttpInfo(itemStatus.getExtras());
    }
}
 
Example 15
Source File: AbstractMediaRouteController.java    From 365browser with Apache License 2.0 4 votes vote down vote up
@Override
public final boolean isPlaying() {
    return mRemotePlayerState == PlayerState.PLAYING
            || mRemotePlayerState == PlayerState.LOADING;
}