Home
last modified time | relevance | path

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

/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/audio/
DAudioStreamGraphRtpRx.cpp26 AudioStreamGraphRtpRx::AudioStreamGraphRtpRx(BaseSessionCallback* callback, int localFd) : in AudioStreamGraphRtpRx() function in AudioStreamGraphRtpRx
31 AudioStreamGraphRtpRx::~AudioStreamGraphRtpRx() {} in ~AudioStreamGraphRtpRx()
33 ImsMediaResult AudioStreamGraphRtpRx::create(RtpConfig* config) in create()
79 ImsMediaResult AudioStreamGraphRtpRx::update(RtpConfig* config) in update()
150 ImsMediaResult AudioStreamGraphRtpRx::start() in start()
167 void AudioStreamGraphRtpRx::processCmr(const uint32_t cmrType, const uint32_t cmrDefine) in processCmr()
177 void AudioStreamGraphRtpRx::adjustDelay(const int32_t delayMs) in adjustDelay()
DAudioSession.cpp53 AudioStreamGraphRtpRx* graph = mListGraphRtpRx.front(); in ~AudioSession()
178 AudioStreamGraphRtpRx* graphRx = AudioStreamGraph::findGraph(mListGraphRtpRx, in startGraph()
179 [&config](AudioStreamGraphRtpRx* graph) in startGraph()
197 mListGraphRtpRx.push_back(new AudioStreamGraphRtpRx(this, mRtpFd)); in startGraph()
331 for (std::list<AudioStreamGraphRtpRx*>::iterator iter = mListGraphRtpRx.begin(); in confirmGraph()
334 AudioStreamGraphRtpRx* graph = *iter; in confirmGraph()
408 for (std::list<AudioStreamGraphRtpRx*>::iterator iter = mListGraphRtpRx.begin(); in deleteGraph()
411 AudioStreamGraphRtpRx* graph = *iter; in deleteGraph()
603 for (std::list<AudioStreamGraphRtpRx*>::iterator iter = mListGraphRtpRx.begin(); in adjustDelay()
606 AudioStreamGraphRtpRx* graph = *iter; in adjustDelay()
[all …]
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/audio/
DAudioStreamGraphRtpRx.h23 class AudioStreamGraphRtpRx : public AudioStreamGraph
26 AudioStreamGraphRtpRx(BaseSessionCallback* callback, int localFd = 0);
27 virtual ~AudioStreamGraphRtpRx();
DAudioSession.h141 std::list<AudioStreamGraphRtpRx*> mListGraphRtpRx;
/packages/modules/ImsMedia/tests/native/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/audio/
DAudioStreamGraphRtpRxTest.cpp75 AudioStreamGraphRtpRx* graph;
127 graph = new AudioStreamGraphRtpRx(nullptr, socketRtpFd); in SetUp()