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 12 matching lines...) Expand all Loading... |
23 #include <memory> | 23 #include <memory> |
24 #include <string> | 24 #include <string> |
25 #include <vector> | 25 #include <vector> |
26 | 26 |
27 #include "webrtc/api/video/video_frame.h" | 27 #include "webrtc/api/video/video_frame.h" |
28 #include "webrtc/base/buffer.h" | 28 #include "webrtc/base/buffer.h" |
29 #include "webrtc/call/audio_receive_stream.h" | 29 #include "webrtc/call/audio_receive_stream.h" |
30 #include "webrtc/call/audio_send_stream.h" | 30 #include "webrtc/call/audio_send_stream.h" |
31 #include "webrtc/call/call.h" | 31 #include "webrtc/call/call.h" |
32 #include "webrtc/call/flexfec_receive_stream.h" | 32 #include "webrtc/call/flexfec_receive_stream.h" |
| 33 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" |
33 #include "webrtc/video_receive_stream.h" | 34 #include "webrtc/video_receive_stream.h" |
34 #include "webrtc/video_send_stream.h" | 35 #include "webrtc/video_send_stream.h" |
35 | 36 |
36 namespace cricket { | 37 namespace cricket { |
37 class FakeAudioSendStream final : public webrtc::AudioSendStream { | 38 class FakeAudioSendStream final : public webrtc::AudioSendStream { |
38 public: | 39 public: |
39 struct TelephoneEvent { | 40 struct TelephoneEvent { |
40 int payload_type = -1; | 41 int payload_type = -1; |
41 int payload_frequency = -1; | 42 int payload_frequency = -1; |
42 int event_code = 0; | 43 int event_code = 0; |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 | 192 |
192 bool IsReceiving() const; | 193 bool IsReceiving() const; |
193 | 194 |
194 void InjectFrame(const webrtc::VideoFrame& frame); | 195 void InjectFrame(const webrtc::VideoFrame& frame); |
195 | 196 |
196 void SetStats(const webrtc::VideoReceiveStream::Stats& stats); | 197 void SetStats(const webrtc::VideoReceiveStream::Stats& stats); |
197 | 198 |
198 void EnableEncodedFrameRecording(rtc::PlatformFile file, | 199 void EnableEncodedFrameRecording(rtc::PlatformFile file, |
199 size_t byte_limit) override; | 200 size_t byte_limit) override; |
200 | 201 |
| 202 void AddSecondarySink(webrtc::RtpPacketSinkInterface* sink) override; |
| 203 void RemoveSecondarySink(const webrtc::RtpPacketSinkInterface* sink) override; |
| 204 |
201 private: | 205 private: |
202 // webrtc::VideoReceiveStream implementation. | 206 // webrtc::VideoReceiveStream implementation. |
203 void Start() override; | 207 void Start() override; |
204 void Stop() override; | 208 void Stop() override; |
205 | 209 |
206 webrtc::VideoReceiveStream::Stats GetStats() const override; | 210 webrtc::VideoReceiveStream::Stats GetStats() const override; |
207 | 211 |
208 webrtc::VideoReceiveStream::Config config_; | 212 webrtc::VideoReceiveStream::Config config_; |
209 bool receiving_; | 213 bool receiving_; |
210 webrtc::VideoReceiveStream::Stats stats_; | 214 webrtc::VideoReceiveStream::Stats stats_; |
211 }; | 215 }; |
212 | 216 |
213 class FakeFlexfecReceiveStream final : public webrtc::FlexfecReceiveStream { | 217 class FakeFlexfecReceiveStream final : public webrtc::FlexfecReceiveStream { |
214 public: | 218 public: |
215 explicit FakeFlexfecReceiveStream( | 219 explicit FakeFlexfecReceiveStream( |
216 const webrtc::FlexfecReceiveStream::Config& config); | 220 const webrtc::FlexfecReceiveStream::Config& config); |
217 | 221 |
218 const webrtc::FlexfecReceiveStream::Config& GetConfig() const override; | 222 const webrtc::FlexfecReceiveStream::Config& GetConfig() const override; |
219 | 223 |
220 private: | 224 private: |
221 // webrtc::FlexfecReceiveStream implementation. | 225 // webrtc::FlexfecReceiveStream implementation. |
222 void Start() override; | 226 void Start() override; |
223 void Stop() override; | 227 void Stop() override; |
224 | 228 |
225 webrtc::FlexfecReceiveStream::Stats GetStats() const override; | 229 webrtc::FlexfecReceiveStream::Stats GetStats() const override; |
226 | 230 |
| 231 void OnRtpPacket(const webrtc::RtpPacketReceived& packet) override; |
| 232 |
227 webrtc::FlexfecReceiveStream::Config config_; | 233 webrtc::FlexfecReceiveStream::Config config_; |
228 bool receiving_; | 234 bool receiving_; |
229 }; | 235 }; |
230 | 236 |
231 class FakeCall final : public webrtc::Call, public webrtc::PacketReceiver { | 237 class FakeCall final : public webrtc::Call, public webrtc::PacketReceiver { |
232 public: | 238 public: |
233 explicit FakeCall(const webrtc::Call::Config& config); | 239 explicit FakeCall(const webrtc::Call::Config& config); |
234 ~FakeCall() override; | 240 ~FakeCall() override; |
235 | 241 |
236 webrtc::Call::Config GetConfig() const; | 242 webrtc::Call::Config GetConfig() const; |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 | 324 |
319 int num_created_send_streams_; | 325 int num_created_send_streams_; |
320 int num_created_receive_streams_; | 326 int num_created_receive_streams_; |
321 | 327 |
322 int audio_transport_overhead_; | 328 int audio_transport_overhead_; |
323 int video_transport_overhead_; | 329 int video_transport_overhead_; |
324 }; | 330 }; |
325 | 331 |
326 } // namespace cricket | 332 } // namespace cricket |
327 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ | 333 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ |
OLD | NEW |