| 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> |
| 11 #include <list> | 11 #include <list> |
| 12 #include <map> | 12 #include <map> |
| 13 #include <memory> | 13 #include <memory> |
| 14 #include <sstream> | 14 #include <sstream> |
| 15 #include <string> | 15 #include <string> |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "webrtc/test/gtest.h" |
| 19 | 19 |
| 20 #include "webrtc/base/checks.h" | 20 #include "webrtc/base/checks.h" |
| 21 #include "webrtc/base/event.h" | 21 #include "webrtc/base/event.h" |
| 22 #include "webrtc/base/file.h" | 22 #include "webrtc/base/file.h" |
| 23 #include "webrtc/base/optional.h" | 23 #include "webrtc/base/optional.h" |
| 24 #include "webrtc/base/rate_limiter.h" | 24 #include "webrtc/base/rate_limiter.h" |
| 25 #include "webrtc/call.h" | 25 #include "webrtc/call.h" |
| 26 #include "webrtc/call/transport_adapter.h" | 26 #include "webrtc/call/transport_adapter.h" |
| 27 #include "webrtc/common_video/include/frame_callback.h" | 27 #include "webrtc/common_video/include/frame_callback.h" |
| 28 #include "webrtc/modules/include/module_common_types.h" | 28 #include "webrtc/modules/include/module_common_types.h" |
| (...skipping 3817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3846 std::unique_ptr<VideoEncoder> encoder_; | 3846 std::unique_ptr<VideoEncoder> encoder_; |
| 3847 std::unique_ptr<VideoDecoder> decoder_; | 3847 std::unique_ptr<VideoDecoder> decoder_; |
| 3848 rtc::CriticalSection crit_; | 3848 rtc::CriticalSection crit_; |
| 3849 int recorded_frames_ GUARDED_BY(crit_); | 3849 int recorded_frames_ GUARDED_BY(crit_); |
| 3850 } test(this); | 3850 } test(this); |
| 3851 | 3851 |
| 3852 RunBaseTest(&test); | 3852 RunBaseTest(&test); |
| 3853 } | 3853 } |
| 3854 | 3854 |
| 3855 } // namespace webrtc | 3855 } // namespace webrtc |
| OLD | NEW |