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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 if (packet_time.timestamp >= 0) | 265 if (packet_time.timestamp >= 0) |
266 arrival_time_ms = (packet_time.timestamp + 500) / 1000; | 266 arrival_time_ms = (packet_time.timestamp + 500) / 1000; |
267 size_t payload_size = length - header.headerLength; | 267 size_t payload_size = length - header.headerLength; |
268 remote_bitrate_estimator_->IncomingPacket(arrival_time_ms, payload_size, | 268 remote_bitrate_estimator_->IncomingPacket(arrival_time_ms, payload_size, |
269 header); | 269 header); |
270 } | 270 } |
271 | 271 |
272 return channel_proxy_->ReceivedRTPPacket(packet, length, packet_time); | 272 return channel_proxy_->ReceivedRTPPacket(packet, length, packet_time); |
273 } | 273 } |
274 | 274 |
| 275 AudioMixer::Source::AudioFrameWithInfo |
| 276 AudioReceiveStream::GetAudioFrameWithInfo(int sample_rate_hz) { |
| 277 return channel_proxy_->GetAudioFrameWithInfo(sample_rate_hz); |
| 278 } |
| 279 |
| 280 int AudioReceiveStream::ssrc() { |
| 281 return config_.rtp.local_ssrc; |
| 282 } |
| 283 |
275 VoiceEngine* AudioReceiveStream::voice_engine() const { | 284 VoiceEngine* AudioReceiveStream::voice_engine() const { |
276 internal::AudioState* audio_state = | 285 internal::AudioState* audio_state = |
277 static_cast<internal::AudioState*>(audio_state_.get()); | 286 static_cast<internal::AudioState*>(audio_state_.get()); |
278 VoiceEngine* voice_engine = audio_state->voice_engine(); | 287 VoiceEngine* voice_engine = audio_state->voice_engine(); |
279 RTC_DCHECK(voice_engine); | 288 RTC_DCHECK(voice_engine); |
280 return voice_engine; | 289 return voice_engine; |
281 } | 290 } |
282 } // namespace internal | 291 } // namespace internal |
283 } // namespace webrtc | 292 } // namespace webrtc |
OLD | NEW |