niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 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_MODULES_RTP_RTCP_SOURCE_DTMF_QUEUE_H_ |
| 12 | #define WEBRTC_MODULES_RTP_RTCP_SOURCE_DTMF_QUEUE_H_ |
| 13 | |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame^] | 14 | #include <list> |
| 15 | |
danilchap | 7c9426c | 2016-04-14 03:05:31 -0700 | [diff] [blame] | 16 | #include "webrtc/base/criticalsection.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 17 | |
| 18 | namespace webrtc { |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame^] | 19 | class DtmfQueue { |
phoglund@webrtc.org | 315d398 | 2013-05-08 10:04:06 +0000 | [diff] [blame] | 20 | public: |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame^] | 21 | struct Event { |
| 22 | uint16_t duration_ms = 0; |
| 23 | uint8_t payload_type = 0; |
| 24 | uint8_t key = 0; |
| 25 | uint8_t level = 0; |
| 26 | }; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 27 | |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame^] | 28 | DtmfQueue(); |
| 29 | ~DtmfQueue(); |
| 30 | |
| 31 | bool AddDtmf(const Event& event); |
| 32 | bool NextDtmf(Event* event); |
| 33 | bool PendingDtmf() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 34 | |
phoglund@webrtc.org | 315d398 | 2013-05-08 10:04:06 +0000 | [diff] [blame] | 35 | private: |
danilchap | 7c9426c | 2016-04-14 03:05:31 -0700 | [diff] [blame] | 36 | rtc::CriticalSection dtmf_critsect_; |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame^] | 37 | std::list<Event> queue_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 38 | }; |
phoglund@webrtc.org | 315d398 | 2013-05-08 10:04:06 +0000 | [diff] [blame] | 39 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 40 | |
phoglund@webrtc.org | 315d398 | 2013-05-08 10:04:06 +0000 | [diff] [blame] | 41 | #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_DTMF_QUEUE_H_ |