Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 4719e01

Browse files
Backed out changeset 1ada6df926ba (bug 926838)
1 parent db887fe commit 4719e01

2 files changed

Lines changed: 12 additions & 621 deletions

File tree

media/openmax_dl/dl/api/omxtypes.h

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,6 @@
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 */
209194
typedef float OMX_F32; /** Single precision floating point,IEEE 754 */
210195

196+
211197
/* OMX_F64 */
212198
typedef 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 */
231202
typedef 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_ */

0 commit comments

Comments
 (0)