diff options
author | fbarchard@chromium.org <fbarchard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-21 02:35:40 +0000 |
---|---|---|
committer | fbarchard@chromium.org <fbarchard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-21 02:35:40 +0000 |
commit | 987e8ea5a57099fcfefa3cbbc0f0c37b2e32b94e (patch) | |
tree | 579fa1b624f305099f54811ed73325b178f70d21 /media/media.gyp | |
parent | d083ddaf522be8dd710c9820c03aecb314f108a2 (diff) | |
download | chromium_src-987e8ea5a57099fcfefa3cbbc0f0c37b2e32b94e.zip chromium_src-987e8ea5a57099fcfefa3cbbc0f0c37b2e32b94e.tar.gz chromium_src-987e8ea5a57099fcfefa3cbbc0f0c37b2e32b94e.tar.bz2 |
qt-faststart is a tool that moves the 'moov' to the start of file, reducing startup latency.
This version handles 'free' atoms, which are produced by mp4box and other tools, but impact ffmpeg seeks on playback.
The code follows ffmpeg coding standards.
BUG=17304
TEST=instrument seeks or measure latency performance and play videos with and without qt-faststart applied to the data.
Review URL: http://codereview.chromium.org/149439
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21150 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/media.gyp')
-rw-r--r-- | media/media.gyp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/media/media.gyp b/media/media.gyp index 989d16b..0d5821f 100644 --- a/media/media.gyp +++ b/media/media.gyp @@ -210,6 +210,13 @@ 'tools/wav_ola_test.cc' ], }, + { + 'target_name': 'qt_faststart', + 'type': 'executable', + 'sources': [ + 'tools/qt-faststart.c' + ], + }, ], 'conditions': [ ['OS=="win"', { |