Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: webrtc/test/frame_generator_capturer.cc

Issue 3007553002: Removing dependencies on stub headers within WebRTC. (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/rtc_base/criticalsection.h" 16 #include "webrtc/rtc_base/criticalsection.h"
17 #include "webrtc/rtc_base/logging.h" 17 #include "webrtc/rtc_base/logging.h"
18 #include "webrtc/rtc_base/platform_thread.h" 18 #include "webrtc/rtc_base/platform_thread.h"
19 #include "webrtc/rtc_base/task_queue.h" 19 #include "webrtc/rtc_base/task_queue.h"
20 #include "webrtc/rtc_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/call/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.
31 InsertFrameTask( 31 InsertFrameTask(
32 webrtc::test::FrameGeneratorCapturer* frame_generator_capturer, 32 webrtc::test::FrameGeneratorCapturer* frame_generator_capturer,
33 uint32_t repeat_interval_ms) 33 uint32_t repeat_interval_ms)
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/include/video_codec_initializer.h ('k') | webrtc/test/rtp_rtcp_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698