| 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 | 66 |
| 67 virtual CallStatistics GetRTCPStatistics() const; | 67 virtual CallStatistics GetRTCPStatistics() const; |
| 68 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; | 68 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; |
| 69 virtual NetworkStatistics GetNetworkStatistics() const; | 69 virtual NetworkStatistics GetNetworkStatistics() const; |
| 70 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; | 70 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; |
| 71 virtual int32_t GetSpeechOutputLevelFullRange() const; | 71 virtual int32_t GetSpeechOutputLevelFullRange() const; |
| 72 virtual uint32_t GetDelayEstimate() const; | 72 virtual uint32_t GetDelayEstimate() const; |
| 73 | 73 |
| 74 virtual bool SetSendTelephoneEventPayloadType(int payload_type); | 74 virtual bool SetSendTelephoneEventPayloadType(int payload_type); |
| 75 virtual bool SendTelephoneEventOutband(int event, int duration_ms); | 75 virtual bool SendTelephoneEventOutband(int event, int duration_ms); |
| 76 virtual void SetBitrate(int bitrate_bps); |
| 76 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink); | 77 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink); |
| 77 virtual void SetInputMute(bool muted); | 78 virtual void SetInputMute(bool muted); |
| 78 | 79 |
| 79 virtual void RegisterExternalTransport(Transport* transport); | 80 virtual void RegisterExternalTransport(Transport* transport); |
| 80 virtual void DeRegisterExternalTransport(); | 81 virtual void DeRegisterExternalTransport(); |
| 81 virtual bool ReceivedRTPPacket(const uint8_t* packet, | 82 virtual bool ReceivedRTPPacket(const uint8_t* packet, |
| 82 size_t length, | 83 size_t length, |
| 83 const PacketTime& packet_time); | 84 const PacketTime& packet_time); |
| 84 virtual bool ReceivedRTCPPacket(const uint8_t* packet, size_t length); | 85 virtual bool ReceivedRTCPPacket(const uint8_t* packet, size_t length); |
| 85 | 86 |
| 86 virtual const rtc::scoped_refptr<AudioDecoderFactory>& | 87 virtual const rtc::scoped_refptr<AudioDecoderFactory>& |
| 87 GetAudioDecoderFactory() const; | 88 GetAudioDecoderFactory() const; |
| 88 | 89 |
| 89 virtual void SetChannelOutputVolumeScaling(float scaling); | 90 virtual void SetChannelOutputVolumeScaling(float scaling); |
| 90 | 91 |
| 91 virtual void SetRtcEventLog(RtcEventLog* event_log); | 92 virtual void SetRtcEventLog(RtcEventLog* event_log); |
| 92 | 93 |
| 93 private: | 94 private: |
| 94 Channel* channel() const; | 95 Channel* channel() const; |
| 95 | 96 |
| 96 rtc::ThreadChecker thread_checker_; | 97 rtc::ThreadChecker thread_checker_; |
| 97 ChannelOwner channel_owner_; | 98 ChannelOwner channel_owner_; |
| 98 | 99 |
| 99 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); | 100 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); |
| 100 }; | 101 }; |
| 101 } // namespace voe | 102 } // namespace voe |
| 102 } // namespace webrtc | 103 } // namespace webrtc |
| 103 | 104 |
| 104 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ | 105 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
| OLD | NEW |