HomeSort by relevance Sort by last modified time
    Searched defs:seekTimeUs (Results 1 - 23 of 23) sorted by null

  /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/codecs/aacenc/
AACEncoder.cpp 221 int64_t seekTimeUs;
223 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 88 int64_t seekTimeUs;
90 if (mSeekable && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
  /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);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.cpp 348 int64_t seekTimeUs = msec * 1000ll;
354 mStartupSeekTimeUs = seekTimeUs;
369 mPlayer->seekToAsync(seekTimeUs, true /* needNotify */);
377 mPositionUs = seekTimeUs;
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);
GenericSource.cpp     [all...]
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/media/libstagefright/
AACExtractor.cpp 290 int64_t seekTimeUs;
292 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
294 int64_t seekFrame = seekTimeUs / mFrameDurationUs;
AMRExtractor.cpp 254 int64_t seekTimeUs;
256 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
258 int64_t seekFrame = seekTimeUs / 20000ll; // 20ms per frame.
JPEGSource.cpp 114 int64_t seekTimeUs;
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
CameraSource.cpp 812 int64_t seekTimeUs;
814 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
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);
FLACExtractor.cpp 756 int64_t seekTimeUs;
758 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
760 if (seekTimeUs <= 0LL) {
764 sample = (seekTimeUs * mParser->getSampleRate()) / 1000000LL;
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;
AVIExtractor.cpp 145 int64_t seekTimeUs;
147 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
150 mTrackIndex, seekTimeUs, seekMode, &mSampleIndex);
    [all...]
OggExtractor.cpp 179 int64_t seekTimeUs;
181 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
182 if (mExtractor->mImpl->seekToTime(seekTimeUs) != OK) {
OMXCodec.cpp     [all...]
MPEG4Extractor.cpp     [all...]
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 262 int64_t seekTimeUs;
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
  /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/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...]

Completed in 473 milliseconds