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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef MODULES_RTP_RTCP_SOURCE_DTMF_QUEUE_H_ |
| 12 | #define MODULES_RTP_RTCP_SOURCE_DTMF_QUEUE_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 14 | #include <stdint.h> |
Jonas Olsson | a4d8737 | 2019-07-05 19:08:33 +0200 | [diff] [blame] | 15 | |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame] | 16 | #include <list> |
| 17 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 18 | #include "rtc_base/critical_section.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 19 | |
| 20 | namespace webrtc { |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame] | 21 | class DtmfQueue { |
phoglund@webrtc.org | 315d398 | 2013-05-08 10:04:06 +0000 | [diff] [blame] | 22 | public: |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame] | 23 | struct Event { |
| 24 | uint16_t duration_ms = 0; |
| 25 | uint8_t payload_type = 0; |
| 26 | uint8_t key = 0; |
| 27 | uint8_t level = 0; |
| 28 | }; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 29 | |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame] | 30 | DtmfQueue(); |
| 31 | ~DtmfQueue(); |
| 32 | |
| 33 | bool AddDtmf(const Event& event); |
| 34 | bool NextDtmf(Event* event); |
| 35 | bool PendingDtmf() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 36 | |
phoglund@webrtc.org | 315d398 | 2013-05-08 10:04:06 +0000 | [diff] [blame] | 37 | private: |
danilchap | 7c9426c | 2016-04-14 03:05:31 -0700 | [diff] [blame] | 38 | rtc::CriticalSection dtmf_critsect_; |
solenberg | ffbbcac | 2016-11-17 05:25:37 -0800 | [diff] [blame] | 39 | std::list<Event> queue_; |
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 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 42 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 43 | #endif // MODULES_RTP_RTCP_SOURCE_DTMF_QUEUE_H_ |