Home
last modified time | relevance | path

Searched refs:time_us (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/
DMediaSource.cpp37 void MediaSource::ReadOptions::setSeekTo(int64_t time_us, SeekMode mode) { in setSeekTo() argument
39 mSeekTimeUs = time_us; in setSeekTo()
50 int64_t *time_us, SeekMode *mode) const { in getSeekTo() argument
51 *time_us = mSeekTimeUs; in getSeekTo()
DAudioPlayer.cpp570 status_t AudioPlayer::seekTo(int64_t time_us) { in seekTo() argument
576 mSeekTimeUs = time_us; in seekTo()
/frameworks/av/include/media/stagefright/
DMediaSource.h78 void setSeekTo(int64_t time_us, SeekMode mode = SEEK_CLOSEST_SYNC);
80 bool getSeekTo(int64_t *time_us, SeekMode *mode) const;
DAudioPlayer.h63 status_t seekTo(int64_t time_us);
/frameworks/av/libvideoeditor/lvpp/
DVideoEditorAudioPlayer.h62 status_t seekTo(int64_t time_us);
DVideoEditorAudioPlayer.cpp187 status_t VideoEditorAudioPlayer::seekTo(int64_t time_us) { in seekTo() argument
188 ALOGV("seekTo: %lld", time_us); in seekTo()
194 mSeekTimeUs = time_us; in seekTo()
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
DVideoEditorVideoDecoder.cpp152 int64_t time_us; in read() local
154 options->getSeekTo(&time_us, &mode); in read()
161 M4OSA_Int32 rapTime = time_us / 1000; in read()
1374 int64_t time_us = *pTime * 1000; in VideoEditorVideoDecoder_decode() local
1375 options.setSeekTo(time_us, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC); in VideoEditorVideoDecoder_decode()