summaryrefslogtreecommitdiff
path: root/voice_engine/output_mixer.cc
diff options
context:
space:
mode:
authorhenrika@webrtc.org <henrika@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-14 12:04:29 +0000
committerhenrika@webrtc.org <henrika@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-14 12:04:29 +0000
commitc4e54b6b46c22c03725c9d39612fd50792d018ef (patch)
treec5d855302c1e1315564d9b609879e89fccd5b3d0 /voice_engine/output_mixer.cc
parent7b2651a88b210ea01c9c3166c080b025d59094fc (diff)
downloadwebrtc-c4e54b6b46c22c03725c9d39612fd50792d018ef.tar.gz
Removes parts of the webrtc::VoEDtmf sub API as part of a clean-up operation where the goal is to remove unused APIs.
BUG=3206 R=wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/12299005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6146 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine/output_mixer.cc')
-rw-r--r--voice_engine/output_mixer.cc23
1 files changed, 0 insertions, 23 deletions
diff --git a/voice_engine/output_mixer.cc b/voice_engine/output_mixer.cc
index 5689c462..7cf98d39 100644
--- a/voice_engine/output_mixer.cc
+++ b/voice_engine/output_mixer.cc
@@ -236,29 +236,6 @@ int OutputMixer::PlayDtmfTone(uint8_t eventCode, int lengthMs,
return 0;
}
-int OutputMixer::StartPlayingDtmfTone(uint8_t eventCode,
- int attenuationDb)
-{
- WEBRTC_TRACE(kTraceInfo, kTraceVoice, VoEId(_instanceId, -1),
- "OutputMixer::StartPlayingDtmfTone()");
- if (_dtmfGenerator.StartTone(eventCode, attenuationDb) != 0)
- {
- _engineStatisticsPtr->SetLastError(
- VE_STILL_PLAYING_PREV_DTMF,
- kTraceError,
- "OutputMixer::StartPlayingDtmfTone())");
- return -1;
- }
- return 0;
-}
-
-int OutputMixer::StopPlayingDtmfTone()
-{
- WEBRTC_TRACE(kTraceInfo, kTraceVoice, VoEId(_instanceId, -1),
- "OutputMixer::StopPlayingDtmfTone()");
- return (_dtmfGenerator.StopTone());
-}
-
int32_t
OutputMixer::SetMixabilityStatus(MixerParticipant& participant,
bool mixable)