Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Unified Diff: webrtc/voice_engine/transmit_mixer.cc

Issue 2681033010: Remove usage of VoEAudioProcessing from WVoE/MC. (Closed)
Patch Set: remove Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/voice_engine/transmit_mixer.cc
diff --git a/webrtc/voice_engine/transmit_mixer.cc b/webrtc/voice_engine/transmit_mixer.cc
index c7a09df5bc64ea0d1c8b60c705188872e1ffaeaf..c6910ee5838f9aaba5b14da995593b0eeb993716 100644
--- a/webrtc/voice_engine/transmit_mixer.cc
+++ b/webrtc/voice_engine/transmit_mixer.cc
@@ -177,33 +177,12 @@ TransmitMixer::Destroy(TransmitMixer*& mixer)
}
TransmitMixer::TransmitMixer(uint32_t instanceId) :
- _engineStatisticsPtr(NULL),
- _channelManagerPtr(NULL),
- audioproc_(NULL),
- _voiceEngineObserverPtr(NULL),
- _processThreadPtr(NULL),
// Avoid conflict with other channels by adding 1024 - 1026,
// won't use as much as 1024 channels.
_filePlayerId(instanceId + 1024),
_fileRecorderId(instanceId + 1025),
_fileCallRecorderId(instanceId + 1026),
- _filePlaying(false),
- _fileRecording(false),
- _fileCallRecording(false),
- _audioLevel(),
-#if WEBRTC_VOICE_ENGINE_TYPING_DETECTION
- _typingNoiseWarningPending(false),
- _typingNoiseDetected(false),
-#endif
- _saturationWarning(false),
- _instanceId(instanceId),
- _mixFileWithMicrophone(false),
- _captureLevel(0),
- external_postproc_ptr_(NULL),
- external_preproc_ptr_(NULL),
- _mute(false),
- stereo_codec_(false),
- swap_stereo_channels_(false)
+ _instanceId(instanceId)
{
WEBRTC_TRACE(kTraceMemory, kTraceVoice, VoEId(_instanceId, -1),
"TransmitMixer::TransmitMixer() - ctor");

Powered by Google App Engine
This is Rietveld 408576698