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

Unified Diff: webrtc/modules/audio_coding/main/acm2/audio_coding_module.cc

Issue 1415163002: Removing AudioCoding class, a.k.a the new ACM API (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 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/modules/audio_coding/main/acm2/audio_coding_module.cc
diff --git a/webrtc/modules/audio_coding/main/acm2/audio_coding_module.cc b/webrtc/modules/audio_coding/main/acm2/audio_coding_module.cc
index f502eb3f8c08fe1b95251edcb02614caac5a2296..8a0980e6190f3d6526a594a83c6d465937ee14a3 100644
--- a/webrtc/modules/audio_coding/main/acm2/audio_coding_module.cc
+++ b/webrtc/modules/audio_coding/main/acm2/audio_coding_module.cc
@@ -100,18 +100,4 @@ bool AudioCodingModule::IsCodecValid(const CodecInst& codec) {
}
}
-AudioCoding::Config::Config()
- : neteq_config(),
- clock(Clock::GetRealTimeClock()),
- transport(nullptr),
- vad_callback(nullptr),
- initial_playout_delay_ms(0),
- playout_channels(1),
- playout_frequency_hz(32000) {
-}
-
-AudioCoding* AudioCoding::Create(const Config& config) {
- return new AudioCodingImpl(config);
-}
-
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698