Home
last modified time | relevance | path

Searched refs:mCurrentTimeUs (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/extractors/mp3/
DMP3Extractor.cpp237 int64_t mCurrentTimeUs; member in android::MP3Source
451 mCurrentTimeUs(0), in MP3Source()
473 mCurrentTimeUs = 0; in start()
475 mBasisTimeUs = mCurrentTimeUs; in start()
519 mCurrentTimeUs = seekTimeUs; in read()
523 mCurrentTimeUs = actualSeekTimeUs; in read()
526 mBasisTimeUs = mCurrentTimeUs; in read()
558 mCurrentTimeUs = (mCurrentPos - mFirstFramePos) * 8000 / bitrate; in read()
559 mBasisTimeUs = mCurrentTimeUs; in read()
595 buffer->meta_data().setInt64(kKeyTime, mCurrentTimeUs); in read()
[all …]
/frameworks/av/media/extractors/aac/
DAACExtractor.cpp61 int64_t mCurrentTimeUs; member in android::AACSource
229 mCurrentTimeUs(0), in AACSource()
251 mCurrentTimeUs = 0; in start()
287 mCurrentTimeUs = seekFrame * mFrameDurationUs; in read()
314 buffer->meta_data().setInt64(kKeyTime, mCurrentTimeUs); in read()
318 mCurrentTimeUs += mFrameDurationUs; in read()
/frameworks/av/media/extractors/amr/
DAMRExtractor.cpp60 int64_t mCurrentTimeUs; member in android::AMRSource
238 mCurrentTimeUs(0), in AMRSource()
257 mCurrentTimeUs = 0; in start()
289 mCurrentTimeUs = seekFrame * 20000ll; in read()
352 buffer->meta_data().setInt64(kKeyTime, mCurrentTimeUs); in read()
356 mCurrentTimeUs += 20000; // Each frame is 20ms in read()
/frameworks/wilhelm/src/android/util/
DAacAdtsExtractor.cpp190 mCurrentTimeUs(0), in AacAdtsSource()
208 mCurrentTimeUs = 0; in start()
270 buffer->meta_data().setInt64(kKeyTime, mCurrentTimeUs); in read()
274 mCurrentTimeUs += mFrameDurationUs; in read()
/frameworks/wilhelm/src/android/include/
DAacAdtsExtractor.h62 int64_t mCurrentTimeUs; variable