/frameworks/base/media/libstagefright/codecs/amrnb/enc/ |
AMRNBEncoder.cpp | 147 int64_t seekTimeUs; 149 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
|
/frameworks/media/libvideoeditor/lvpp/ |
DummyAudioSource.cpp | 160 int64_t seekTimeUs; 163 if (options && options->getSeekTo(&seekTimeUs, &mode)) { 164 CHECK(seekTimeUs >= 0); 165 mTimeStampUs = seekTimeUs;
|
DummyVideoSource.cpp | 129 int64_t seekTimeUs; 132 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) { 134 mImageSeekTime = seekTimeUs;
|
VideoEditorSRC.cpp | 115 int64_t seekTimeUs; 117 if (options && options->getSeekTo(&seekTimeUs, &mode)) { 118 LOGV("read Seek %lld", seekTimeUs); 119 mSeekTimeUs = seekTimeUs;
|
/frameworks/base/media/libmediaplayerservice/nuplayer/ |
NuPlayerDriver.cpp | 180 int64_t seekTimeUs = msec * 1000ll; 187 mStartupSeekTimeUs = seekTimeUs; 193 mPlayer->seekToAsync(seekTimeUs);
|
NuPlayer.cpp | 130 void NuPlayer::seekToAsync(int64_t seekTimeUs) { 132 msg->setInt64("seekTimeUs", seekTimeUs); 492 int64_t seekTimeUs; 493 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs)); 495 LOGV("kWhatSeek seekTimeUs=%lld us (%.2f secs)", 496 seekTimeUs, seekTimeUs / 1E6); 498 mSource->seekTo(seekTimeUs); [all...] |
/frameworks/base/media/libstagefright/codecs/aacenc/ |
AACEncoder.cpp | 221 int64_t seekTimeUs; 223 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
|
/frameworks/base/media/libstagefright/codecs/amrwbenc/ |
AMRWBEncoder.cpp | 198 int64_t seekTimeUs; 200 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
|
/frameworks/base/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/base/media/libstagefright/timedtext/ |
TimedTextParser.cpp | 202 int64_t seekTimeUs; 204 if (options && options->getSeekTo(&seekTimeUs, &mode)) { 208 if (seekTimeUs < 0 || seekTimeUs > lastEndTimeUs) { 210 } else if (seekTimeUs < firstStartTimeUs) { 222 const int diff = currTimeUs - seekTimeUs; 230 && (seekTimeUs < mTextVector.keyAt(high))) {
|
/frameworks/base/media/libstagefright/ |
AACExtractor.cpp | 275 int64_t seekTimeUs; 277 if (options && options->getSeekTo(&seekTimeUs, &mode)) { 279 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.
|
CameraSource.cpp | 726 int64_t seekTimeUs; 728 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
|
JPEGSource.cpp | 114 int64_t seekTimeUs; 116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
|
WAVExtractor.cpp | 320 int64_t seekTimeUs; 322 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) { 323 int64_t pos = (seekTimeUs * mSampleRate) / 1000000 * mNumChannels * (mBitsPerSample >> 3);
|
MP3Extractor.cpp | 408 int64_t seekTimeUs; 412 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) { 413 int64_t actualSeekTimeUs = seekTimeUs; 424 mCurrentTimeUs = seekTimeUs; 425 mCurrentPos = mFirstFramePos + seekTimeUs * bitrate / 8000000;
|
FLACExtractor.cpp | 708 int64_t seekTimeUs; 710 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) { 712 if (seekTimeUs <= 0LL) { 716 sample = (seekTimeUs * mParser->getSampleRate()) / 1000000LL;
|
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...] |
OMXCodec.cpp | [all...] |
/system/media/wilhelm/src/android/util/ |
AacAdtsExtractor.cpp | 249 int64_t seekTimeUs; 251 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
|
/frameworks/base/media/libstagefright/matroska/ |
MatroskaExtractor.cpp | 96 void seek(int64_t seekTimeUs, bool seekToKeyFrame); 306 void BlockIterator::seek(int64_t seekTimeUs, bool seekToKeyFrame) { 309 mCluster = mExtractor->mSegment->FindCluster(seekTimeUs * 1000ll); 400 int64_t seekTimeUs; 402 if (options && options->getSeekTo(&seekTimeUs, &mode) 409 mBlockIter.seek(seekTimeUs, !mIsAudio);
|
/frameworks/base/cmds/stagefright/ |
stagefright.cpp | 232 int64_t seekTimeUs = -1; 253 if (seekTimeUs >= 0) { 254 int64_t diff = timestampUs - seekTimeUs; 263 seekTimeUs / 1E6, timestampUs / 1E6); 287 seekTimeUs = -1; 290 seekTimeUs = (rand() * (float)durationUs) / RAND_MAX; 291 options.setSeekTo(seekTimeUs); 294 seekTimeUs, seekTimeUs / 1E6); 545 for (int64_t seekTimeUs = 0; seekTimeUs <= durationUs [all...] |