Searched refs:seekTo (Results 1 - 25 of 71) sorted by path

123

/frameworks/av/include/media/
H A DIMediaPlayer.h55 virtual status_t seekTo(int msec) = 0;
H A DMediaPlayerInterface.h144 virtual status_t seekTo(int msec) = 0;
H A Dmediaplayer.h212 status_t seekTo(int msec);
/frameworks/av/include/media/stagefright/
H A DAudioPlayer.h63 status_t seekTo(int64_t time_us);
H A DNuMediaExtractor.h61 status_t seekTo(
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.cpp676 status_t PreviewPlayer::seekTo(int64_t timeUs) { function in class:android::PreviewPlayer
1931 mAudioPlayer->seekTo(mSeekTimeUs);
1964 mAudioPlayer->seekTo(videoTimeUs < 0 ? mSeekTimeUs : videoTimeUs);
H A DPreviewPlayer.h48 status_t seekTo(int64_t timeUs);
H A DVideoEditorAudioPlayer.cpp187 status_t VideoEditorAudioPlayer::seekTo(int64_t time_us) { function in class:android::VideoEditorAudioPlayer
188 ALOGV("seekTo: %lld", time_us);
H A DVideoEditorAudioPlayer.h62 status_t seekTo(int64_t time_us);
H A DVideoEditorPlayer.cpp120 status_t VideoEditorPlayer::seekTo(int msec) { function in class:android::VideoEditorPlayer
121 ALOGV("seekTo");
122 status_t err = mPlayer->seekTo((int64_t)msec * 1000);
H A DVideoEditorPlayer.h109 virtual status_t seekTo(int msec);
H A DVideoEditorPreviewController.cpp1011 pController->mVePlayer[playerInstance]->seekTo(
1014 ALOGV("preparePlayer: seekTo(%d)",
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp168 status_t seekTo(int msec) function in class:android::BpMediaPlayer
421 reply->writeInt32(seekTo(data.readInt32()));
H A Dmediaplayer.cpp420 ALOGV("seekTo %d", msec);
434 return mPlayer->seekTo(msec);
437 ALOGV("Seek in progress - queue up seekTo[%d]", msec);
441 ALOGE("Attempt to perform seekTo in wrong state: mPlayer=%p, mCurrentState=%u", mPlayer.get(), mCurrentState);
445 status_t MediaPlayer::seekTo(int msec) function in class:android::MediaPlayer
658 // and seekTo within the same process.
720 ALOGV("Executing queued seekTo(%d)", mSeekPosition);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp930 status_t MediaPlayerService::Client::seekTo(int msec) function in class:android::MediaPlayerService::Client
932 ALOGV("[%d] seekTo(%d)", mConnId, msec);
935 return p->seekTo(msec);
H A DMediaPlayerService.h316 virtual status_t seekTo(int msec);
H A DMidiFile.cpp248 status_t MidiFile::seekTo(int position) function in class:android::MidiFile
250 ALOGV("MidiFile::seekTo %d", position);
H A DMidiFile.h45 virtual status_t seekTo(int msec);
H A DStagefrightPlayer.cpp110 status_t StagefrightPlayer::seekTo(int msec) { function in class:android::StagefrightPlayer
111 ALOGV("seekTo %.2f secs", msec / 1E3);
113 status_t err = mPlayer->seekTo((int64_t)msec * 1000);
H A DStagefrightPlayer.h51 virtual status_t seekTo(int msec);
H A DTestPlayerStub.h88 virtual status_t seekTo(int msec) {return mPlayer->seekTo(msec);} function in class:android::TestPlayerStub
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp166 status_t NuPlayer::GenericSource::seekTo(int64_t seekTimeUs) { function in class:android::NuPlayer::GenericSource
H A DGenericSource.h49 virtual status_t seekTo(int64_t seekTimeUs);
H A DHTTPLiveSource.cpp172 status_t NuPlayer::HTTPLiveSource::seekTo(int64_t seekTimeUs) { function in class:android::NuPlayer::HTTPLiveSource
179 mLiveSession->seekTo(seekTimeUs);
H A DHTTPLiveSource.h43 virtual status_t seekTo(int64_t seekTimeUs);

Completed in 138 milliseconds

123