HomeSort by relevance Sort by last modified time
    Searched refs:PLAYING (Results 1 - 21 of 21) sorted by null

  /frameworks/av/media/libstagefright/timedtext/
TimedTextDriver.cpp 79 case PLAYING:
83 mState = PLAYING;
87 mState = PLAYING;
101 case PLAYING:
125 case PLAYING:
149 case PLAYING:
178 case PLAYING:
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TrimControllerOverlay.java 43 if (mState == State.PLAYING) {
55 // Add animation to hide the play button while playing.
98 if (mState == State.PLAYING || mState == State.PAUSED) {
MovieControllerOverlay.java 87 if (mState == State.PLAYING) {
147 if (mState == State.PLAYING || mState == State.PAUSED) {
CommonControllerOverlay.java 46 PLAYING,
152 mState = State.PLAYING;
224 } else if (mState == State.PAUSED || mState == State.PLAYING) {
316 } else if (mState == State.PLAYING) {
  /external/chromium_org/content/renderer/media/
webrtc_audio_renderer.cc 91 // WebRtcAudioRenderer instance. This class maintains the per-user 'playing'
363 DCHECK(play_ref_count_ == 0 || state_ == PLAYING);
366 if (state_ != PLAYING) {
367 state_ = PLAYING;
384 DCHECK_EQ(state_, PLAYING);
447 return (state_ == PLAYING) ? audio_bus->frames() : 0;
472 // Avoid filling up the audio bus if we are not playing; instead
474 if (state_ != PLAYING) {
webrtc_audio_renderer.h 45 // is "playing", Pause() won't be called when the state already is "paused"
73 PLAYING,
110 // Ref count for the MediaPlayers which are playing audio.
  /external/chromium_org/media/audio/
audio_output_device.h 126 PLAYING, // Playing back. Can Pause()/Stop().
audio_output_device.cc 58 COMPILE_ASSERT(PAUSED < PLAYING, invalid_enum_value_assignment_3);
134 state_ = PLAYING;
143 if (state_ == PLAYING) {
  /frameworks/av/include/media/stagefright/timedtext/
TimedTextDriver.h 68 PLAYING,
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.h 85 enum PlaybackState { WAITING, PLAYING, ENDED };
MediaController.cpp 189 // the user agent must change the MediaController into a playing media controller,
210 // When the pause() method is invoked, if the MediaController is a playing media controller,
303 DEFINE_STATIC_LOCAL(AtomicString, playing, ("playing", AtomicString::ConstructFromLiteral));
304 return playing;
318 case PLAYING:
419 // Let new playback state be playing.
420 newPlaybackState = PLAYING;
429 // then queue a task that, if the MediaController object is a playing media controller, and
442 // then queue a task to fire a simple event at the MediaController object, whose name is playing
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
PreviewPlayer.cpp 287 // If we did this later, audio would continue playing while we
390 CHECK(!(mFlags & PLAYING));
450 // Posted whenever any stream finishes playing.
498 * If the audio source of current playing clip and next clip are dummy
503 * But the audio(dummy audio source) is still playing(for next clip),
522 if (mFlags & PLAYING) {
535 mFlags |= PLAYING;
567 mFlags &= ~(PLAYING | FIRST_FRAME);
606 mFlags &= ~(PLAYING | FIRST_FRAME);
654 // Legacy behaviour, if a stream finishes playing and the
    [all...]
PreviewPlayer.h 95 PLAYING = 1,
  /frameworks/av/media/libstagefright/
AwesomePlayer.cpp 506 if (mFlags & PLAYING) {
545 // If we did this later, audio would continue playing while we
726 if ((mFlags & PLAYING) && !eos
781 if ((mFlags & PLAYING) && !eos
804 if (mFlags & (PLAYING | PREPARING | CACHE_UNDERRUN)) {
827 // Posted whenever any stream finishes playing.
897 if (mFlags & PLAYING) {
911 modifyFlags(PLAYING, SET);
970 modifyFlags((PLAYING | FIRST_FRAME), CLEAR);
996 // Legacy behaviour, if a stream finishes playing and the
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 38 * The SmilPlayer is responsible for playing, stopping, pausing and resuming a SMIL tree.
39 * <li>It creates a whole timeline before playing.</li>
50 PLAYING,
259 return mState == SmilPlayerState.PLAYING;
312 mState = SmilPlayerState.PLAYING;
315 Log.w(TAG, "Error State: Playback is playing!");
324 Log.w(TAG, "Error State: Playback is not playing!");
508 mState = SmilPlayerState.PLAYING;
  /frameworks/av/media/libmedia/
SoundPool.cpp 638 mState = PLAYING;
802 if (mState == PLAYING) {
812 if (mState == PLAYING) {
825 mState = PLAYING;
836 mState = PLAYING;
  /frameworks/av/include/media/
SoundPool.h 123 enum state { IDLE, RESUMING, STOPPING, PAUSED, PLAYING };
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.h 64 PLAYING,
WifiDisplaySource.cpp 270 if (!strcasecmp(val, "pause") && mState == PLAYING) {
329 if (mState != PLAYING) {
438 mState = PLAYING;
    [all...]
  /frameworks/av/media/libstagefright/include/
AwesomePlayer.h 112 PLAYING = 0x01,
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
media_controls.js 35 PLAYING: 'playing',
147 * @return {boolean} True if the media is currently playing.
386 * @param {boolean} playing True if playing.
389 MediaControls.prototype.onMediaPlay_ = function(playing) {
393 this.updatePlayButtonState_(playing);
465 * @param {boolean} playing If the video is playing.
468 MediaControls.prototype.updatePlayButtonState_ = function(playing) {
    [all...]

Completed in 311 milliseconds