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

Unified Diff: media/base/wall_clock_time_source.h

Issue 379343005: Introduce media::TimeSource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Timesource Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/time_source.h ('k') | media/base/wall_clock_time_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/wall_clock_time_source.h
diff --git a/media/base/wall_clock_time_source.h b/media/base/wall_clock_time_source.h
new file mode 100644
index 0000000000000000000000000000000000000000..9f97a5c056b7ec606bf129e1937850379fc6cd32
--- /dev/null
+++ b/media/base/wall_clock_time_source.h
@@ -0,0 +1,49 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
+#define MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "media/base/media_export.h"
+#include "media/base/time_source.h"
+
+namespace base {
+class TickClock;
+}
+
+namespace media {
+
+// A time source that uses interpolation based on the system clock.
+class MEDIA_EXPORT WallClockTimeSource : public TimeSource {
+ public:
+ WallClockTimeSource();
+ virtual ~WallClockTimeSource();
+
+ // TimeSource implementation.
+ virtual void StartTicking() OVERRIDE;
+ virtual void StopTicking() OVERRIDE;
+ virtual void SetPlaybackRate(float playback_rate) OVERRIDE;
+ virtual void SetMediaTime(base::TimeDelta time) OVERRIDE;
+ virtual base::TimeDelta CurrentMediaTime() OVERRIDE;
+
+ void SetTickClockForTesting(scoped_ptr<base::TickClock> tick_clock);
+
+ private:
+ scoped_ptr<base::TickClock> tick_clock_;
+ bool ticking_;
+
+ // While ticking we can interpolate the current media time by measuring the
+ // delta between our reference ticks and the current system ticks and scaling
+ // that time by the playback rate.
+ float playback_rate_;
+ base::TimeDelta base_time_;
+ base::TimeTicks reference_wall_ticks_;
+
+ DISALLOW_COPY_AND_ASSIGN(WallClockTimeSource);
+};
+
+} // namespace media
+
+#endif // MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
« no previous file with comments | « media/base/time_source.h ('k') | media/base/wall_clock_time_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698