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