diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-28 20:36:37 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-28 20:36:37 +0000 |
commit | 46564213965397d01fb87975f3bddd597985fcbf (patch) | |
tree | 346f9cf4005fcb9865196622f13462065f52a83f /media/media.gyp | |
parent | c2972193bd0d0c2354d0862444b7ce4662d52d77 (diff) | |
download | chromium_src-46564213965397d01fb87975f3bddd597985fcbf.zip chromium_src-46564213965397d01fb87975f3bddd597985fcbf.tar.gz chromium_src-46564213965397d01fb87975f3bddd597985fcbf.tar.bz2 |
Implemented a proper clock for audio/video synchronization.
More or less a change to pull out time management from PipelineImpl into a new class ClockImpl. Biggest difference is ClockImpl will use the system clock + linear interpolation to provide a more "precise" representation of the current playback position.
BUG=16508
TEST=a/v sync should remain the same, currentTime should report more precise values
Review URL: http://codereview.chromium.org/159517
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21882 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/media.gyp')
-rw-r--r-- | media/media.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/media/media.gyp b/media/media.gyp index 2c8e963..f725862 100644 --- a/media/media.gyp +++ b/media/media.gyp @@ -51,6 +51,9 @@ 'base/buffer_queue.h', 'base/buffer_queue.cc', 'base/buffers.h', + 'base/clock.h', + 'base/clock_impl.cc', + 'base/clock_impl.h', 'base/data_buffer.cc', 'base/data_buffer.h', 'base/factory.h', @@ -154,6 +157,7 @@ 'audio/simple_sources_unittest.cc', 'audio/win/audio_output_win_unittest.cc', 'base/buffer_queue_unittest.cc', + 'base/clock_impl_unittest.cc', 'base/data_buffer_unittest.cc', 'base/mock_ffmpeg.cc', 'base/mock_ffmpeg.h', |