orc: Update generated source files everywhere
[platform/upstream/gstreamer.git] / gst / adder / gstadderorc-dist.h
1
2 /* autogenerated from gstadderorc.orc */
3
4 #ifndef _GSTADDERORC_H_
5 #define _GSTADDERORC_H_
6
7 #include <glib.h>
8
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12
13 void gst_adder_orc_init (void);
14
15
16
17 #ifndef _ORC_INTEGER_TYPEDEFS_
18 #define _ORC_INTEGER_TYPEDEFS_
19 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
20 #include <stdint.h>
21 typedef int8_t orc_int8;
22 typedef int16_t orc_int16;
23 typedef int32_t orc_int32;
24 typedef int64_t orc_int64;
25 typedef uint8_t orc_uint8;
26 typedef uint16_t orc_uint16;
27 typedef uint32_t orc_uint32;
28 typedef uint64_t orc_uint64;
29 #elif defined(_MSC_VER)
30 typedef signed __int8 orc_int8;
31 typedef signed __int16 orc_int16;
32 typedef signed __int32 orc_int32;
33 typedef signed __int64 orc_int64;
34 typedef unsigned __int8 orc_uint8;
35 typedef unsigned __int16 orc_uint16;
36 typedef unsigned __int32 orc_uint32;
37 typedef unsigned __int64 orc_uint64;
38 #else
39 #include <limits.h>
40 typedef signed char orc_int8;
41 typedef short orc_int16;
42 typedef int orc_int32;
43 typedef unsigned char orc_uint8;
44 typedef unsigned short orc_uint16;
45 typedef unsigned int orc_uint32;
46 #if INT_MAX == LONG_MAX
47 typedef long long orc_int64;
48 typedef unsigned long long orc_uint64;
49 #else
50 typedef long orc_int64;
51 typedef unsigned long orc_uint64;
52 #endif
53 #endif
54 typedef union { orc_int16 i; orc_int8 x2[2]; } orc_union16;
55 typedef union { orc_int32 i; float f; orc_int16 x2[2]; orc_int8 x4[4]; } orc_union32;
56 typedef union { orc_int64 i; double f; orc_int32 x2[2]; orc_int16 x4[4]; } orc_union64;
57 #endif
58 void add_int32 (gint32 * d1, const gint32 * s1, int n);
59 void add_int16 (gint16 * d1, const gint16 * s1, int n);
60 void add_int8 (gint8 * d1, const gint8 * s1, int n);
61 void add_uint32 (guint32 * d1, const guint32 * s1, int n);
62 void add_uint16 (guint16 * d1, const guint16 * s1, int n);
63 void add_uint8 (guint8 * d1, const guint8 * s1, int n);
64 void add_float32 (float * d1, const float * s1, int n);
65
66 #ifdef __cplusplus
67 }
68 #endif
69
70 #endif
71