| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 webrtc::VideoSendStream::Config config, | 258 webrtc::VideoSendStream::Config config, |
| 259 webrtc::VideoEncoderConfig encoder_config) override; | 259 webrtc::VideoEncoderConfig encoder_config) override; |
| 260 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override; | 260 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override; |
| 261 | 261 |
| 262 webrtc::VideoReceiveStream* CreateVideoReceiveStream( | 262 webrtc::VideoReceiveStream* CreateVideoReceiveStream( |
| 263 webrtc::VideoReceiveStream::Config config) override; | 263 webrtc::VideoReceiveStream::Config config) override; |
| 264 void DestroyVideoReceiveStream( | 264 void DestroyVideoReceiveStream( |
| 265 webrtc::VideoReceiveStream* receive_stream) override; | 265 webrtc::VideoReceiveStream* receive_stream) override; |
| 266 | 266 |
| 267 webrtc::FlexfecReceiveStream* CreateFlexfecReceiveStream( | 267 webrtc::FlexfecReceiveStream* CreateFlexfecReceiveStream( |
| 268 webrtc::FlexfecReceiveStream::Config config) override; | 268 const webrtc::FlexfecReceiveStream::Config& config) override; |
| 269 void DestroyFlexfecReceiveStream( | 269 void DestroyFlexfecReceiveStream( |
| 270 webrtc::FlexfecReceiveStream* receive_stream) override; | 270 webrtc::FlexfecReceiveStream* receive_stream) override; |
| 271 | 271 |
| 272 webrtc::PacketReceiver* Receiver() override; | 272 webrtc::PacketReceiver* Receiver() override; |
| 273 | 273 |
| 274 DeliveryStatus DeliverPacket(webrtc::MediaType media_type, | 274 DeliveryStatus DeliverPacket(webrtc::MediaType media_type, |
| 275 const uint8_t* packet, | 275 const uint8_t* packet, |
| 276 size_t length, | 276 size_t length, |
| 277 const webrtc::PacketTime& packet_time) override; | 277 const webrtc::PacketTime& packet_time) override; |
| 278 | 278 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 302 | 302 |
| 303 int num_created_send_streams_; | 303 int num_created_send_streams_; |
| 304 int num_created_receive_streams_; | 304 int num_created_receive_streams_; |
| 305 | 305 |
| 306 int audio_transport_overhead_; | 306 int audio_transport_overhead_; |
| 307 int video_transport_overhead_; | 307 int video_transport_overhead_; |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 } // namespace cricket | 310 } // namespace cricket |
| 311 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ | 311 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ |
| OLD | NEW |