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

Side by Side Diff: third_party/openmax_dl/dl/dl.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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
2 #
3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8
9 {
10 'variables' : {
11 # Override this value to build with small float FFT tables
12 'big_float_fft%' : 1,
13 },
14 'targets': [
15 {
16 'target_name': 'openmax_dl',
17 'type': 'static_library',
18 'include_dirs': [
19 '../',
20 ],
21 'sources': [
22 'api/armCOMM_s.h',
23 'api/armOMX.h',
24 'api/omxtypes.h',
25 'api/omxtypes_s.h',
26 'sp/api/armSP.h',
27 'sp/api/omxSP.h',
28 # Complex 32-bit fixed-point FFT.
29 'sp/src/armSP_FFT_S32TwiddleTable.c',
30 'sp/src/omxSP_FFTGetBufSize_C_SC32.c',
31 'sp/src/omxSP_FFTInit_C_SC32.c',
32 'sp/src/armSP_FFT_CToC_SC32_Radix2_fs_unsafe_s.S',
33 'sp/src/armSP_FFT_CToC_SC32_Radix2_ls_unsafe_s.S',
34 'sp/src/armSP_FFT_CToC_SC32_Radix2_fs_unsafe_s.S',
35 'sp/src/armSP_FFT_CToC_SC32_Radix4_fs_unsafe_s.S',
36 'sp/src/armSP_FFT_CToC_SC32_Radix4_ls_unsafe_s.S',
37 'sp/src/armSP_FFT_CToC_SC32_Radix2_unsafe_s.S',
38 'sp/src/armSP_FFT_CToC_SC32_Radix4_unsafe_s.S',
39 'sp/src/armSP_FFT_CToC_SC32_Radix8_fs_unsafe_s.S',
40 'sp/src/omxSP_FFTInv_CToC_SC32_Sfs_s.S',
41 'sp/src/omxSP_FFTFwd_CToC_SC32_Sfs_s.S',
42 # Real 32-bit fixed-point FFT
43 'sp/src/armSP_FFTInv_CCSToR_S32_preTwiddleRadix2_unsafe_s.S',
44 'sp/src/omxSP_FFTFwd_RToCCS_S32_Sfs_s.S',
45 'sp/src/omxSP_FFTGetBufSize_R_S32.c',
46 'sp/src/omxSP_FFTInit_R_S32.c',
47 'sp/src/omxSP_FFTInv_CCSToR_S32_Sfs_s.S',
48 # Complex 16-bit fixed-point FFT
49 'sp/src/omxSP_FFTInit_C_SC16.c',
50 'sp/src/omxSP_FFTGetBufSize_C_SC16.c',
51 'sp/src/armSP_FFT_CToC_SC16_Radix2_fs_unsafe_s.S',
52 'sp/src/armSP_FFT_CToC_SC16_Radix2_ls_unsafe_s.S',
53 'sp/src/armSP_FFT_CToC_SC16_Radix2_ps_unsafe_s.S',
54 'sp/src/armSP_FFT_CToC_SC16_Radix2_unsafe_s.S',
55 'sp/src/armSP_FFT_CToC_SC16_Radix4_fs_unsafe_s.S',
56 'sp/src/armSP_FFT_CToC_SC16_Radix4_ls_unsafe_s.S',
57 'sp/src/armSP_FFT_CToC_SC16_Radix4_unsafe_s.S',
58 'sp/src/armSP_FFT_CToC_SC16_Radix8_fs_unsafe_s.S',
59 'sp/src/omxSP_FFTFwd_CToC_SC16_Sfs_s.S',
60 'sp/src/omxSP_FFTInv_CToC_SC16_Sfs_s.S',
61 # Real 16-bit fixed-point FFT
62 'sp/src/omxSP_FFTFwd_RToCCS_S16S32_Sfs_s.S',
63 'sp/src/omxSP_FFTGetBufSize_R_S16S32.c',
64 'sp/src/omxSP_FFTInit_R_S16S32.c',
65 'sp/src/omxSP_FFTInv_CCSToR_S32S16_Sfs_s.S',
66 # Complex floating-point FFT
67 'sp/src/armSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S',
68 'sp/src/armSP_FFT_CToC_FC32_Radix2_ls_unsafe_s.S',
69 'sp/src/armSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S',
70 'sp/src/armSP_FFT_CToC_FC32_Radix4_fs_unsafe_s.S',
71 'sp/src/armSP_FFT_CToC_FC32_Radix4_ls_unsafe_s.S',
72 'sp/src/armSP_FFT_CToC_FC32_Radix2_unsafe_s.S',
73 'sp/src/armSP_FFT_CToC_FC32_Radix4_unsafe_s.S',
74 'sp/src/armSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S',
75 'sp/src/armSP_FFT_F32TwiddleTable.c',
76 'sp/src/omxSP_FFTGetBufSize_C_FC32.c',
77 'sp/src/omxSP_FFTInit_C_FC32.c',
78 'sp/src/omxSP_FFTInv_CToC_FC32_Sfs_s.S',
79 'sp/src/omxSP_FFTFwd_CToC_FC32_Sfs_s.S',
80 # Real floating-point FFT
81 'sp/src/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S',
82 'sp/src/omxSP_FFTFwd_RToCCS_F32_Sfs_s.S',
83 'sp/src/omxSP_FFTGetBufSize_R_F32.c',
84 'sp/src/omxSP_FFTInit_R_F32.c',
85 'sp/src/omxSP_FFTInv_CCSToR_F32_Sfs_s.S',
86 ],
87 'conditions' : [
88 ['big_float_fft == 1', {
89 'defines': [
90 'BIG_FFT_TABLE',
91 ],
92 }],
93 ],
94 }]
95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698