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

Unified Diff: webrtc/voice_engine/include/voe_base.h

Issue 2961723004: Allow an external audio processing module to be used in WebRTC (Closed)
Patch Set: Readded the audio_processing getter method Created 3 years, 6 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/include/voe_base.h
diff --git a/webrtc/voice_engine/include/voe_base.h b/webrtc/voice_engine/include/voe_base.h
index dec07d6409b88fa418fe54f45712a12dc879f6ac..ba393cba53847e70b6e8937864383207789654bb 100644
--- a/webrtc/voice_engine/include/voe_base.h
+++ b/webrtc/voice_engine/include/voe_base.h
@@ -124,18 +124,19 @@ class WEBRTC_DLLEXPORT VoEBase {
// modules:
// - The Audio Device Module (ADM) which implements all the audio layer
// functionality in a separate (reference counted) module.
- // - The AudioProcessing module handles capture-side processing. VoiceEngine
- // takes ownership of this object.
+ // - The AudioProcessing module handles capture-side processing.
// - An AudioDecoderFactory - used to create audio decoders.
- // If NULL is passed for any of these, VoiceEngine will create its own.
- // Returns -1 in case of an error, 0 otherwise.
+ // If NULL is passed for either of ADM or AudioDecoderFactory, VoiceEngine
+ // will create its own. Returns -1 in case of an error, 0 otherwise.
// TODO(ajm): Remove default NULLs.
virtual int Init(AudioDeviceModule* external_adm = NULL,
- AudioProcessing* audioproc = NULL,
+ AudioProcessing* external_apm = nullptr,
const rtc::scoped_refptr<AudioDecoderFactory>&
decoder_factory = nullptr) = 0;
// Returns NULL before Init() is called.
Taylor Brandstetter 2017/06/28 07:19:38 nit: We generally use "null" in comments, reservin
peah-webrtc 2017/06/29 11:46:31 Done.
+ // TODO(peah): Remove this when upstream dependencies have properly been
Taylor Brandstetter 2017/06/28 07:19:38 nit: upstream vs downstream question here too
peah-webrtc 2017/06/29 11:46:31 Done.
+ // resolved.
virtual AudioProcessing* audio_processing() = 0;
// This method is WIP - DO NOT USE!

Powered by Google App Engine
This is Rietveld 408576698