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

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: Fix NE issue for ARM. 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
« no previous file with comments | « media/base/sinc_resampler_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 02d9ca5e203a8440cdbb7111f785dee2934ed9a0..9603c2dbf28ebd7401aaf577422fdb068f28867d 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',
« no previous file with comments | « media/base/sinc_resampler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698