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

Side by Side Diff: media/capture/video_capture_oracle.h

Issue 1162863003: Move ContentVideoCaptureDeviceCore from src/content to src/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error Created 5 years, 6 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 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_ 5 #ifndef MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
6 #define CONTENT_BROWSER_MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_ 6 #define MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 #include "content/browser/media/capture/animated_content_sampler.h" 11 #include "media/base/media_export.h"
12 #include "content/browser/media/capture/smooth_event_sampler.h" 12 #include "media/capture/animated_content_sampler.h"
13 #include "content/common/content_export.h" 13 #include "media/capture/smooth_event_sampler.h"
14 #include "ui/gfx/geometry/rect.h" 14 #include "ui/gfx/geometry/rect.h"
15 15
16 namespace content { 16 namespace media {
17 17
18 // VideoCaptureOracle manages the producer-side throttling of captured frames 18 // VideoCaptureOracle manages the producer-side throttling of captured frames
19 // from a video capture device. It is informed of every update by the device; 19 // from a video capture device. It is informed of every update by the device;
20 // this empowers it to look into the future and decide if a particular frame 20 // this empowers it to look into the future and decide if a particular frame
21 // ought to be captured in order to achieve its target frame rate. 21 // ought to be captured in order to achieve its target frame rate.
22 class CONTENT_EXPORT VideoCaptureOracle { 22 class MEDIA_EXPORT VideoCaptureOracle {
23 public: 23 public:
24 enum Event { 24 enum Event {
25 kTimerPoll, 25 kTimerPoll,
26 kCompositorUpdate, 26 kCompositorUpdate,
27 kNumEvents, 27 kNumEvents,
28 }; 28 };
29 29
30 enum { 30 enum {
31 // The recommended minimum amount of time between calls to 31 // The recommended minimum amount of time between calls to
32 // ObserveEventAndDecideCapture() for the kTimerPoll Event type. Anything 32 // ObserveEventAndDecideCapture() for the kTimerPoll Event type. Anything
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 SmoothEventSampler smoothing_sampler_; 95 SmoothEventSampler smoothing_sampler_;
96 AnimatedContentSampler content_sampler_; 96 AnimatedContentSampler content_sampler_;
97 97
98 // Recent history of frame timestamps proposed by VideoCaptureOracle. This is 98 // Recent history of frame timestamps proposed by VideoCaptureOracle. This is
99 // a ring-buffer, and should only be accessed by the Get/SetFrameTimestamp() 99 // a ring-buffer, and should only be accessed by the Get/SetFrameTimestamp()
100 // methods. 100 // methods.
101 enum { kMaxFrameTimestamps = 16 }; 101 enum { kMaxFrameTimestamps = 16 };
102 base::TimeTicks frame_timestamps_[kMaxFrameTimestamps]; 102 base::TimeTicks frame_timestamps_[kMaxFrameTimestamps];
103 }; 103 };
104 104
105 } // namespace content 105 } // namespace media
106 106
107 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_ 107 #endif // MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698