This repository was archived by the owner on Jul 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535
3636#include <limits.h>
3737
38- #ifdef __cplusplus
39- extern "C" {
40- #endif
41-
42- /*
43- * Maximum FFT order supported by the twiddle table. Only used by the
44- * float FFT routines. Must be consistent with the table in
45- * armSP_FFT_F32TwiddleTable.c.
46- */
47- #ifdef BIG_FFT_TABLE
48- #define TWIDDLE_TABLE_ORDER 15
49- #else
50- #define TWIDDLE_TABLE_ORDER 12
51- #endif
52-
5338#define OMX_IN
5439#define OMX_OUT
5540#define OMX_INOUT
@@ -208,24 +193,10 @@ typedef struct
208193/* OMX_F32 */
209194typedef float OMX_F32 ; /** Single precision floating point,IEEE 754 */
210195
196+
211197/* OMX_F64 */
212198typedef double OMX_F64 ; /** Double precision floating point,IEEE 754 */
213199
214- /* OMX_FC32 */
215- typedef struct
216- {
217- OMX_F32 Re ; /** Real part */
218- OMX_F32 Im ; /** Imaginary part */
219-
220- } OMX_FC32 ; /** single precision floating point complex number */
221-
222- /* OMX_FC64 */
223- typedef struct
224- {
225- OMX_F64 Re ; /** Real part */
226- OMX_F64 Im ; /** Imaginary part */
227-
228- } OMX_FC64 ; /** double precision floating point complex number */
229200
230201/* OMX_INT */
231202typedef int OMX_INT ; /** signed integer corresponding to machine word length, has maximum signed value INT_MAX*/
@@ -280,7 +251,4 @@ typedef struct
280251
281252} OMXSize ;
282253
283- #ifdef __cplusplus
284- }
285- #endif
286254#endif /* _OMXTYPES_H_ */
You can’t perform that action at this time.
0 commit comments