OLD | NEW |
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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 SmoothEventSampler smoothing_sampler_; | 98 SmoothEventSampler smoothing_sampler_; |
99 AnimatedContentSampler content_sampler_; | 99 AnimatedContentSampler content_sampler_; |
100 | 100 |
101 // Recent history of frame timestamps proposed by VideoCaptureOracle. This is | 101 // Recent history of frame timestamps proposed by VideoCaptureOracle. This is |
102 // a ring-buffer, and should only be accessed by the Get/SetFrameTimestamp() | 102 // a ring-buffer, and should only be accessed by the Get/SetFrameTimestamp() |
103 // methods. | 103 // methods. |
104 enum { kMaxFrameTimestamps = 16 }; | 104 enum { kMaxFrameTimestamps = 16 }; |
105 base::TimeTicks frame_timestamps_[kMaxFrameTimestamps]; | 105 base::TimeTicks frame_timestamps_[kMaxFrameTimestamps]; |
106 }; | 106 }; |
107 | 107 |
108 } // namespace content | 108 } // namespace media |
109 | 109 |
110 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_ | 110 #endif // MEDIA_CAPTURE_VIDEO_CAPTURE_ORACLE_H_ |
OLD | NEW |