blob: e879f8de4fa8de91e24b95e32dfa83f692420403 [file] [log] [blame]
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_VOICE_ENGINE_VOE_DTMF_IMPL_H
12#define WEBRTC_VOICE_ENGINE_VOE_DTMF_IMPL_H
13
turaj@webrtc.org15a03fd2013-03-12 22:27:27 +000014#include "webrtc/voice_engine/include/voe_dtmf.h"
15#include "webrtc/voice_engine/shared_data.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000016
17namespace webrtc
18{
19
20class VoEDtmfImpl : public VoEDtmf
21{
22public:
23 virtual int SendTelephoneEvent(
24 int channel,
25 int eventCode,
26 bool outOfBand = true,
27 int lengthMs = 160,
28 int attenuationDb = 10);
29
30 virtual int SetSendTelephoneEventPayloadType(int channel,
31 unsigned char type);
32
33 virtual int GetSendTelephoneEventPayloadType(int channel,
34 unsigned char& type);
35
36 virtual int SetDtmfFeedbackStatus(bool enable,
37 bool directFeedback = false);
38
39 virtual int GetDtmfFeedbackStatus(bool& enabled, bool& directFeedback);
40
41 virtual int PlayDtmfTone(int eventCode,
42 int lengthMs = 200,
43 int attenuationDb = 10);
44
45 virtual int StartPlayingDtmfTone(int eventCode,
46 int attenuationDb = 10);
47
48 virtual int StopPlayingDtmfTone();
49
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000050 virtual int SetDtmfPlayoutStatus(int channel, bool enable);
51
52 virtual int GetDtmfPlayoutStatus(int channel, bool& enabled);
53
54protected:
55 VoEDtmfImpl(voe::SharedData* shared);
56 virtual ~VoEDtmfImpl();
57
58private:
59 bool _dtmfFeedback;
60 bool _dtmfDirectFeedback;
61 voe::SharedData* _shared;
62};
63
pbos@webrtc.org3b89e102013-07-03 15:12:26 +000064} // namespace webrtc
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000065
66#endif // WEBRTC_VOICE_ENGINE_VOE_DTMF_IMPL_H