HomeSort by relevance Sort by last modified time
    Searched refs:rtpTime (Results 1 - 12 of 12) sorted by null

  /frameworks/base/media/libstagefright/rtsp/
ARTPAssembler.cpp 68 uint32_t rtpTime;
69 CHECK(from->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
71 to->meta()->setInt32("rtp-time", rtpTime);
AH263Assembler.cpp 85 uint32_t rtpTime;
86 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
88 if (mPackets.size() > 0 && rtpTime != mAccessUnitRTPTime) {
91 mAccessUnitRTPTime = rtpTime;
ARTPWriter.cpp 577 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
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;
    [all...]
ARTPSource.h 41 void timeUpdate(uint32_t rtpTime, uint64_t ntpTime);
AAVCAssembler.cpp 125 uint32_t rtpTime;
126 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
128 if (!mNALUnits.empty() && rtpTime != mAccessUnitRTPTime) {
131 mAccessUnitRTPTime = rtpTime;
AMPEG4ElementaryAssembler.cpp 211 uint32_t rtpTime;
212 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
214 if (mPackets.size() > 0 && rtpTime != mAccessUnitRTPTime) {
217 mAccessUnitRTPTime = rtpTime;
MyHandler.h 816 uint32_t rtpTime;
818 CHECK(msg->findInt32("rtp-time", (int32_t *)&rtpTime));
821 onTimeUpdate(trackIndex, rtpTime, ntpTime);
    [all...]
AMPEG4AudioAssembler.cpp 514 uint32_t rtpTime;
515 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
517 if (mPackets.size() > 0 && rtpTime != mAccessUnitRTPTime) {
520 mAccessUnitRTPTime = rtpTime;
ARTPSource.cpp 91 void ARTPSource::timeUpdate(uint32_t rtpTime, uint64_t ntpTime) {
97 notify->setInt32("rtp-time", rtpTime);
ARTPConnection.cpp 481 uint32_t rtpTime = u32at(&data[4]);
485 meta->setInt32("rtp-time", rtpTime);
606 uint32_t rtpTime = u32at(&data[16]);
609 LOGI("XXX timeUpdate: ssrc=0x%08x, rtpTime %u == ntpTime %.3f",
611 rtpTime,
617 source->timeUpdate(rtpTime, ntpTime);
MyTransmitter.h 641 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
658 uint32_t rtpTime = mRTPTimeBase + mNumRTPSent * 128;
663 data[4] = rtpTime >> 24;
664 data[5] = (rtpTime >> 16) & 0xff;
665 data[6] = (rtpTime >> 8) & 0xff;
666 data[7] = rtpTime & 0xff;
680 mLastRTPTime = rtpTime;
  /frameworks/base/media/libmediaplayerservice/nuplayer/
RTSPSource.cpp 237 uint32_t rtpTime;
238 CHECK(accessUnit->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
247 info->mRTPTime = rtpTime;
253 ((double)rtpTime - (double)info->mRTPTime)
305 uint32_t rtpTime;
306 CHECK(msg->findInt32("rtpTime", (int32_t *)&rtpTime));
312 info->mRTPTime = rtpTime;

Completed in 341 milliseconds