| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 int last_sent_nonnegative_packet_id() const { | 249 int last_sent_nonnegative_packet_id() const { |
| 250 return last_sent_nonnegative_packet_id_; | 250 return last_sent_nonnegative_packet_id_; |
| 251 } | 251 } |
| 252 | 252 |
| 253 webrtc::NetworkState GetNetworkState(webrtc::MediaType media) const; | 253 webrtc::NetworkState GetNetworkState(webrtc::MediaType media) const; |
| 254 int GetNumCreatedSendStreams() const; | 254 int GetNumCreatedSendStreams() const; |
| 255 int GetNumCreatedReceiveStreams() const; | 255 int GetNumCreatedReceiveStreams() const; |
| 256 void SetStats(const webrtc::Call::Stats& stats); | 256 void SetStats(const webrtc::Call::Stats& stats); |
| 257 | 257 |
| 258 private: | 258 private: |
| 259 void SetVideoReceiveRtpHeaderExtensions( |
| 260 const std::vector<webrtc::RtpExtension>& extensions) override; |
| 259 webrtc::AudioSendStream* CreateAudioSendStream( | 261 webrtc::AudioSendStream* CreateAudioSendStream( |
| 260 const webrtc::AudioSendStream::Config& config) override; | 262 const webrtc::AudioSendStream::Config& config) override; |
| 261 void DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) override; | 263 void DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) override; |
| 262 | 264 |
| 263 webrtc::AudioReceiveStream* CreateAudioReceiveStream( | 265 webrtc::AudioReceiveStream* CreateAudioReceiveStream( |
| 264 const webrtc::AudioReceiveStream::Config& config) override; | 266 const webrtc::AudioReceiveStream::Config& config) override; |
| 265 void DestroyAudioReceiveStream( | 267 void DestroyAudioReceiveStream( |
| 266 webrtc::AudioReceiveStream* receive_stream) override; | 268 webrtc::AudioReceiveStream* receive_stream) override; |
| 267 | 269 |
| 268 webrtc::VideoSendStream* CreateVideoSendStream( | 270 webrtc::VideoSendStream* CreateVideoSendStream( |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 316 |
| 315 int num_created_send_streams_; | 317 int num_created_send_streams_; |
| 316 int num_created_receive_streams_; | 318 int num_created_receive_streams_; |
| 317 | 319 |
| 318 int audio_transport_overhead_; | 320 int audio_transport_overhead_; |
| 319 int video_transport_overhead_; | 321 int video_transport_overhead_; |
| 320 }; | 322 }; |
| 321 | 323 |
| 322 } // namespace cricket | 324 } // namespace cricket |
| 323 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ | 325 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ |
| OLD | NEW |