Searched defs:seekTo (Results 1 - 25 of 35) sorted by path

12

/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 DVideoEditorAudioPlayer.cpp187 status_t VideoEditorAudioPlayer::seekTo(int64_t time_us) { function in class:android::VideoEditorAudioPlayer
188 ALOGV("seekTo: %lld", 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);
/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 DMidiFile.cpp248 status_t MidiFile::seekTo(int position) function in class:android::MidiFile
250 ALOGV("MidiFile::seekTo %d", position);
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 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 DHTTPLiveSource.cpp172 status_t NuPlayer::HTTPLiveSource::seekTo(int64_t seekTimeUs) { function in class:android::NuPlayer::HTTPLiveSource
179 mLiveSession->seekTo(seekTimeUs);
H A DNuPlayerDriver.cpp184 status_t NuPlayerDriver::seekTo(int msec) { function in class:android::NuPlayerDriver
H A DNuPlayerSource.h46 virtual status_t seekTo(int64_t seekTimeUs) { function in struct:android::NuPlayer::Source
H A DRTSPSource.cpp195 status_t NuPlayer::RTSPSource::seekTo(int64_t seekTimeUs) { function in class:android::NuPlayer::RTSPSource
/frameworks/av/media/libstagefright/
H A DAudioPlayer.cpp570 status_t AudioPlayer::seekTo(int64_t time_us) { function in class:android::AudioPlayer
H A DAwesomePlayer.cpp1297 status_t AwesomePlayer::seekTo(int64_t timeUs) { function in class:android::AwesomePlayer
1351 mAudioPlayer->seekTo(mSeekTimeUs);
1560 mAudioPlayer->seekTo(videoTimeUs < 0 ? mSeekTimeUs : videoTimeUs);
H A DNuMediaExtractor.cpp384 status_t NuMediaExtractor::seekTo( function in class:android::NuMediaExtractor
H A DSampleIterator.cpp54 status_t SampleIterator::seekTo(uint32_t sampleIndex) { function in class:android::SampleIterator
55 ALOGV("seekTo(%d)", sampleIndex);
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp98 void LiveSession::seekTo(int64_t timeUs) { function in class:android::LiveSession
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp287 status_t FragmentedMP4Parser::seekTo(bool wantAudio, int64_t timeUs) { function in class:android::FragmentedMP4Parser
338 ALOGV("seekTo out of range");
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2TSExtractor.cpp100 mExtractor->seekTo(seekTimeUs);
225 void MPEG2TSExtractor::seekTo(int64_t seekTimeUs) { function in class:android::MPEG2TSExtractor
232 mLiveSession->seekTo(seekTimeUs);
/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java267 public native long seekTo(long pos); method in class:ParcelFileDescriptor
/frameworks/base/core/java/android/webkit/
H A DHTML5VideoView.java38 // For handling the seekTo before prepared, we need to know whether or not
41 // When the video is not prepared, we will have to save the seekTo time,
126 public void seekTo(int pos) { method in class:HTML5VideoView
128 mPlayer.seekTo(pos);
305 seekTo(mSaveSeekTime);
/frameworks/base/core/java/android/widget/
H A DMediaController.java556 mPlayer.seekTo( (int) newposition);
614 mPlayer.seekTo(pos);
625 mPlayer.seekTo(pos);
666 void seekTo(int pos); method in interface:MediaController.MediaPlayerControl
H A DVideoView.java320 int seekToPosition = mSeekWhenPrepared; // mSeekWhenPrepared may be changed after seekTo() call
322 seekTo(seekToPosition);
483 seekTo(mSeekWhenPrepared);
631 public void seekTo(int msec) { method in class:VideoView
633 mMediaPlayer.seekTo(msec);

Completed in 219 milliseconds

12