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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 TransportFeedbackObserver* transport_feedback_observer, | 66 TransportFeedbackObserver* transport_feedback_observer, |
67 PacketRouter* packet_router, | 67 PacketRouter* packet_router, |
68 RtcpBandwidthObserver* bandwidth_observer); | 68 RtcpBandwidthObserver* bandwidth_observer); |
69 virtual void RegisterReceiverCongestionControlObjects( | 69 virtual void RegisterReceiverCongestionControlObjects( |
70 PacketRouter* packet_router); | 70 PacketRouter* packet_router); |
71 virtual void ResetCongestionControlObjects(); | 71 virtual void ResetCongestionControlObjects(); |
72 virtual CallStatistics GetRTCPStatistics() const; | 72 virtual CallStatistics GetRTCPStatistics() const; |
73 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; | 73 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; |
74 virtual NetworkStatistics GetNetworkStatistics() const; | 74 virtual NetworkStatistics GetNetworkStatistics() const; |
75 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; | 75 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; |
76 virtual int32_t GetSpeechOutputLevel() const; | 76 virtual int GetSpeechOutputLevel() const; |
77 virtual int32_t GetSpeechOutputLevelFullRange() const; | 77 virtual int GetSpeechOutputLevelFullRange() const; |
78 virtual uint32_t GetDelayEstimate() const; | 78 virtual uint32_t GetDelayEstimate() const; |
79 virtual bool SetSendTelephoneEventPayloadType(int payload_type, | 79 virtual bool SetSendTelephoneEventPayloadType(int payload_type, |
80 int payload_frequency); | 80 int payload_frequency); |
81 virtual bool SendTelephoneEventOutband(int event, int duration_ms); | 81 virtual bool SendTelephoneEventOutband(int event, int duration_ms); |
82 virtual void SetBitrate(int bitrate_bps, int64_t probing_interval_ms); | 82 virtual void SetBitrate(int bitrate_bps, int64_t probing_interval_ms); |
83 virtual void SetRecPayloadType(int payload_type, | 83 virtual void SetRecPayloadType(int payload_type, |
84 const SdpAudioFormat& format); | 84 const SdpAudioFormat& format); |
85 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink); | 85 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink); |
86 virtual void SetInputMute(bool muted); | 86 virtual void SetInputMute(bool muted); |
87 virtual void RegisterExternalTransport(Transport* transport); | 87 virtual void RegisterExternalTransport(Transport* transport); |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 rtc::RaceChecker audio_thread_race_checker_; | 133 rtc::RaceChecker audio_thread_race_checker_; |
134 rtc::RaceChecker video_capture_thread_race_checker_; | 134 rtc::RaceChecker video_capture_thread_race_checker_; |
135 ChannelOwner channel_owner_; | 135 ChannelOwner channel_owner_; |
136 | 136 |
137 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); | 137 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); |
138 }; | 138 }; |
139 } // namespace voe | 139 } // namespace voe |
140 } // namespace webrtc | 140 } // namespace webrtc |
141 | 141 |
142 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ | 142 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
OLD | NEW |