From 75caef7a4b8280e85d4686cc9baeab4054ae5031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Tue, 6 Aug 2019 10:55:18 +0200 Subject: [PATCH] Delete unused ACM members isac_decoder_16k_ and isac_decoder_32k_ Unused since https://webrtc-review.googlesource.com/c/103821. Bug: webrtc:8396 Change-Id: Ia83f02f16d6ea8c260ea765b41506f2691e035bf Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/148072 Reviewed-by: Karl Wiberg Commit-Queue: Niels Moller Cr-Commit-Position: refs/heads/master@{#28788} --- modules/audio_coding/acm2/audio_coding_module.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/audio_coding/acm2/audio_coding_module.cc b/modules/audio_coding/acm2/audio_coding_module.cc index 80313dcec9..60e4fe1a91 100644 --- a/modules/audio_coding/acm2/audio_coding_module.cc +++ b/modules/audio_coding/acm2/audio_coding_module.cc @@ -203,11 +203,6 @@ class AudioCodingModuleImpl final : public AudioCodingModule { // Current encoder stack, provided by a call to RegisterEncoder. std::unique_ptr encoder_stack_ RTC_GUARDED_BY(acm_crit_sect_); - std::unique_ptr isac_decoder_16k_ - RTC_GUARDED_BY(acm_crit_sect_); - std::unique_ptr isac_decoder_32k_ - RTC_GUARDED_BY(acm_crit_sect_); - // This is to keep track of CN instances where we can send DTMFs. uint8_t previous_pltype_ RTC_GUARDED_BY(acm_crit_sect_);