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

123456

/frameworks/av/include/media/omx/1.0/
H A DWGraphicBufferSource.h71 BnStatus setSuspend(bool suspend, int64_t timeUs) override;
/frameworks/av/include/media/stagefright/
H A DAVIExtractor.h106 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
H A DNuMediaExtractor.h78 int64_t timeUs,
/frameworks/av/media/libstagefright/foundation/include/
H A DAVIExtractor.h106 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
H A DNuMediaExtractor.h78 int64_t timeUs,
/frameworks/av/media/libstagefright/include/
H A DAVIExtractor.h106 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
H A DNuMediaExtractor.h78 int64_t timeUs,
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.h63 status_t nextBufferTime(int64_t *timeUs);
H A DESQueue.h57 int64_t timeUs, int32_t payloadOffset = 0,
H A DMPEG2TSExtractor.cpp482 int64_t timeUs = mSeekSyncPoints->keyAt(index); local
483 if (timeUs > seekTimeUs) {
602 int64_t timeUs; local
603 while ((err = impl->nextBufferTime(&timeUs)) == OK) {
604 if (timeUs < syncTimeUs) {
/frameworks/av/media/libstagefright/omx/1.0/
H A DWGraphicBufferSource.h78 Return<Status> setSuspend(bool suspend, int64_t timeUs) override;
H A DWGraphicBufferSource.cpp181 bool suspend, int64_t timeUs) {
182 return toStatus(mBase->setSuspend(suspend, timeUs));
180 setSuspend( bool suspend, int64_t timeUs) argument
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.h103 bool timeValid = false, int64_t timeUs = -1ll);
/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp245 int64_t timeUs; local
338 &timeUs,
355 done = (targetTimeUs < 0ll) || (timeUs >= targetTimeUs);
356 ALOGV("Received an output buffer, timeUs=%lld", (long long)timeUs);
380 if (timeUs != thumbNailTime) {
384 ALOGV("thumbNailTime = %lld us, timeUs = %lld us, mime = %s",
385 (long long)thumbNailTime, (long long)timeUs, mime.c_str());
473 int64_t timeUs, int option) {
475 ALOGV("getFrameAtTime: %" PRId64 " us option: %d", timeUs, optio
472 getFrameAtTime( int64_t timeUs, int option) argument
[all...]
H A DMidiExtractor.cpp240 int64_t timeUs = 1000ll * timeMs; local
241 buffer->meta_data()->setInt64(kKeyTime, timeUs);
H A DACodecBufferChannel.cpp189 int64_t timeUs;
190 CHECK(it->mClientBuffer->meta()->findInt64("timeUs", &timeUs));
191 it->mCodecBuffer->meta()->setInt64("timeUs", timeUs);
/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.cpp574 int64_t timeUs; local
575 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
577 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
669 int64_t timeUs; local
670 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
672 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
754 int64_t timeUs; local
755 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
756 uint32_t rtpTime = mRTPTimeBase + (timeUs / (isWide ? 250 : 125));
H A DMyHandler.h222 void seek(int64_t timeUs) { argument
224 msg->setInt64("time", timeUs);
229 void continueSeekAfterPause(int64_t timeUs) { argument
231 msg->setInt64("time", timeUs);
1177 int64_t timeUs; local
1178 CHECK(msg->findInt64("time", &timeUs));
1188 reply->setInt64("time", timeUs);
1216 int64_t timeUs; local
1217 CHECK(msg->findInt64("time", &timeUs));
1222 notify->setInt64("time", timeUs);
1247 int64_t timeUs; local
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.h241 bool isStartTimeReached(int64_t timeUs);
255 int32_t getSeqNumberForTime(int64_t timeUs) const;
/frameworks/base/media/jni/
H A Dandroid_media_MediaMuxer.cpp78 jobject byteBuf, jint offset, jint size, jlong timeUs, jint flags) {
124 status_t err = muxer->writeSampleData(buffer, trackIndex, timeUs, flags);
76 android_media_MediaMuxer_writeSampleData( JNIEnv *env, jclass , jlong nativeObject, jint trackIndex, jobject byteBuf, jint offset, jint size, jlong timeUs, jint flags) argument
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp545 status_t StagefrightRecorder::setParamMaxFileDurationUs(int64_t timeUs) { argument
546 ALOGV("setParamMaxFileDurationUs: %lld us", (long long)timeUs);
549 if (timeUs <= 0) {
551 (long long)timeUs);
552 timeUs = 0; // Disable the duration limit for zero or negative values.
553 } else if (timeUs <= 100000LL) { // XXX: 100 milli-seconds
554 ALOGE("Max file duration is too short: %lld us", (long long)timeUs);
558 if (timeUs <= 15 * 1000000LL) {
559 ALOGW("Target duration (%lld us) too short to be respected", (long long)timeUs);
561 mMaxFileDurationUs = timeUs;
1941 int64_t timeUs = source->getFirstSampleSystemTimeUs(); local
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp677 int64_t timeUs; local
680 CHECK(msg->findInt64("timeUs", &timeUs));
694 err = mSource->selectTrack(trackIndex, select, timeUs);
2063 status_t NuPlayer::selectTrack(size_t trackIndex, bool select, int64_t timeUs) { argument
2067 msg->setInt64("timeUs", timeUs);
2527 int64_t timeUs, posUs; local
2530 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2602 int64_t timeUs, durationUs; local
2619 int64_t timeUs; local
2634 int64_t timeUs; local
[all...]
H A DHTTPLiveSource.cpp218 status_t NuPlayer::HTTPLiveSource::selectTrack(size_t trackIndex, bool select, int64_t /*timeUs*/) {
286 int64_t timeUs, baseUs, delayUs; local
288 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
289 delayUs = baseUs + timeUs - ALooper::GetNowUs();
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp84 bool hasOutputBuffer(int64_t *timeUs) const;
297 int64_t *timeUs) const {
298 *timeUs = 0ll;
306 CHECK(outputBuffer->meta()->findInt64("timeUs", timeUs));
856 int64_t timeUs; local
857 CHECK_EQ((status_t)OK, mExtractor->getSampleTime(&timeUs));
860 "timeUs", mFirstSampleTimeRealUs + timeUs - mFirstSampleTimeUs);
/frameworks/av/cmds/stagefright/
H A Dcodec.cpp184 int64_t timeUs; local
185 err = extractor->getSampleTime(&timeUs);
194 timeUs,
220 0ll /* timeUs */,

Completed in 614 milliseconds

123456