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

Unified Diff: webrtc/voice_engine/test/auto_test/voe_standard_test.cc

Issue 1723153002: Remove the VoEDtmf interface. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 9 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/test/auto_test/voe_standard_test.cc
diff --git a/webrtc/voice_engine/test/auto_test/voe_standard_test.cc b/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
index a187c4bb6ca9d4dbf7d0dbc9bf8886546585b499..2af6b5bd86e38b80f004c0a3734050c652f7406d 100644
--- a/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
+++ b/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
@@ -42,8 +42,6 @@ void SubAPIManager::DisplayStatus() const {
TEST_LOG(" Base\n");
if (_codec)
TEST_LOG(" Codec\n");
- if (_dtmf)
- TEST_LOG(" Dtmf\n");
if (_externalMedia)
TEST_LOG(" ExternalMedia\n");
if (_file)
@@ -68,8 +66,6 @@ void SubAPIManager::DisplayStatus() const {
TEST_LOG(" Base\n");
if (!_codec)
TEST_LOG(" Codec\n");
- if (!_dtmf)
- TEST_LOG(" Dtmf\n");
if (!_externalMedia)
TEST_LOG(" ExternamMedia\n");
if (!_file)
@@ -96,7 +92,6 @@ VoETestManager::VoETestManager()
voice_engine_(NULL),
voe_base_(0),
voe_codec_(0),
- voe_dtmf_(0),
voe_xmedia_(0),
voe_file_(0),
voe_hardware_(0),
@@ -131,7 +126,6 @@ void VoETestManager::GetInterfaces() {
voe_base_ = VoEBase::GetInterface(voice_engine_);
voe_codec_ = VoECodec::GetInterface(voice_engine_);
voe_volume_control_ = VoEVolumeControl::GetInterface(voice_engine_);
- voe_dtmf_ = VoEDtmf::GetInterface(voice_engine_);
voe_rtp_rtcp_ = VoERTP_RTCP::GetInterface(voice_engine_);
voe_apm_ = VoEAudioProcessing::GetInterface(voice_engine_);
voe_network_ = VoENetwork::GetInterface(voice_engine_);
@@ -175,10 +169,6 @@ int VoETestManager::ReleaseInterfaces() {
voe_volume_control_->Release();
voe_volume_control_ = NULL;
}
- if (voe_dtmf_) {
- voe_dtmf_->Release();
- voe_dtmf_ = NULL;
- }
if (voe_rtp_rtcp_) {
voe_rtp_rtcp_->Release();
voe_rtp_rtcp_ = NULL;
« no previous file with comments | « webrtc/voice_engine/test/auto_test/voe_standard_test.h ('k') | webrtc/voice_engine/test/auto_test/voe_test_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698