| 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 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include <list> | 23 #include <list> |
| 24 #include <memory> | 24 #include <memory> |
| 25 #include <string> | 25 #include <string> |
| 26 #include <vector> | 26 #include <vector> |
| 27 | 27 |
| 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/video_frame.h" | 33 #include "webrtc/video_frame.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; |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 | 303 |
| 303 int num_created_send_streams_; | 304 int num_created_send_streams_; |
| 304 int num_created_receive_streams_; | 305 int num_created_receive_streams_; |
| 305 | 306 |
| 306 int audio_transport_overhead_; | 307 int audio_transport_overhead_; |
| 307 int video_transport_overhead_; | 308 int video_transport_overhead_; |
| 308 }; | 309 }; |
| 309 | 310 |
| 310 } // namespace cricket | 311 } // namespace cricket |
| 311 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ | 312 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ |
| OLD | NEW |