HomeSort by relevance Sort by last modified time
    Searched refs:seekTimeUs (Results 1 - 25 of 34) 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/libstagefright/include/
MPEG2TSExtractor.h 68 status_t seek(int64_t seekTimeUs,
71 status_t seekBeyond(int64_t seekTimeUs);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
RTSPSource.h 54 virtual status_t seekTo(int64_t seekTimeUs);
128 void performSeek(int64_t seekTimeUs);
GenericSource.h 74 virtual status_t seekTo(int64_t seekTimeUs);
181 status_t doSeek(int64_t seekTimeUs);
196 int64_t seekTimeUs,
203 int64_t seekTimeUs = -1ll, int64_t *actualTimeUs = NULL, bool formatChange = false);
HTTPLiveSource.h 49 virtual status_t seekTo(int64_t seekTimeUs);
GenericSource.cpp     [all...]
RTSPSource.cpp 296 status_t NuPlayer::RTSPSource::seekTo(int64_t seekTimeUs) {
299 msg->setInt64("timeUs", seekTimeUs);
310 void NuPlayer::RTSPSource::performSeek(int64_t seekTimeUs) {
317 mHandler->seek(seekTimeUs);
339 int64_t seekTimeUs;
340 CHECK(msg->findInt64("timeUs", &seekTimeUs));
342 performSeek(seekTimeUs);
NuPlayer.h 73 void seekToAsync(int64_t seekTimeUs, bool needNotify = false);
259 void performSeek(int64_t seekTimeUs);
NuPlayer.cpp 72 SeekAction(int64_t seekTimeUs)
73 : mSeekTimeUs(seekTimeUs) {
414 void NuPlayer::seekToAsync(int64_t seekTimeUs, bool needNotify) {
416 msg->setInt64("seekTimeUs", seekTimeUs);
    [all...]
NuPlayerDriver.cpp 396 int64_t seekTimeUs = msec * 1000ll;
402 mStartupSeekTimeUs = seekTimeUs;
410 mPlayer->seekToAsync(seekTimeUs, true /* needNotify */);
418 mPositionUs = seekTimeUs;
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 93 int64_t seekTimeUs;
95 if (mDoesSeek && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
97 status_t err = mExtractor->seek(seekTimeUs, seekMode);
291 status_t MPEG2TSExtractor::seek(int64_t seekTimeUs,
301 (seekTimeUs > mSeekSyncPoints->keyAt(mSeekSyncPoints->size() - 1));
307 if (timeUs > seekTimeUs) {
343 status_t err = seekBeyond(seekTimeUs);
411 status_t MPEG2TSExtractor::seekBeyond(int64_t seekTimeUs) {
415 while (seekTimeUs > mSeekSyncPoints->keyAt(
  /frameworks/av/media/libstagefright/
MidiExtractor.cpp 122 int64_t seekTimeUs;
124 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
125 if (seekTimeUs <= 0LL) {
126 seekTimeUs = 0LL;
128 mEngine->seekTo(seekTimeUs);
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 491 int64_t seekTimeUs;
495 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
496 int64_t actualSeekTimeUs = seekTimeUs;
507 mCurrentTimeUs = seekTimeUs;
508 mCurrentPos = mFirstFramePos + seekTimeUs * bitrate / 8000000;
FLACExtractor.cpp 759 int64_t seekTimeUs;
761 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
763 if (seekTimeUs <= 0LL) {
767 sample = (seekTimeUs * mParser->getSampleRate()) / 1000000LL;
  /frameworks/av/cmds/stagefright/
stagefright.cpp 229 int64_t seekTimeUs = -1;
250 if (seekTimeUs >= 0) {
251 int64_t diff = timestampUs - seekTimeUs;
260 seekTimeUs / 1E6, timestampUs / 1E6);
284 seekTimeUs = -1;
287 seekTimeUs = (rand() * (float)durationUs) / RAND_MAX;
288 options.setSeekTo(seekTimeUs);
291 seekTimeUs, seekTimeUs / 1E6);
547 for (int64_t seekTimeUs = 0; seekTimeUs <= durationUs
    [all...]
  /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 99 int64_t seekTimeUs, bool isAudio,
361 int64_t seekTimeUs, bool isAudio,
367 const int64_t seekTimeNs = seekTimeUs * 1000ll - mExtractor->mSeekPreRollNs;
374 ALOGV("Seek to beginning: %" PRId64, seekTimeUs);
383 ALOGV("Seeking to: %" PRId64, seekTimeUs);
478 if (thisTrack->GetType() == 1 || frameTimeUs >= seekTimeUs) {
481 seekTimeUs, *actualFrameTimeUs);
554 int64_t seekTimeUs;
556 if (options && options->getSeekTo(&seekTimeUs, &mode)
564 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs)
    [all...]
  /frameworks/av/include/media/stagefright/
NuMediaExtractor.h 108 int64_t seekTimeUs = -1ll,
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 262 int64_t seekTimeUs;
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {

Completed in 545 milliseconds

1 2