Remove various unported plugins
[platform/upstream/gstreamer.git] / meson.build
1 project('gst-plugins-bad', 'c', 'cpp',
2   version : '1.11.0.1',
3   meson_version : '>= 0.36.0',
4   default_options : [ 'warning_level=1',
5                       'buildtype=debugoptimized' ])
6
7 gst_version = meson.project_version()
8 version_arr = gst_version.split('.')
9 gst_version_major = version_arr[0]
10 gst_version_minor = version_arr[1]
11 gst_version_micro = version_arr[2]
12 if version_arr.length() == 4
13   gst_version_nano = version_arr[3]
14 else
15   gst_version_nano = 0
16 endif
17
18 glib_req = '>= 2.40.0'
19 gst_req = '>= @0@.@1@.0'.format(gst_version_major, gst_version_minor)
20
21 api_version = '1.0'
22 soversion = 0
23 # maintaining compatibility with the previous libtool versioning
24 # current = minor * 100 + micro
25 libversion = '@0@.@1@.0'.format(soversion, gst_version_minor.to_int() * 100 + gst_version_micro.to_int())
26
27 plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir'))
28
29 cc = meson.get_compiler('c')
30 cxx = meson.get_compiler('cpp')
31
32 if cc.get_id() == 'msvc'
33   # Ignore several spurious warnings for things gstreamer does very commonly
34   # If a warning is completely useless and spammy, use '/wdXXXX' to suppress it
35   # If a warning is harmless but hard to fix, use '/woXXXX' so it's shown once
36   # NOTE: Only add warnings here if you are sure they're spurious
37   add_project_arguments(
38       '/wd4018', # implicit signed/unsigned conversion
39       '/wd4146', # unary minus on unsigned (beware INT_MIN)
40       '/wd4244', # lossy type conversion (e.g. double -> int)
41       '/wd4305', # truncating type conversion (e.g. double -> float)
42       language : 'c')
43   # Disable SAFESEH with MSVC for plugins and libs that use external deps that
44   # are built with MinGW
45   noseh_link_args = ['/SAFESEH:NO']
46 else
47   noseh_link_args = []
48 endif
49
50 cdata = configuration_data()
51 check_headers = [
52   ['HAVE_DLFCN_H', 'dlfcn.h'],
53   ['HAVE_FCNTL_H', 'fcntl.h'],
54   ['HAVE_HIGHGUI_H', 'highgui.h'],
55   ['HAVE_INTTYPES_H', 'inttypes.h'],
56   ['HAVE_MEMORY_H', 'memory.h'],
57   ['HAVE_MSACM_H', 'msacm.h'],
58   ['HAVE_NETINET_IN_H', 'netinet/in.h'],
59   ['HAVE_NETINET_IP_H', 'netinet/ip.h'],
60   ['HAVE_NETINET_TCP_H', 'netinet/tcp.h'],
61   ['HAVE_OPENCV2_HIGHGUI_HIGHGUI_C_H', 'opencv2/highgui/highgui_c.h'],
62   ['HAVE_PTHREAD_H', 'pthread.h'],
63   ['HAVE_STDINT_H', 'stdint.h'],
64   ['HAVE_STDLIB_H', 'stdlib.h'],
65   ['HAVE_STRINGS_H', 'strings.h'],
66   ['HAVE_STRING_H', 'string.h'],
67   ['HAVE_SYS_PARAM_H', 'sys/param.h'],
68   ['HAVE_SYS_SOCKET_H', 'sys/socket.h'],
69   ['HAVE_SYS_STAT_H', 'sys/stat.h'],
70   ['HAVE_SYS_TIME_H', 'sys/time.h'],
71   ['HAVE_SYS_TYPES_H', 'sys/types.h'],
72   ['HAVE_SYS_UTSNAME_H', 'sys/utsname.h'],
73   ['HAVE_UNISTD_H', 'unistd.h'],
74   ['HAVE_WINDOWS_H', 'windows.h'],
75   ['HAVE_WINSOCK2_H', 'winsock2.h'],
76   ['HAVE_WS2TCPIP_H', 'ws2tcpip.h'],
77 ]
78
79 foreach h : check_headers
80   if cc.has_header(h.get(1))
81     cdata.set(h.get(0), 1)
82   endif
83 endforeach
84
85 check_functions = [
86 # check token HAVE_ACM
87 # check token HAVE_ANDROID_MEDIA
88 # check token HAVE_APEXSINK
89 # check token HAVE_APPLE_MEDIA
90 # check token HAVE_ASSRENDER
91 # check token HAVE_AVC
92 # check token HAVE_AVFOUNDATION
93 # check token HAVE_BLUEZ
94 # check token HAVE_BZ2
95 # check token HAVE_CFLOCALECOPYCURRENT
96 # check token HAVE_CFPREFERENCESCOPYAPPVALUE
97 # check token HAVE_CHROMAPRINT
98 # check token HAVE_CPU_ALPHA
99 # check token HAVE_CPU_ARM
100 # check token HAVE_CPU_CRIS
101 # check token HAVE_CPU_CRISV32
102 # check token HAVE_CPU_HPPA
103 # check token HAVE_CPU_I386
104 # check token HAVE_CPU_IA64
105 # check token HAVE_CPU_M68K
106 # check token HAVE_CPU_MIPS
107 # check token HAVE_CPU_PPC
108 # check token HAVE_CPU_PPC64
109 # check token HAVE_CPU_S390
110 # check token HAVE_CPU_SPARC
111 # check token HAVE_CPU_X86_64
112 # check token HAVE_CURL
113 # check token HAVE_DAALA
114 # check token HAVE_DASH
115 # check token HAVE_DC1394
116   ['HAVE_DCGETTEXT', 'dcgettext'],
117 # check token HAVE_DECKLINK
118 # check token HAVE_DIRECT3D
119 # check token HAVE_DIRECTDRAW
120 # check token HAVE_DIRECTFB
121 # check token HAVE_DIRECTSOUND
122 # check token HAVE_DOWHILE_MACROS
123 # check token HAVE_DTS
124 # check token HAVE_DVB
125 # check token HAVE_EXPERIMENTAL
126 # check token HAVE_EXTERNAL
127 # check token HAVE_FAAC
128 # check token HAVE_FAAD
129 # check token HAVE_FBDEV
130 # check token HAVE_FLITE
131 # check token HAVE_FLUIDSYNTH
132   ['HAVE_GETPAGESIZE', 'getpagesize'],
133 # check token HAVE_GETTEXT
134 # check token HAVE_GL
135 # check token HAVE_GLCHAR
136 # check token HAVE_GLEGLIMAGEOES
137 # check token HAVE_GLINTPTR
138 # check token HAVE_GLSIZEIPTR
139 # check token HAVE_GME
140   ['HAVE_GMTIME_R', 'gmtime_r'],
141 # check token HAVE_GRAPHENE
142 # check token HAVE_GSETTINGS
143 # check token HAVE_GSM
144 # check token HAVE_GUDEV
145 # check token HAVE_HLS
146 # check token HAVE_ICONV
147 # check token HAVE_IOS
148 # check token HAVE_JPEG
149 # check token HAVE_KATE
150 # check token HAVE_LADSPA
151 # check token HAVE_LIBGCRYPT
152 # check token HAVE_LIBGME_ACCURACY
153 # check token HAVE_LIBMMS
154 # check token HAVE_LIBNSL
155 # check token HAVE_LIBSOCKET
156 # check token HAVE_LIBUSB
157 # check token HAVE_LIBVISUAL
158 # check token HAVE_LINSYS
159 # check token HAVE_LRDF
160 # check token HAVE_LV2
161 # check token HAVE_MIMIC
162   ['HAVE_MMAP', 'mmap'],
163 # check token HAVE_MODPLUG
164 # check token HAVE_MPEG2ENC
165 # check token HAVE_MPG123
166 # check token HAVE_MPLEX
167 # check token HAVE_MUSEPACK
168 # check token HAVE_MYTHTV
169 # check token HAVE_NAS
170 # check token HAVE_NEON
171 # check token HAVE_NETTLE
172 # check token HAVE_OFA
173 # check token HAVE_OPENAL
174 # check token HAVE_OPENCV
175 # check token HAVE_OPENEXR
176 # check token HAVE_OPENJPEG
177 # check token HAVE_OPENJPEG_1
178 # check token HAVE_OPENNI2
179 # check token HAVE_OPENSLES
180 # check token HAVE_OPUS
181 # check token HAVE_ORC
182 # check token HAVE_OSX
183 # check token HAVE_OSX_VIDEO
184 # check token HAVE_PNG
185 # check token HAVE_PVR
186 # check token HAVE_QUICKTIME
187 # check token HAVE_RDTSC
188 # check token HAVE_RESINDVD
189 # check token HAVE_RSVG
190 # check token HAVE_RSVG_2_36_2
191 # check token HAVE_RTMP
192 # check token HAVE_SBC
193 # check token HAVE_SCHRO
194 # check token HAVE_SDL
195 # check token HAVE_SHM
196 # check token HAVE_SMOOTHSTREAMING
197 # check token HAVE_SNDFILE
198 # check token HAVE_SNDIO
199 # check token HAVE_SOUNDTOUCH
200 # check token HAVE_SOUNDTOUCH_1_4
201 # check token HAVE_SPANDSP
202 # check token HAVE_SPC
203 # check token HAVE_SRTP
204 # check token HAVE_SSH2
205 # check token HAVE_TELETEXTDEC
206 # check token HAVE_TIGER
207 # check token HAVE_TIMIDITY
208 # check token HAVE_UVCH264
209 # check token HAVE_VALGRIND
210 # check token HAVE_VCD
211 # check token HAVE_VDPAU
212 # check token HAVE_VIDEOTOOLBOX
213 # check token HAVE_VIDEOTOOLBOX_10_9_6
214 # check token HAVE_VOAACENC
215 # check token HAVE_VOAMRWBENC
216 # check token HAVE_WASAPI
217 # check token HAVE_WAYLAND
218 # check token HAVE_WEBP
219 # check token HAVE_WILDMIDI
220 # check token HAVE_WILDMIDI_0_2_2
221 # check token HAVE_WIN32
222 # check token HAVE_WININET
223 # check token HAVE_WINKS
224 # check token HAVE_WINSCREENCAP
225 # check token HAVE_XVID
226 # check token HAVE_ZBAR
227 ]
228
229 foreach f : check_functions
230   if cc.has_function(f.get(1))
231     cdata.set(f.get(0), 1)
232   endif
233 endforeach
234
235 cdata.set('SIZEOF_CHAR', cc.sizeof('char'))
236 cdata.set('SIZEOF_INT', cc.sizeof('int'))
237 cdata.set('SIZEOF_LONG', cc.sizeof('long'))
238 cdata.set('SIZEOF_SHORT', cc.sizeof('short'))
239 cdata.set('SIZEOF_VOIDP', cc.sizeof('void*'))
240
241 cdata.set('VERSION', '"@0@"'.format(gst_version))
242 cdata.set('PACKAGE', '"gst-plugins-bad"')
243 cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
244 cdata.set('PACKAGE_BUGREPORT', '"http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer"')
245 cdata.set('PACKAGE_NAME', '"GStreamer Bad Plug-ins"')
246 cdata.set('GETTEXT_PACKAGE', '"gst-plugins-bad-1.0"')
247 cdata.set('GST_API_VERSION', '"@0@"'.format(api_version))
248 cdata.set('GST_PACKAGE_NAME', '"GStreamer Bad Plug-ins"')
249 cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"')
250 cdata.set('GST_LICENSE', '"LGPL"')
251 cdata.set('LIBDIR', '"@0@"'.format(get_option('libdir')))
252
253 # FIXME: This should be exposed as a configuration option
254 host_system = host_machine.system()
255 if host_system == 'linux'
256   cdata.set('DEFAULT_VIDEOSRC', '"v4l2src"')
257 elif host_system == 'osx'
258   cdata.set('DEFAULT_VIDEOSRC', '"avfvideosrc"')
259 else
260   cdata.set('DEFAULT_VIDEOSRC', '"videotestsrc"')
261 endif
262
263 # Mandatory GST deps
264 gst_dep = dependency('gstreamer-1.0', version : gst_req,
265   fallback : ['gstreamer', 'gst_dep'])
266 gstbase_dep = dependency('gstreamer-base-1.0', version : gst_req,
267   fallback : ['gstreamer', 'gst_base_dep'])
268 gstnet_dep = dependency('gstreamer-net-1.0', version : gst_req,
269   fallback : ['gstreamer', 'gst_net_dep'])
270 gstcontroller_dep = dependency('gstreamer-controller-1.0', version : gst_req,
271   fallback : ['gstreamer', 'gst_controller_dep'])
272
273 gstpbutils_dep = dependency('gstreamer-pbutils-1.0', version : gst_req,
274     fallback : ['gst-plugins-base', 'pbutils_dep'])
275 gstallocators_dep = dependency('gstreamer-allocators-1.0', version : gst_req,
276     fallback : ['gst-plugins-base', 'allocators_dep'])
277 gstapp_dep = dependency('gstreamer-app-1.0', version : gst_req,
278     fallback : ['gst-plugins-base', 'app_dep'])
279 gstaudio_dep = dependency('gstreamer-audio-1.0', version : gst_req,
280     fallback : ['gst-plugins-base', 'audio_dep'])
281 gstfft_dep = dependency('gstreamer-fft-1.0', version : gst_req,
282     fallback : ['gst-plugins-base', 'fft_dep'])
283 gstriff_dep = dependency('gstreamer-riff-1.0', version : gst_req,
284     fallback : ['gst-plugins-base', 'riff_dep'])
285 gstrtp_dep = dependency('gstreamer-rtp-1.0', version : gst_req,
286     fallback : ['gst-plugins-base', 'rtp_dep'])
287 gstrtsp_dep = dependency('gstreamer-rtsp-1.0', version : gst_req,
288     fallback : ['gst-plugins-base', 'rtsp_dep'])
289 gstsdp_dep = dependency('gstreamer-sdp-1.0', version : gst_req,
290     fallback : ['gst-plugins-base', 'sdp_dep'])
291 gsttag_dep = dependency('gstreamer-tag-1.0', version : gst_req,
292     fallback : ['gst-plugins-base', 'tag_dep'])
293 gstvideo_dep = dependency('gstreamer-video-1.0', version : gst_req,
294     fallback : ['gst-plugins-base', 'video_dep'])
295
296 libm = cc.find_library('m', required : false)
297 glib_dep = dependency('glib-2.0', version : glib_req)
298 gio_dep = dependency('gio-2.0', version : glib_req)
299 gmodule_dep = dependency('gmodule-2.0', version : glib_req)
300 x11_dep = dependency('x11', required : false)
301 # Used by dtls and hls
302 openssl_dep = dependency('openssl', version : '>= 1.0.1', required : false)
303
304 if x11_dep.found()
305   cdata.set('HAVE_X11', 1)
306 endif
307
308 mathlib = cc.find_library('m', required : false)
309
310 if host_machine.system() == 'windows'
311   winsock2 = [cc.find_library('ws2_32')]
312 else
313   winsock2 = []
314 endif
315
316 have_orcc = false
317 orcc_args = []
318 if get_option('use_orc') != 'no'
319   need_orc = get_option('use_orc') == 'yes'
320   # Used by various libraries/elements that use Orc code
321   orc_dep = dependency('orc-0.4', required : need_orc)
322   orcc = find_program('orcc', required : need_orc)
323   if orc_dep.found() and orcc.found()
324     have_orcc = true
325     orcc_args = [orcc, '--include', 'glib.h']
326     cdata.set('HAVE_ORC', 1)
327   else
328     message('Orc Compiler not found, will use backup C code')
329     cdata.set('DISABLE_ORC', 1)
330   endif
331 else
332   cdata.set('DISABLE_ORC', 1)
333 endif
334
335 configure_file(input : 'config.h.meson',
336   output : 'config.h',
337   configuration : cdata)
338
339 gst_plugins_bad_args = ['-DHAVE_CONFIG_H']
340 configinc = include_directories('.')
341 libsinc = include_directories('gst-libs')
342
343 vs_module_defs_dir = meson.current_source_dir() + '/win32/common/'
344
345 # Used by the *_mkenum.py helper scripts
346 glib_mkenums = find_program('glib-mkenums')
347
348 subdir('gst-libs')
349 subdir('gst')
350 subdir('sys')
351 subdir('ext')
352 subdir('pkgconfig')
353
354 python3 = find_program('python3')
355 run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")')