Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1271)

Unified Diff: media/media.gyp

Issue 10960023: Add ARM NEON intrinsic optimizations for SincResampler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 6996ca1e78d14bd9fc70a6cee496d3383ce29d2d..32eb251522bdbd12919bbaccbe1b053340eea1e3 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -327,6 +327,11 @@
],
},
'conditions': [
+ ['arm_neon == 1', {
+ 'defines': [
+ 'USE_NEON'
+ ],
+ }],
['OS != "ios"', {
'dependencies': [
'../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
@@ -648,6 +653,11 @@
'webm/webm_parser_unittest.cc',
],
'conditions': [
+ ['arm_neon == 1', {
+ 'defines': [
+ 'USE_NEON'
+ ],
+ }],
['OS != "ios"', {
'dependencies': [
'shared_memory_support',
« media/base/sinc_resampler_unittest.cc ('K') | « media/base/sinc_resampler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698