Delete unused StartAecDump method with filename argument

Bug: None
Change-Id: Ia52e9730aa22ef89e350ffcf5a6608a0d273c027
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/134461
Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27799}
This commit is contained in:
Niels Möller 2019-04-29 10:07:11 +02:00 committed by Commit Bot
parent ade0dc9860
commit 8a9778efa4
2 changed files with 0 additions and 11 deletions

View File

@ -586,16 +586,6 @@ bool WebRtcVoiceEngine::StartAecDump(rtc::PlatformFile file,
return true;
}
void WebRtcVoiceEngine::StartAecDump(const std::string& filename) {
RTC_DCHECK(worker_thread_checker_.IsCurrent());
auto aec_dump = webrtc::AecDumpFactory::Create(
filename, -1, low_priority_worker_queue_.get());
if (aec_dump) {
apm()->AttachAecDump(std::move(aec_dump));
}
}
void WebRtcVoiceEngine::StopAecDump() {
RTC_DCHECK(worker_thread_checker_.IsCurrent());
apm()->DetachAecDump();

View File

@ -90,7 +90,6 @@ class WebRtcVoiceEngine final : public VoiceEngineInterface {
// easily at any time.
bool ApplyOptions(const AudioOptions& options);
void StartAecDump(const std::string& filename);
int CreateVoEChannel();
webrtc::TaskQueueFactory* const task_queue_factory_;