diff options
Diffstat (limited to 'media/capture/content/video_capture_oracle.h')
-rw-r--r-- | media/capture/content/video_capture_oracle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media/capture/content/video_capture_oracle.h b/media/capture/content/video_capture_oracle.h index 6a23973..9f2f173 100644 --- a/media/capture/content/video_capture_oracle.h +++ b/media/capture/content/video_capture_oracle.h @@ -11,7 +11,7 @@ #include "media/base/media_export.h" #include "media/capture/content/animated_content_sampler.h" #include "media/capture/content/capture_resolution_chooser.h" -#include "media/capture/content/feedback_signal_accumulator.h" +#include "media/capture/content/feedback_signal_accumulator.cc" #include "media/capture/content/smooth_event_sampler.h" #include "ui/gfx/geometry/rect.h" @@ -182,13 +182,13 @@ class MEDIA_EXPORT VideoCaptureOracle { base::TimeTicks frame_timestamps_[kMaxFrameTimestamps]; // Recent average buffer pool utilization for capture. - FeedbackSignalAccumulator buffer_pool_utilization_; + FeedbackSignalAccumulator<base::TimeTicks> buffer_pool_utilization_; // Estimated maximum frame area that currently can be handled by the consumer, // in number of pixels per frame. This is used to adjust the capture size up // or down to a data volume the consumer can handle. Note that some consumers // do not provide feedback, and the analysis logic should account for that. - FeedbackSignalAccumulator estimated_capable_area_; + FeedbackSignalAccumulator<base::TimeTicks> estimated_capable_area_; // The time of the first analysis which concluded the end-to-end system was // under-utilized. If null, the system is not currently under-utilized. This |