OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VideoCaptureOracle
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/content/browser/renderer_host/media/
video_capture_oracle.h
54
//
VideoCaptureOracle
manages the producer-side throttling of captured frames
58
class CONTENT_EXPORT
VideoCaptureOracle
{
66
VideoCaptureOracle
(base::TimeDelta capture_period,
68
virtual ~
VideoCaptureOracle
() {}
video_capture_oracle.cc
26
VideoCaptureOracle
::
VideoCaptureOracle
(base::TimeDelta capture_period,
35
bool
VideoCaptureOracle
::ObserveEventAndDecideCapture(
51
int
VideoCaptureOracle
::RecordCapture() {
56
bool
VideoCaptureOracle
::CompleteCapture(int frame_number,
video_capture_device_impl.h
39
// Thread-safe, refcounted proxy to the
VideoCaptureOracle
. This proxy wraps
40
// the
VideoCaptureOracle
, which decides which frames to capture, and a
47
scoped_ptr<
VideoCaptureOracle
> oracle,
57
bool ObserveEventAndDecideCapture(
VideoCaptureOracle
::Event event,
93
const scoped_ptr<
VideoCaptureOracle
> oracle_;
video_capture_device_impl.cc
47
scoped_ptr<
VideoCaptureOracle
> oracle,
64
VideoCaptureOracle
::Event event,
78
(event ==
VideoCaptureOracle
::kCompositorUpdate ||
79
event ==
VideoCaptureOracle
::kSoftwarePaint);
81
(event ==
VideoCaptureOracle
::kTimerPoll ? "poll" :
82
(event ==
VideoCaptureOracle
::kCompositorUpdate ? "gpu" :
217
scoped_ptr<
VideoCaptureOracle
> oracle(
218
new
VideoCaptureOracle
(capture_period,
web_contents_video_capture_device.cc
115
FrameSubscriber(
VideoCaptureOracle
::Event event_type,
127
const
VideoCaptureOracle
::Event event_type_;
349
paint_subscriber_(
VideoCaptureOracle
::kSoftwarePaint, oracle_proxy),
350
timer_subscriber_(
VideoCaptureOracle
::kTimerPoll, oracle_proxy),
362
new FrameSubscriber(
VideoCaptureOracle
::kCompositorUpdate,
desktop_capture_device_aura.cc
256
const
VideoCaptureOracle
::Event event =
257
dirty ?
VideoCaptureOracle
::kCompositorUpdate
258
:
VideoCaptureOracle
::kTimerPoll;
Completed in 579 milliseconds