| Index: webrtc/voice_engine/channel_proxy.cc
|
| diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
|
| index dc01c9b627558e852ca4d817f6a436b3c44350e3..ba58502e956c4e3105545b9d2bfd939862f42ecf 100644
|
| --- a/webrtc/voice_engine/channel_proxy.cc
|
| +++ b/webrtc/voice_engine/channel_proxy.cc
|
| @@ -214,10 +214,11 @@ void ChannelProxy::SetRtcEventLog(RtcEventLog* event_log) {
|
| channel()->SetRtcEventLog(event_log);
|
| }
|
|
|
| -AudioMixer::Source::AudioFrameWithInfo ChannelProxy::GetAudioFrameWithInfo(
|
| - int sample_rate_hz) {
|
| +AudioMixer::Source::AudioFrameInfo ChannelProxy::GetAudioFrameWithInfo(
|
| + int sample_rate_hz,
|
| + AudioFrame* audio_frame) {
|
| RTC_DCHECK_RUNS_SERIALIZED(&race_checker_);
|
| - return channel()->GetAudioFrameWithInfo(sample_rate_hz);
|
| + return channel()->GetAudioFrameWithInfo(sample_rate_hz, audio_frame);
|
| }
|
|
|
| Channel* ChannelProxy::channel() const {
|
|
|