OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |