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

Unified Diff: third_party/openmax_dl/dl/sp/src/test/test_fft.gyp

Issue 12317152: Add openmax dl routines for review. MUST NOT BE LANDED (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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: third_party/openmax_dl/dl/sp/src/test/test_fft.gyp
diff --git a/third_party/openmax_dl/dl/sp/src/test/test_fft.gyp b/third_party/openmax_dl/dl/sp/src/test/test_fft.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..99b3774324f9a084210e12aa737700ee9bc9d72c
--- /dev/null
+++ b/third_party/openmax_dl/dl/sp/src/test/test_fft.gyp
@@ -0,0 +1,116 @@
+# Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
+#
+# Use of this source code is governed by a BSD-style license
+# that can be found in the LICENSE file in the root of the source
+# tree. An additional intellectual property rights grant can be found
+# in the file PATENTS. All contributing project authors may
+# be found in the AUTHORS file in the root of the source tree.
+
+{
+ 'variables' : {
+ # Override this value to build with small float FFT tables
+ 'big_float_fft%' : 1,
+ },
+ 'target_defaults': {
+ 'include_dirs': [
+ '../../../../',
+ ],
+ 'dependencies' : [
+ '../../../dl.gyp:openmax_dl',
+ 'test_utilities'
+ ],
+ 'conditions': [
+ ['big_float_fft == 1', {
+ 'defines': [
+ 'BIG_FFT_TABLE',
+ ],
+ }],
+ ],
+ },
+ 'targets': [
+ {
+ # Test utilities
+ 'target_name': 'test_utilities',
+ 'type' : '<(component)',
+ 'dependencies!' : [
+ 'test_utilities'
+ ],
+ 'sources' : [
+ 'aligned_ptr.c',
+ 'compare.c',
+ 'gensig.c',
+ 'test_util.c',
+ ],
+ },
+ {
+ # Test complex fixed-point 16-bit FFT
+ 'target_name': 'test_fft16',
+ 'type': 'executable',
+ 'sources': [
+ 'test_fft16.c',
+ ],
+ },
+ {
+ # Test complex fixed-point 32-bit FFT
+ 'target_name': 'test_fft32',
+ 'type': 'executable',
+ 'sources': [
+ 'test_fft32.c',
+ ],
+ },
+ {
+ # Test real 32-bit fixed-point FFT
+ 'target_name': 'test_rfft32',
+ 'type': 'executable',
+ 'sources': [
+ 'test_rfft32.c',
+ ],
+ },
+ {
+ # Test real 16-bit fixed-point FFT
+ 'target_name': 'test_rfft16',
+ 'type': 'executable',
+ 'sources': [
+ 'test_rfft16.c',
+ ],
+ },
+ {
+ # Test complex floating-point FFT
+ 'target_name': 'test_float_fft',
+ 'type': 'executable',
+ 'sources': [
+ 'test_float_fft.c',
+ ],
+ },
+ {
+ # Test real floating-point FFT
+ 'target_name': 'test_float_rfft',
+ 'type': 'executable',
+ 'sources': [
+ 'test_float_rfft.c',
+ ],
+ },
+ {
+ # Simple timing test of FFTs
+ 'target_name': 'test_fft_time',
+ 'type': 'executable',
+ 'sources': [
+ 'test_fft_time.c',
+ ],
+ },
+ {
+ # Build all test programs.
+ 'target_name': 'All',
+ 'type': 'none',
+ 'dependencies': [
+ 'test_fft16',
+ 'test_fft32',
+ 'test_float_fft',
+ 'test_float_rfft',
+ 'test_rfft16',
+ 'test_rfft32',
+ 'test_fft_time',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698