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

  /frameworks/base/media/libstagefright/codecs/mp3dec/
MP3Decoder.cpp 142 int64_t timeUs;
143 if (mInputBuffer->meta_data()->findInt64(kKeyTime, &timeUs)) {
144 mAnchorTimeUs = timeUs;
  /frameworks/base/media/libstagefright/codecs/aacdec/
AACDecoder.cpp 181 int64_t timeUs;
182 if (mInputBuffer->meta_data()->findInt64(kKeyTime, &timeUs)) {
183 mAnchorTimeUs = timeUs;
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/
AMRNBDecoder.cpp 140 int64_t timeUs;
141 if (mInputBuffer->meta_data()->findInt64(kKeyTime, &timeUs)) {
142 mAnchorTimeUs = timeUs;
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/
AMRNBEncoder.cpp 174 int64_t timeUs;
175 if (mInputBuffer->meta_data()->findInt64(kKeyTime, &timeUs)) {
176 mAnchorTimeUs = timeUs;
  /frameworks/base/media/libstagefright/codecs/vorbis/dec/
VorbisDecoder.cpp 219 int64_t timeUs;
220 if (inputBuffer->meta_data()->findInt64(kKeyTime, &timeUs)) {
221 mAnchorTimeUs = timeUs;
  /frameworks/base/media/libstagefright/codecs/amrwb/
AMRWBDecoder.cpp 158 int64_t timeUs;
159 if (mInputBuffer->meta_data()->findInt64(kKeyTime, &timeUs)) {
160 mAnchorTimeUs = timeUs;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/
M4vH263Decoder.cpp 227 int64_t timeUs;
228 CHECK(inputBuffer->meta_data()->findInt64(kKeyTime, &timeUs));
229 (*out)->meta_data()->setInt64(kKeyTime, timeUs);
  /frameworks/base/media/libstagefright/
Prefetcher.cpp 428 int64_t timeUs;
429 if (from->findInt64(kKeyTime, &timeUs)) {
430 to->setInt64(kKeyTime, timeUs);
StagefrightMetadataRetriever.cpp 162 int64_t timeUs;
163 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
165 if (timeUs != thumbNailTime) {
169 LOGV("thumbNailTime = %lld us, timeUs = %lld us, mime = %s",
170 thumbNailTime, timeUs, mime);
OggExtractor.cpp 169 int64_t timeUs;
170 if (packet->meta_data()->findInt64(kKeyTime, &timeUs)) {
171 LOGI("found time = %lld us", timeUs);
317 int64_t timeUs = -1;
354 timeUs = mCurrentPage.mGranulePosition * 1000000ll / mVi.rate;
376 if (timeUs >= 0) {
377 buffer->meta_data()->setInt64(kKeyTime, timeUs);
412 if (timeUs >= 0) {
413 buffer->meta_data()->setInt64(kKeyTime, timeUs);
AwesomePlayer.cpp 693 status_t AwesomePlayer::seekTo(int64_t timeUs) {
698 return seekTo_l(timeUs);
704 status_t AwesomePlayer::seekTo_l(int64_t timeUs) {
707 mSeekTimeUs = timeUs;
898 int64_t timeUs;
899 CHECK(mVideoBuffer->meta_data()->findInt64(kKeyTime, &timeUs));
903 mVideoTimeUs = timeUs;
908 LOGV("seeking audio to %lld us (%.2f secs).", timeUs, timeUs / 1E6);
910 mAudioPlayer->seekTo(timeUs);
    [all...]

Completed in 450 milliseconds