diff options
author | mcasas <mcasas@chromium.org> | 2015-11-17 11:53:24 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-17 19:54:32 +0000 |
commit | 3255e7da75ec61125ddbb21f7fba0acf97a45bb7 (patch) | |
tree | e03361cf6ebc9912ff9eecbdd9f027cd675d4a6b /media/media.gyp | |
parent | 43d7d78afce408bab56dd3a47790de20ee1438ec (diff) | |
download | chromium_src-3255e7da75ec61125ddbb21f7fba0acf97a45bb7.zip chromium_src-3255e7da75ec61125ddbb21f7fba0acf97a45bb7.tar.gz chromium_src-3255e7da75ec61125ddbb21f7fba0acf97a45bb7.tar.bz2 |
Media: Use libyuv::I420Copy instead of Copy{Y,U,V,A}Plane() in unittests
Because the former are as fast as the latter (mempcy) and
usually faster. This CL is the last in its row, and removes
the last uses of the said Copy functions, which only affects
unit tests, and which are then removed. Incidentally it also
removes MakeOpaqueAPlane() since it's unused.
BUG=554196
TEST= all media_unittests passing, but in particular:
./out/Debug/media_unittests --gtest_filter='Pipeline**.*'
and
./out/Debug/media_unittests --gtest_filter='Sk*Video*.*'
Review URL: https://codereview.chromium.org/1449293002
Cr-Commit-Position: refs/heads/master@{#360135}
Diffstat (limited to 'media/media.gyp')
-rw-r--r-- | media/media.gyp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/media/media.gyp b/media/media.gyp index d0c3f78..c5cc228 100644 --- a/media/media.gyp +++ b/media/media.gyp @@ -1187,6 +1187,7 @@ '../skia/skia.gyp:skia', '../testing/gmock.gyp:gmock', '../testing/gtest.gyp:gtest', + '../third_party/libyuv/libyuv.gyp:libyuv', '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', '../ui/gfx/gfx.gyp:gfx', '../ui/gfx/gfx.gyp:gfx_geometry', |