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 | 10 |
11 #include "webrtc/test/frame_generator_capturer.h" | 11 #include "webrtc/test/frame_generator_capturer.h" |
12 | 12 |
13 #include <utility> | 13 #include <utility> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "webrtc/base/criticalsection.h" | 16 #include "webrtc/rtc_base/criticalsection.h" |
17 #include "webrtc/base/logging.h" | 17 #include "webrtc/rtc_base/logging.h" |
18 #include "webrtc/base/platform_thread.h" | 18 #include "webrtc/rtc_base/platform_thread.h" |
19 #include "webrtc/base/task_queue.h" | 19 #include "webrtc/rtc_base/task_queue.h" |
20 #include "webrtc/base/timeutils.h" | 20 #include "webrtc/rtc_base/timeutils.h" |
21 #include "webrtc/system_wrappers/include/clock.h" | 21 #include "webrtc/system_wrappers/include/clock.h" |
22 #include "webrtc/test/frame_generator.h" | 22 #include "webrtc/test/frame_generator.h" |
23 #include "webrtc/video_send_stream.h" | 23 #include "webrtc/video_send_stream.h" |
24 | 24 |
25 namespace webrtc { | 25 namespace webrtc { |
26 namespace test { | 26 namespace test { |
27 | 27 |
28 class FrameGeneratorCapturer::InsertFrameTask : public rtc::QueuedTask { | 28 class FrameGeneratorCapturer::InsertFrameTask : public rtc::QueuedTask { |
29 public: | 29 public: |
30 // Repeats in |repeat_interval_ms|. One-time if |repeat_interval_ms| == 0. | 30 // Repeats in |repeat_interval_ms|. One-time if |repeat_interval_ms| == 0. |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 | 234 |
235 int FrameGeneratorCapturer::GetCurrentConfiguredFramerate() { | 235 int FrameGeneratorCapturer::GetCurrentConfiguredFramerate() { |
236 rtc::CritScope cs(&lock_); | 236 rtc::CritScope cs(&lock_); |
237 if (wanted_fps_ && *wanted_fps_ < target_fps_) | 237 if (wanted_fps_ && *wanted_fps_ < target_fps_) |
238 return *wanted_fps_; | 238 return *wanted_fps_; |
239 return target_fps_; | 239 return target_fps_; |
240 } | 240 } |
241 | 241 |
242 } // namespace test | 242 } // namespace test |
243 } // namespace webrtc | 243 } // namespace webrtc |
OLD | NEW |