diff options
author | posciak@chromium.org <posciak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 17:02:02 +0000 |
---|---|---|
committer | posciak@chromium.org <posciak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 17:02:02 +0000 |
commit | c1e778cd581167d8cde4f1cc24fc78ef8c2fda8f (patch) | |
tree | d92a6b0299ade4b033e606a3f90c89e688ed5544 /content/content_common.gypi | |
parent | 1530fbc56b9567946c82457fd5537c969cfcd3da (diff) | |
download | chromium_src-c1e778cd581167d8cde4f1cc24fc78ef8c2fda8f.zip chromium_src-c1e778cd581167d8cde4f1cc24fc78ef8c2fda8f.tar.gz chromium_src-c1e778cd581167d8cde4f1cc24fc78ef8c2fda8f.tar.bz2 |
Add a H.264 parser for VAVDA.
VAVDA is the hardware video decode accelerator for Chrome on Linux
and ChromeOS for Intel CPUs (Sandy Bridge+).
This is the first part of a series, adding a bitstream parser
that will be used by VAVDA.
BUG=117062
TEST=unittests
Review URL: https://chromiumcodereview.appspot.com/9616040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136326 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_common.gypi')
-rw-r--r-- | content/content_common.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/content_common.gypi b/content/content_common.gypi index cb3156e..7a04117 100644 --- a/content/content_common.gypi +++ b/content/content_common.gypi @@ -389,6 +389,12 @@ ], }, }], + ['chromeos == 1', { + 'sources': [ + 'common/gpu/media/h264_parser.cc', + 'common/gpu/media/h264_parser.h', + ], + }], ['OS=="win"', { 'dependencies': [ '../media/media.gyp:media', |