Searched defs:seekTimeUs (Results 26 - 30 of 30) sorted by relevance

12

/frameworks/av/media/libstagefright/
H A DFLACExtractor.cpp708 int64_t seekTimeUs; local
710 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
712 if (seekTimeUs <= 0LL) {
716 sample = (seekTimeUs * mParser->getSampleRate()) / 1000000LL;
H A DOggExtractor.cpp174 int64_t seekTimeUs; local
176 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
177 if (mExtractor->mImpl->seekToTime(seekTimeUs) != OK) {
H A DMPEG4Extractor.cpp2029 int64_t seekTimeUs; local
2031 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
2051 seekTimeUs * mTimescale / 1000000,
2096 seekTimeUs,
H A DOMXCodec.cpp3797 int64_t seekTimeUs; local
3799 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
3807 CHECK(seekTimeUs >= 0);
3808 mSeekTimeUs = seekTimeUs;
3837 CODEC_LOGV("seeking to %lld us (%.2f secs)", seekTimeUs, seekTimeUs / 1E6);
3841 CHECK(seekTimeUs >= 0);
3842 mSeekTimeUs = seekTimeUs;
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp98 int64_t seekTimeUs, bool isAudio,
310 int64_t seekTimeUs, bool isAudio,
316 const int64_t seekTimeNs = seekTimeUs * 1000ll;
323 ALOGV("Seek to beginning: %lld", seekTimeUs);
332 ALOGV("Seeking to: %lld", seekTimeUs);
413 seekTimeUs, actualFrameTimeUs);
496 int64_t seekTimeUs; local
498 if (options && options->getSeekTo(&seekTimeUs, &mode)
506 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);
309 seek( int64_t seekTimeUs, bool isAudio, int64_t *actualFrameTimeUs) argument

Completed in 324 milliseconds

12