Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1339)

Unified Diff: webrtc/modules/rtp_rtcp/source/dtmf_queue.h

Issue 2365873002: Make RtpSenderAudio not inherit from DtmfQueue (Closed)
Patch Set: Make RtpSenderAudio not inherit from DtmfQueue Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/rtp_rtcp/source/dtmf_queue.h
diff --git a/webrtc/modules/rtp_rtcp/source/dtmf_queue.h b/webrtc/modules/rtp_rtcp/source/dtmf_queue.h
index c0e616f98273ce02abafbdc00fe078c0a45c5e85..b6d3a5edfc71bbf0a37d5248f4b6c5f0bfa7f684 100644
--- a/webrtc/modules/rtp_rtcp/source/dtmf_queue.h
+++ b/webrtc/modules/rtp_rtcp/source/dtmf_queue.h
@@ -19,12 +19,10 @@ namespace webrtc {
class DTMFqueue {
public:
DTMFqueue();
- virtual ~DTMFqueue();
danilchap 2016/09/23 19:05:22 because of critsect_, DTMFqueue has non-trivial de
the sun 2016/09/23 19:15:07 Done.
int32_t AddDTMF(uint8_t dtmf_key, uint16_t len, uint8_t level);
int8_t NextDTMF(uint8_t* dtmf_key, uint16_t* len, uint8_t* level);
bool PendingDTMF();
- void ResetDTMF();
private:
rtc::CriticalSection dtmf_critsect_;
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/dtmf_queue.cc » ('j') | webrtc/modules/rtp_rtcp/source/rtp_sender_audio.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698