1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
6 #define MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "base/synchronization/lock.h"
10 #include "base/time/default_tick_clock.h"
11 #include "media/base/media_export.h"
12 #include "media/base/time_source.h"
16 // A time source that uses interpolation based on the system clock.
17 class MEDIA_EXPORT WallClockTimeSource
: public TimeSource
{
19 WallClockTimeSource();
20 ~WallClockTimeSource() override
;
22 // TimeSource implementation.
23 void StartTicking() override
;
24 void StopTicking() override
;
25 void SetPlaybackRate(double playback_rate
) override
;
26 void SetMediaTime(base::TimeDelta time
) override
;
27 base::TimeDelta
CurrentMediaTime() override
;
28 bool GetWallClockTimes(
29 const std::vector
<base::TimeDelta
>& media_timestamps
,
30 std::vector
<base::TimeTicks
>* wall_clock_times
) override
;
32 void set_tick_clock_for_testing(base::TickClock
* tick_clock
) {
33 tick_clock_
= tick_clock
;
37 base::TimeDelta
CurrentMediaTime_Locked();
39 // Allow for an injectable tick clock for testing.
40 base::DefaultTickClock default_tick_clock_
;
42 // If specified, used instead of |default_tick_clock_|.
43 base::TickClock
* tick_clock_
;
47 // While ticking we can interpolate the current media time by measuring the
48 // delta between our reference ticks and the current system ticks and scaling
49 // that time by the playback rate.
50 double playback_rate_
;
51 base::TimeDelta base_timestamp_
;
52 base::TimeTicks reference_time_
;
54 // TODO(scherkus): Remove internal locking from this class after access to
55 // Renderer::CurrentMediaTime() is single threaded http://crbug.com/370634
58 DISALLOW_COPY_AND_ASSIGN(WallClockTimeSource
);
63 #endif // MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_