| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" | 31 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" |
| 32 #include "webrtc/modules/include/module_common_types.h" | 32 #include "webrtc/modules/include/module_common_types.h" |
| 33 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" | 33 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
| 34 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 34 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
| 35 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h" | 35 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h" |
| 36 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h" | 36 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h" |
| 37 #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" | 37 #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" |
| 38 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 38 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
| 39 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" | 39 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" |
| 40 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 40 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
| 41 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h" | 41 #include "webrtc/media/engine/simulcast_encoder_adapter.h" |
| 42 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" | 42 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" |
| 43 #include "webrtc/modules/video_coding/include/video_coding_defines.h" | 43 #include "webrtc/modules/video_coding/include/video_coding_defines.h" |
| 44 #include "webrtc/system_wrappers/include/metrics.h" | 44 #include "webrtc/system_wrappers/include/metrics.h" |
| 45 #include "webrtc/system_wrappers/include/metrics_default.h" | 45 #include "webrtc/system_wrappers/include/metrics_default.h" |
| 46 #include "webrtc/system_wrappers/include/sleep.h" | 46 #include "webrtc/system_wrappers/include/sleep.h" |
| 47 #include "webrtc/test/call_test.h" | 47 #include "webrtc/test/call_test.h" |
| 48 #include "webrtc/test/direct_transport.h" | 48 #include "webrtc/test/direct_transport.h" |
| 49 #include "webrtc/test/encoder_settings.h" | 49 #include "webrtc/test/encoder_settings.h" |
| 50 #include "webrtc/test/fake_decoder.h" | 50 #include "webrtc/test/fake_decoder.h" |
| 51 #include "webrtc/test/fake_encoder.h" | 51 #include "webrtc/test/fake_encoder.h" |
| (...skipping 4650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4702 std::unique_ptr<VideoEncoder> encoder_; | 4702 std::unique_ptr<VideoEncoder> encoder_; |
| 4703 std::unique_ptr<VideoDecoder> decoder_; | 4703 std::unique_ptr<VideoDecoder> decoder_; |
| 4704 rtc::CriticalSection crit_; | 4704 rtc::CriticalSection crit_; |
| 4705 int recorded_frames_ GUARDED_BY(crit_); | 4705 int recorded_frames_ GUARDED_BY(crit_); |
| 4706 } test(this); | 4706 } test(this); |
| 4707 | 4707 |
| 4708 RunBaseTest(&test); | 4708 RunBaseTest(&test); |
| 4709 } | 4709 } |
| 4710 | 4710 |
| 4711 } // namespace webrtc | 4711 } // namespace webrtc |
| OLD | NEW |