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

Side by Side Diff: webrtc/voice_engine/channel_proxy.h

Issue 1491743004: Refactor WVoE DTMF handling #2 (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@wvoe_dtmf
Patch Set: rebase Created 5 years 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 unified diff | Download patch
« no previous file with comments | « webrtc/voice_engine/channel.cc ('k') | webrtc/voice_engine/channel_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 virtual void SetReceiveAbsoluteSenderTimeStatus(bool enable, int id); 44 virtual void SetReceiveAbsoluteSenderTimeStatus(bool enable, int id);
45 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id); 45 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id);
46 46
47 virtual CallStatistics GetRTCPStatistics() const; 47 virtual CallStatistics GetRTCPStatistics() const;
48 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; 48 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const;
49 virtual NetworkStatistics GetNetworkStatistics() const; 49 virtual NetworkStatistics GetNetworkStatistics() const;
50 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; 50 virtual AudioDecodingCallStats GetDecodingCallStatistics() const;
51 virtual int32_t GetSpeechOutputLevelFullRange() const; 51 virtual int32_t GetSpeechOutputLevelFullRange() const;
52 virtual uint32_t GetDelayEstimate() const; 52 virtual uint32_t GetDelayEstimate() const;
53 53
54 virtual bool SetSendTelephoneEventPayloadType(int payload_type);
55 virtual bool SendTelephoneEventOutband(uint8_t event, uint32_t duration_ms);
56
54 private: 57 private:
55 Channel* channel() const; 58 Channel* channel() const;
56 59
57 rtc::ThreadChecker thread_checker_; 60 rtc::ThreadChecker thread_checker_;
58 ChannelOwner channel_owner_; 61 ChannelOwner channel_owner_;
59 }; 62 };
60 } // namespace voe 63 } // namespace voe
61 } // namespace webrtc 64 } // namespace webrtc
62 65
63 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 66 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
OLDNEW
« no previous file with comments | « webrtc/voice_engine/channel.cc ('k') | webrtc/voice_engine/channel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698