Searched refs:timeUs (Results 76 - 81 of 81) sorted by relevance

1234

/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.cpp174 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode) {
175 return mImpl->seekTo(timeUs, mode);
377 JNIEnv *env, jobject thiz, jlong timeUs, jint mode) {
391 extractor->seekTo(timeUs, (MediaSource::ReadOptions::SeekMode)mode);
173 seekTo( int64_t timeUs, MediaSource::ReadOptions::SeekMode mode) argument
376 android_media_MediaExtractor_seekTo( JNIEnv *env, jobject thiz, jlong timeUs, jint mode) argument
/frameworks/av/media/libstagefright/
H A DACodec.cpp157 int64_t timeUs,
2458 int64_t timeUs; local
2465 CHECK(msg->findInt64("timestamp", &timeUs));
2473 timeUs,
2620 int64_t timeUs; local
2621 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2653 mCodec->mComponentName.c_str(), bufferID, timeUs);
2656 mCodec->mComponentName.c_str(), bufferID, timeUs);
2664 mCodec->mBufferStats.add(timeUs, stat
2752 onOMXFillBufferDone( IOMX::buffer_id bufferID, size_t rangeOffset, size_t rangeLength, OMX_U32 flags, int64_t timeUs, void *platformPrivate, void *dataPtr) argument
[all...]
H A DFLACExtractor.cpp647 int64_t timeUs = (1000000LL * sampleNumber) / getSampleRate(); local
648 buffer->meta_data()->setInt64(kKeyTime, timeUs);
H A DOMXCodec.cpp2067 int64_t timeUs = *it; local
2069 return timeUs;
3622 int64_t timeUs; local
3623 if (meta->findInt64(kKeyTime, &timeUs)) {
3624 startTimeUs = timeUs;
/frameworks/av/media/libstagefright/rtsp/
H A DMyTransmitter.h638 int64_t timeUs; local
639 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
641 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp287 status_t FragmentedMP4Parser::seekTo(bool wantAudio, int64_t timeUs) { argument
290 msg->setInt64("position", timeUs);
963 (*accessUnit)->meta()->setInt64("timeUs", presentationTimeUs);
1003 "timeUs", presentationTimeUs);
1343 csd->meta()->setInt64("timeUs", 0ll);

Completed in 678 milliseconds

1234