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