summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/webrtc/voice_engine/include/voe_dtmf.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/webrtc/voice_engine/include/voe_dtmf.h')
-rw-r--r--chromium/third_party/webrtc/voice_engine/include/voe_dtmf.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/chromium/third_party/webrtc/voice_engine/include/voe_dtmf.h b/chromium/third_party/webrtc/voice_engine/include/voe_dtmf.h
index 301d73f8d5d..4db8cbc5968 100644
--- a/chromium/third_party/webrtc/voice_engine/include/voe_dtmf.h
+++ b/chromium/third_party/webrtc/voice_engine/include/voe_dtmf.h
@@ -43,7 +43,7 @@ class VoiceEngine;
class WEBRTC_DLLEXPORT VoEDtmf
{
public:
-
+
// Factory for the VoEDtmf sub-API. Increases an internal
// reference counter if successful. Returns NULL if the API is not
// supported or if construction fails.
@@ -60,13 +60,13 @@ public:
bool outOfBand = true, int lengthMs = 160,
int attenuationDb = 10) = 0;
-
+
// Sets the dynamic payload |type| that should be used for telephone
// events.
virtual int SetSendTelephoneEventPayloadType(int channel,
unsigned char type) = 0;
-
+
// Gets the currently set dynamic payload |type| for telephone events.
virtual int GetSendTelephoneEventPayloadType(int channel,
unsigned char& type) = 0;
@@ -90,14 +90,10 @@ public:
virtual int PlayDtmfTone(int eventCode, int lengthMs = 200,
int attenuationDb = 10) = 0;
- // Starts playing out a DTMF feedback tone locally.
- // The tone will be played out until the corresponding stop function
- // is called.
+ // To be removed. Don't use.
virtual int StartPlayingDtmfTone(int eventCode,
- int attenuationDb = 10) = 0;
-
- // Stops playing out a DTMF feedback tone locally.
- virtual int StopPlayingDtmfTone() = 0;
+ int attenuationDb = 10) { return -1; }
+ virtual int StopPlayingDtmfTone() { return -1; }
protected:
VoEDtmf() {}