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

1 2

  /frameworks/av/libvideoeditor/lvpp/
DummyAudioSource.cpp 123 int64_t seekTimeUs;
126 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
127 CHECK(seekTimeUs >= 0);
128 mTimeStampUs = seekTimeUs;
DummyVideoSource.cpp 126 int64_t seekTimeUs;
128 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
130 mImageSeekTime = seekTimeUs;
VideoEditorSRC.cpp 123 int64_t seekTimeUs;
125 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
126 ALOGV("read Seek %lld", seekTimeUs);
127 mSeekTimeUs = seekTimeUs;
  /frameworks/av/media/libstagefright/wifi-display/source/
RepeaterSource.cpp 91 int64_t seekTimeUs;
93 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &seekMode));
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.cpp 185 int64_t seekTimeUs = msec * 1000ll;
192 mStartupSeekTimeUs = seekTimeUs;
199 mPlayer->seekToAsync(seekTimeUs);
RTSPSource.cpp 195 status_t NuPlayer::RTSPSource::seekTo(int64_t seekTimeUs) {
198 msg->setInt64("timeUs", seekTimeUs);
204 void NuPlayer::RTSPSource::performSeek(int64_t seekTimeUs) {
210 mHandler->seek(seekTimeUs);
234 int64_t seekTimeUs;
235 CHECK(msg->findInt64("timeUs", &seekTimeUs));
237 performSeek(seekTimeUs);
NuPlayer.cpp 172 void NuPlayer::seekToAsync(int64_t seekTimeUs) {
174 msg->setInt64("seekTimeUs", seekTimeUs);
581 int64_t seekTimeUs;
582 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs));
584 ALOGV("kWhatSeek seekTimeUs=%lld us (%.2f secs)",
585 seekTimeUs, seekTimeUs / 1E6);
587 mSource->seekTo(seekTimeUs);
    [all...]
  /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 97 int64_t seekTimeUs;
99 if (mSeekable && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
100 mExtractor->seekTo(seekTimeUs);
225 void MPEG2TSExtractor::seekTo(int64_t seekTimeUs) {
232 mLiveSession->seekTo(seekTimeUs);
  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 71 msg->setInt64("seekTimeUs", timeUs);
107 int64_t seekTimeUs = positionMs * 1000ll;
111 doSeekAndRead(seekTimeUs);
121 int64_t seekTimeUs;
123 if (msg->findInt64("seekTimeUs", &seekTimeUs) &&
127 seekTimeUs,
136 int64_t seekTimeUs = kInvalidTimeUs;
139 msg->findInt64("seekTimeUs", &seekTimeUs);
    [all...]
TimedTextSRTSource.cpp 221 int64_t seekTimeUs;
223 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
226 if (seekTimeUs < 0) {
228 } else if (seekTimeUs >= lastEndTimeUs) {
238 int diff = compareExtendedRangeAndTime(mid, seekTimeUs);
  /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.
FragmentedMP4Extractor.cpp 263 int64_t seekTimeUs;
265 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
266 mParser->seekTo(mIsAudioTrack, seekTimeUs);
JPEGSource.cpp 114 int64_t seekTimeUs;
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
CameraSource.cpp 761 int64_t seekTimeUs;
763 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
WAVExtractor.cpp 388 int64_t seekTimeUs;
390 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
391 int64_t pos = (seekTimeUs * mSampleRate) / 1000000 * mNumChannels * (mBitsPerSample >> 3);
FLACExtractor.cpp 708 int64_t seekTimeUs;
710 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
712 if (seekTimeUs <= 0LL) {
716 sample = (seekTimeUs * mParser->getSampleRate()) / 1000000LL;
MP3Extractor.cpp 476 int64_t seekTimeUs;
480 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
481 int64_t actualSeekTimeUs = seekTimeUs;
492 mCurrentTimeUs = seekTimeUs;
493 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 174 int64_t seekTimeUs;
176 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
177 if (mExtractor->mImpl->seekToTime(seekTimeUs) != OK) {
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 228 int64_t seekTimeUs = -1;
249 if (seekTimeUs >= 0) {
250 int64_t diff = timestampUs - seekTimeUs;
259 seekTimeUs / 1E6, timestampUs / 1E6);
283 seekTimeUs = -1;
286 seekTimeUs = (rand() * (float)durationUs) / RAND_MAX;
287 options.setSeekTo(seekTimeUs);
290 seekTimeUs, seekTimeUs / 1E6);
541 for (int64_t seekTimeUs = 0; seekTimeUs <= durationUs
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 98 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;
498 if (options && options->getSeekTo(&seekTimeUs, &mode)
506 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);

Completed in 678 milliseconds

1 2