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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink); | 74 virtual void SetSink(std::unique_ptr<AudioSinkInterface> sink); |
75 | 75 |
76 virtual void RegisterExternalTransport(Transport* transport); | 76 virtual void RegisterExternalTransport(Transport* transport); |
77 virtual void DeRegisterExternalTransport(); | 77 virtual void DeRegisterExternalTransport(); |
78 virtual bool ReceivedRTPPacket(const uint8_t* packet, | 78 virtual bool ReceivedRTPPacket(const uint8_t* packet, |
79 size_t length, | 79 size_t length, |
80 const PacketTime& packet_time); | 80 const PacketTime& packet_time); |
81 virtual bool ReceivedRTCPPacket(const uint8_t* packet, size_t length); | 81 virtual bool ReceivedRTCPPacket(const uint8_t* packet, size_t length); |
82 | 82 |
83 virtual const rtc::scoped_refptr<AudioDecoderFactory>& | 83 virtual const rtc::scoped_refptr<AudioDecoderFactory>& |
84 GetAudioDecoderFactory() const; | 84 GetAudioDecoderFactory() const; |
| 85 |
| 86 virtual void SetChannelOutputVolumeScaling(float scaling); |
85 | 87 |
86 private: | 88 private: |
87 Channel* channel() const; | 89 Channel* channel() const; |
88 | 90 |
89 rtc::ThreadChecker thread_checker_; | 91 rtc::ThreadChecker thread_checker_; |
90 ChannelOwner channel_owner_; | 92 ChannelOwner channel_owner_; |
91 | 93 |
92 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); | 94 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); |
93 }; | 95 }; |
94 } // namespace voe | 96 } // namespace voe |
95 } // namespace webrtc | 97 } // namespace webrtc |
96 | 98 |
97 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ | 99 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
OLD | NEW |