Searched refs:rtpTime (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/media/libstagefright/rtsp/
H A DAH263Assembler.cpp88 uint32_t rtpTime; local
89 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
91 if (mPackets.size() > 0 && rtpTime != mAccessUnitRTPTime) {
94 mAccessUnitRTPTime = rtpTime;
H A DARTPWriter.cpp577 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll); local
590 data[4] = rtpTime >> 24;
591 data[5] = (rtpTime >> 16) & 0xff;
592 data[6] = (rtpTime >> 8) & 0xff;
593 data[7] = rtpTime & 0xff;
629 data[4] = rtpTime >> 24;
630 data[5] = (rtpTime >> 16) & 0xff;
631 data[6] = (rtpTime >> 8) & 0xff;
632 data[7] = rtpTime & 0xff;
662 mLastRTPTime = rtpTime;
672 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll); local
756 uint32_t rtpTime = mRTPTimeBase + (timeUs / (isWide ? 250 : 125)); local
[all...]
H A DARTPAssembler.cpp62 uint32_t rtpTime; local
63 CHECK(from->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
65 to->meta()->setInt32("rtp-time", rtpTime);
H A DARTPSource.h41 void timeUpdate(uint32_t rtpTime, uint64_t ntpTime);
H A DAAVCAssembler.cpp132 uint32_t rtpTime; local
133 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
135 if (!mNALUnits.empty() && rtpTime != mAccessUnitRTPTime) {
138 mAccessUnitRTPTime = rtpTime;
H A DAMPEG4ElementaryAssembler.cpp240 uint32_t rtpTime; local
241 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
243 if (mPackets.size() > 0 && rtpTime != mAccessUnitRTPTime) {
246 mAccessUnitRTPTime = rtpTime;
H A DAMPEG4AudioAssembler.cpp525 uint32_t rtpTime; local
526 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
528 if (mPackets.size() > 0 && rtpTime != mAccessUnitRTPTime) {
531 mAccessUnitRTPTime = rtpTime;
H A DMyHandler.h996 uint32_t rtpTime; local
998 CHECK(msg->findInt32("rtp-time", (int32_t *)&rtpTime));
1001 onTimeUpdate(trackIndex, rtpTime, ntpTime);
1537 uint32_t rtpTime = strtoul(val.c_str(), &end, 10); local
1539 ALOGV("track #%d: rtpTime=%u <=> npt=%.2f", n, rtpTime, npt1);
1541 info->mNormalPlayTimeRTP = rtpTime;
1796 void onTimeUpdate(int32_t trackIndex, uint32_t rtpTime, uint64_t ntpTime) { argument
1797 ALOGV("onTimeUpdate track %d, rtpTime = 0x%08x, ntpTime = %#016llx",
1798 trackIndex, rtpTime, (lon
1896 uint32_t rtpTime; local
1949 postNormalPlayTimeMapping( size_t trackIndex, uint32_t rtpTime, int64_t nptUs) argument
[all...]
H A DARTPSource.cpp94 void ARTPSource::timeUpdate(uint32_t rtpTime, uint64_t ntpTime) { argument
100 notify->setInt32("rtp-time", rtpTime);
H A DARTPConnection.cpp483 uint32_t rtpTime = u32at(&data[4]); local
487 meta->setInt32("rtp-time", rtpTime);
608 uint32_t rtpTime = u32at(&data[16]); local
611 ALOGI("XXX timeUpdate: ssrc=0x%08x, rtpTime %u == ntpTime %.3f",
613 rtpTime,
619 source->timeUpdate(rtpTime, ntpTime);
H A DMyTransmitter.h644 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll); local
661 uint32_t rtpTime = mRTPTimeBase + mNumRTPSent * 128; local
666 data[4] = rtpTime >> 24;
667 data[5] = (rtpTime >> 16) & 0xff;
668 data[6] = (rtpTime >> 8) & 0xff;
669 data[7] = rtpTime & 0xff;
683 mLastRTPTime = rtpTime;
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp227 uint32_t rtpTime = (timeUs * 9) / 100ll; local
229 rtp[4] = rtpTime >> 24;
230 rtp[5] = (rtpTime >> 16) & 0xff;
231 rtp[6] = (rtpTime >> 8) & 0xff;
232 rtp[7] = rtpTime & 0xff;
271 uint32_t rtpTime = (nowUs * 9) / 100ll; local
273 rtp[4] = rtpTime >> 24;
274 rtp[5] = (rtpTime >> 16) & 0xff;
275 rtp[6] = (rtpTime >> 8) & 0xff;
276 rtp[7] = rtpTime
314 uint32_t rtpTime = (timeUs * 9 / 100ll); local
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp531 uint32_t rtpTime; local
532 CHECK(accessUnit->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
542 ((double)rtpTime - (double)info->mRTPTime)
611 uint32_t rtpTime; local
612 CHECK(msg->findInt32("rtpTime", (int32_t *)&rtpTime));
618 info->mRTPTime = rtpTime;

Completed in 497 milliseconds