Release 1.1.1
[platform/upstream/gstreamer.git] / gst-libs / gst / video / video-orc-dist.h
1
2 /* autogenerated from video-orc.orc */
3
4 #ifndef _VIDEO_ORC_H_
5 #define _VIDEO_ORC_H_
6
7 #include <glib.h>
8
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12
13
14
15 #ifndef _ORC_INTEGER_TYPEDEFS_
16 #define _ORC_INTEGER_TYPEDEFS_
17 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
18 #include <stdint.h>
19 typedef int8_t orc_int8;
20 typedef int16_t orc_int16;
21 typedef int32_t orc_int32;
22 typedef int64_t orc_int64;
23 typedef uint8_t orc_uint8;
24 typedef uint16_t orc_uint16;
25 typedef uint32_t orc_uint32;
26 typedef uint64_t orc_uint64;
27 #define ORC_UINT64_C(x) UINT64_C(x)
28 #elif defined(_MSC_VER)
29 typedef signed __int8 orc_int8;
30 typedef signed __int16 orc_int16;
31 typedef signed __int32 orc_int32;
32 typedef signed __int64 orc_int64;
33 typedef unsigned __int8 orc_uint8;
34 typedef unsigned __int16 orc_uint16;
35 typedef unsigned __int32 orc_uint32;
36 typedef unsigned __int64 orc_uint64;
37 #define ORC_UINT64_C(x) (x##Ui64)
38 #define inline __inline
39 #else
40 #include <limits.h>
41 typedef signed char orc_int8;
42 typedef short orc_int16;
43 typedef int orc_int32;
44 typedef unsigned char orc_uint8;
45 typedef unsigned short orc_uint16;
46 typedef unsigned int orc_uint32;
47 #if INT_MAX == LONG_MAX
48 typedef long long orc_int64;
49 typedef unsigned long long orc_uint64;
50 #define ORC_UINT64_C(x) (x##ULL)
51 #else
52 typedef long orc_int64;
53 typedef unsigned long orc_uint64;
54 #define ORC_UINT64_C(x) (x##UL)
55 #endif
56 #endif
57 typedef union { orc_int16 i; orc_int8 x2[2]; } orc_union16;
58 typedef union { orc_int32 i; float f; orc_int16 x2[2]; orc_int8 x4[4]; } orc_union32;
59 typedef union { orc_int64 i; double f; orc_int32 x2[2]; float x2f[2]; orc_int16 x4[4]; } orc_union64;
60 #endif
61 #ifndef ORC_RESTRICT
62 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
63 #define ORC_RESTRICT restrict
64 #elif defined(__GNUC__) && __GNUC__ >= 4
65 #define ORC_RESTRICT __restrict__
66 #else
67 #define ORC_RESTRICT
68 #endif
69 #endif
70
71 #ifndef ORC_INTERNAL
72 #if defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
73 #define ORC_INTERNAL __attribute__((visibility("hidden")))
74 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
75 #define ORC_INTERNAL __hidden
76 #elif defined (__GNUC__)
77 #define ORC_INTERNAL __attribute__((visibility("hidden")))
78 #else
79 #define ORC_INTERNAL
80 #endif
81 #endif
82
83 void video_orc_blend_little (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
84 void video_orc_blend_big (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
85 void video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n);
86 void video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n);
87 void video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
88 void video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
89 void video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
90 void video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
91 void video_orc_unpack_YVYU (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
92 void video_orc_pack_YVYU (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
93 void video_orc_unpack_YUV9 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n);
94 void video_orc_unpack_Y42B (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n);
95 void video_orc_pack_Y42B (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n);
96 void video_orc_unpack_Y444 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n);
97 void video_orc_pack_Y444 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n);
98 void video_orc_unpack_GRAY8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
99 void video_orc_pack_GRAY8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
100 void video_orc_unpack_BGRA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
101 void video_orc_pack_BGRA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
102 void video_orc_pack_RGBA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
103 void video_orc_unpack_RGBA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
104 void video_orc_unpack_ABGR (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
105 void video_orc_pack_ABGR (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
106 void video_orc_unpack_NV12 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n);
107 void video_orc_pack_NV12 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
108 void video_orc_unpack_NV21 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n);
109 void video_orc_pack_NV21 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
110 void video_orc_unpack_A420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, int n);
111 void video_orc_pack_A420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3, guint8 * ORC_RESTRICT d4, const guint8 * ORC_RESTRICT s1, int n);
112 void video_orc_resample_bilinear_u32 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int p1, int p2, int n);
113 void video_orc_merge_linear_u8 (orc_uint8 * ORC_RESTRICT d1, const orc_uint8 * ORC_RESTRICT s1, const orc_uint8 * ORC_RESTRICT s2, int p1, int n);
114
115 #ifdef __cplusplus
116 }
117 #endif
118
119 #endif
120