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 #ifndef WEBRTC_TEST_FRAME_GENERATOR_CAPTURER_H_ | 10 #ifndef WEBRTC_TEST_FRAME_GENERATOR_CAPTURER_H_ |
11 #define WEBRTC_TEST_FRAME_GENERATOR_CAPTURER_H_ | 11 #define WEBRTC_TEST_FRAME_GENERATOR_CAPTURER_H_ |
12 | 12 |
13 #include <memory> | 13 #include <memory> |
14 #include <string> | 14 #include <string> |
15 | 15 |
| 16 #include "webrtc/api/video/video_frame.h" |
16 #include "webrtc/base/criticalsection.h" | 17 #include "webrtc/base/criticalsection.h" |
17 #include "webrtc/base/platform_thread.h" | 18 #include "webrtc/base/platform_thread.h" |
18 #include "webrtc/common_video/rotation.h" | |
19 #include "webrtc/test/video_capturer.h" | 19 #include "webrtc/test/video_capturer.h" |
20 #include "webrtc/typedefs.h" | 20 #include "webrtc/typedefs.h" |
21 #include "webrtc/video_frame.h" | |
22 | 21 |
23 namespace webrtc { | 22 namespace webrtc { |
24 | 23 |
25 class CriticalSectionWrapper; | 24 class CriticalSectionWrapper; |
26 class EventTimerWrapper; | 25 class EventTimerWrapper; |
27 | 26 |
28 namespace test { | 27 namespace test { |
29 | 28 |
30 class FrameGenerator; | 29 class FrameGenerator; |
31 | 30 |
(...skipping 58 matching lines...) Loading... |
90 | 89 |
91 int target_fps_; | 90 int target_fps_; |
92 VideoRotation fake_rotation_ = kVideoRotation_0; | 91 VideoRotation fake_rotation_ = kVideoRotation_0; |
93 | 92 |
94 int64_t first_frame_capture_time_; | 93 int64_t first_frame_capture_time_; |
95 }; | 94 }; |
96 } // test | 95 } // test |
97 } // webrtc | 96 } // webrtc |
98 | 97 |
99 #endif // WEBRTC_TEST_FRAME_GENERATOR_CAPTURER_H_ | 98 #endif // WEBRTC_TEST_FRAME_GENERATOR_CAPTURER_H_ |
OLD | NEW |