HomeSort by relevance Sort by last modified time
    Searched refs:seekTimeUs (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 72 msg->setInt64("seekTimeUs", timeUs);
108 int64_t seekTimeUs = positionMs * 1000ll;
112 doSeekAndRead(seekTimeUs);
122 int64_t seekTimeUs;
124 if (msg->findInt64("seekTimeUs", &seekTimeUs) &&
128 seekTimeUs,
137 int64_t seekTimeUs = kInvalidTimeUs;
140 msg->findInt64("seekTimeUs", &seekTimeUs);
    [all...]
TimedTextSRTSource.cpp 220 int64_t seekTimeUs;
222 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
225 if (seekTimeUs < 0) {
227 } else if (seekTimeUs >= lastEndTimeUs) {
237 int diff = compareExtendedRangeAndTime(mid, seekTimeUs);
TimedTextPlayer.h 72 void doSeekAndRead(int64_t seekTimeUs);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
RTSPSource.h 53 virtual status_t seekTo(int64_t seekTimeUs);
125 void performSeek(int64_t seekTimeUs);
GenericSource.h 71 virtual status_t seekTo(int64_t seekTimeUs);
179 status_t doSeek(int64_t seekTimeUs);
194 int64_t seekTimeUs,
201 int64_t seekTimeUs = -1ll, int64_t *actualTimeUs = NULL, bool formatChange = false);
HTTPLiveSource.h 47 virtual status_t seekTo(int64_t seekTimeUs);
GenericSource.cpp     [all...]
NuPlayer.h 63 void seekToAsync(int64_t seekTimeUs, bool needNotify = false);
232 void performSeek(int64_t seekTimeUs, bool needNotify);
RTSPSource.cpp 294 status_t NuPlayer::RTSPSource::seekTo(int64_t seekTimeUs) {
297 msg->setInt64("timeUs", seekTimeUs);
303 void NuPlayer::RTSPSource::performSeek(int64_t seekTimeUs) {
309 mHandler->seek(seekTimeUs);
329 int64_t seekTimeUs;
330 CHECK(msg->findInt64("timeUs", &seekTimeUs));
332 performSeek(seekTimeUs);
NuPlayerDriver.cpp 348 int64_t seekTimeUs = msec * 1000ll;
354 mStartupSeekTimeUs = seekTimeUs;
369 mPlayer->seekToAsync(seekTimeUs, true /* needNotify */);
377 mPositionUs = seekTimeUs;
HTTPLiveSource.cpp 168 status_t NuPlayer::HTTPLiveSource::seekTo(int64_t seekTimeUs) {
169 return mLiveSession->seekTo(seekTimeUs);
NuPlayer.cpp 67 SeekAction(int64_t seekTimeUs, bool needNotify)
68 : mSeekTimeUs(seekTimeUs),
335 void NuPlayer::seekToAsync(int64_t seekTimeUs, bool needNotify) {
337 msg->setInt64("seekTimeUs", seekTimeUs);
935 int64_t seekTimeUs;
937 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs));
940 ALOGV("kWhatSeek seekTimeUs=%lld us, needNotify=%d",
941 seekTimeUs, needNotify)
    [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 227 int64_t seekTimeUs = -1;
248 if (seekTimeUs >= 0) {
249 int64_t diff = timestampUs - seekTimeUs;
258 seekTimeUs / 1E6, timestampUs / 1E6);
282 seekTimeUs = -1;
285 seekTimeUs = (rand() * (float)durationUs) / RAND_MAX;
286 options.setSeekTo(seekTimeUs);
289 seekTimeUs, seekTimeUs / 1E6);
540 for (int64_t seekTimeUs = 0; seekTimeUs <= durationUs
    [all...]
  /frameworks/av/media/libstagefright/
JPEGSource.cpp 114 int64_t seekTimeUs;
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
AMRExtractor.cpp 254 int64_t seekTimeUs;
256 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
258 int64_t seekFrame = seekTimeUs / 20000ll; // 20ms per frame.
AACExtractor.cpp 290 int64_t seekTimeUs;
292 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
294 int64_t seekFrame = seekTimeUs / mFrameDurationUs;
WAVExtractor.cpp 404 int64_t seekTimeUs;
406 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
411 int64_t samplenumber = (seekTimeUs * mSampleRate) / 1000000;
415 pos = (seekTimeUs * mSampleRate) / 1000000 * mNumChannels * (mBitsPerSample >> 3);
MP3Extractor.cpp 479 int64_t seekTimeUs;
483 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
484 int64_t actualSeekTimeUs = seekTimeUs;
495 mCurrentTimeUs = seekTimeUs;
496 mCurrentPos = mFirstFramePos + seekTimeUs * bitrate / 8000000;
FLACExtractor.cpp 756 int64_t seekTimeUs;
758 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
760 if (seekTimeUs <= 0LL) {
764 sample = (seekTimeUs * mParser->getSampleRate()) / 1000000LL;
NuMediaExtractor.cpp 360 int64_t seekTimeUs, MediaSource::ReadOptions::SeekMode mode) {
367 if (seekTimeUs >= 0ll) {
381 if (seekTimeUs >= 0ll) {
382 options.setSeekTo(seekTimeUs, mode);
  /frameworks/av/media/libstagefright/wifi-display/source/
RepeaterSource.cpp 111 int64_t seekTimeUs;
113 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &seekMode));
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 98 int64_t seekTimeUs, bool isAudio,
360 int64_t seekTimeUs, bool isAudio,
366 const int64_t seekTimeNs = seekTimeUs * 1000ll - mExtractor->mSeekPreRollNs;
373 ALOGV("Seek to beginning: %" PRId64, seekTimeUs);
382 ALOGV("Seeking to: %" PRId64, seekTimeUs);
477 if (thisTrack->GetType() == 1 || frameTimeUs >= seekTimeUs) {
480 seekTimeUs, *actualFrameTimeUs);
564 int64_t seekTimeUs;
566 if (options && options->getSeekTo(&seekTimeUs, &mode)
574 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs)
    [all...]
  /frameworks/av/include/media/stagefright/
NuMediaExtractor.h 108 int64_t seekTimeUs = -1ll,
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 88 int64_t seekTimeUs;
90 if (mSeekable && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 262 int64_t seekTimeUs;
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {

Completed in 408 milliseconds

1 2