| Index: webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc
|
| diff --git a/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc b/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc
|
| index bfc8b6537e47f505862f3b258cd2a1a1a1a965fb..d3d2a2d790cf20506ca0042d5b64955517fcd481 100644
|
| --- a/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc
|
| +++ b/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc
|
| @@ -30,7 +30,6 @@
|
| #include "webrtc/voice_engine/include/voe_audio_processing.h"
|
| #include "webrtc/voice_engine/include/voe_base.h"
|
| #include "webrtc/voice_engine/include/voe_codec.h"
|
| -#include "webrtc/voice_engine/include/voe_dtmf.h"
|
| #include "webrtc/voice_engine/include/voe_errors.h"
|
| #include "webrtc/voice_engine/include/voe_external_media.h"
|
| #include "webrtc/voice_engine/include/voe_file.h"
|
| @@ -57,7 +56,6 @@ VoiceEngine* m_voe = NULL;
|
| VoEBase* base1 = NULL;
|
| VoECodec* codec = NULL;
|
| VoEVolumeControl* volume = NULL;
|
| -VoEDtmf* dtmf = NULL;
|
| VoERTP_RTCP* rtp_rtcp = NULL;
|
| VoEAudioProcessing* apm = NULL;
|
| VoENetwork* netw = NULL;
|
| @@ -131,7 +129,6 @@ int main(int argc, char** argv) {
|
| codec = VoECodec::GetInterface(m_voe);
|
| apm = VoEAudioProcessing::GetInterface(m_voe);
|
| volume = VoEVolumeControl::GetInterface(m_voe);
|
| - dtmf = VoEDtmf::GetInterface(m_voe);
|
| rtp_rtcp = VoERTP_RTCP::GetInterface(m_voe);
|
| netw = VoENetwork::GetInterface(m_voe);
|
| file = VoEFile::GetInterface(m_voe);
|
| @@ -190,9 +187,6 @@ int main(int argc, char** argv) {
|
| if (volume)
|
| volume->Release();
|
|
|
| - if (dtmf)
|
| - dtmf->Release();
|
| -
|
| if (rtp_rtcp)
|
| rtp_rtcp->Release();
|
|
|
|
|