Home
last modified time | relevance | path

Searched refs:_audioFramePool (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_conference_mixer/source/
Daudio_conference_mixer_impl.cc118 _audioFramePool(NULL), in AudioConferenceMixerImpl()
142 MemoryPool<AudioFrame>::CreateMemoryPool(_audioFramePool, in Init()
144 if(_audioFramePool == NULL) in Init()
174 MemoryPool<AudioFrame>::DeleteMemoryPool(_audioFramePool); in ~AudioConferenceMixerImpl()
175 assert(_audioFramePool == NULL); in ~AudioConferenceMixerImpl()
266 if(_audioFramePool->PopMemory(mixedAudio) == -1) { in Process()
325 _audioFramePool->PushMemory(mixedAudio); in Process()
549 if(_audioFramePool->PopMemory(audioFrame) == -1) { in UpdateToMix()
560 _audioFramePool->PushMemory(audioFrame); in UpdateToMix()
627 _audioFramePool->PushMemory(replaceFrame); in UpdateToMix()
[all …]
Daudio_conference_mixer_impl.h164 MemoryPool<AudioFrame>* _audioFramePool; variable