meson: enable applemedia
[platform/upstream/gstreamer.git] / meson.build
1 project('gst-plugins-bad', 'c', 'cpp',
2   version : '1.15.0.1',
3   meson_version : '>= 0.47',
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].to_int()
10 gst_version_minor = version_arr[1].to_int()
11 gst_version_micro = version_arr[2].to_int()
12  if version_arr.length() == 4
13   gst_version_nano = version_arr[3].to_int()
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 * 100 + gst_version_micro)
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   msvc_args = [
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   ]
43   add_project_arguments(msvc_args, language : 'c')
44   add_project_arguments(msvc_args, language : 'cpp')
45   # Disable SAFESEH with MSVC for plugins and libs that use external deps that
46   # are built with MinGW
47   noseh_link_args = ['/SAFESEH:NO']
48 else
49   if cxx.has_argument('-Wno-non-virtual-dtor')
50     add_project_arguments('-Wno-non-virtual-dtor', language: 'cpp')
51   endif
52
53   noseh_link_args = []
54 endif
55
56 if cc.has_link_argument('-Wl,-Bsymbolic-functions')
57   add_project_link_arguments('-Wl,-Bsymbolic-functions', language : 'c')
58 endif
59
60 # Symbol visibility
61 if cc.has_argument('-fvisibility=hidden')
62   add_project_arguments('-fvisibility=hidden', language: 'c')
63 endif
64 if cxx.has_argument('-fvisibility=hidden')
65   add_project_arguments('-fvisibility=hidden', language: 'cpp')
66 endif
67
68 # Disable strict aliasing
69 if cc.has_argument('-fno-strict-aliasing')
70   add_project_arguments('-fno-strict-aliasing', language: 'c')
71 endif
72 if cxx.has_argument('-fno-strict-aliasing')
73   add_project_arguments('-fno-strict-aliasing', language: 'cpp')
74 endif
75
76 cdata = configuration_data()
77 check_headers = [
78   ['HAVE_DLFCN_H', 'dlfcn.h'],
79   ['HAVE_FCNTL_H', 'fcntl.h'],
80   ['HAVE_INTTYPES_H', 'inttypes.h'],
81   ['HAVE_MEMORY_H', 'memory.h'],
82   ['HAVE_MSACM_H', 'msacm.h'],
83   ['HAVE_NETINET_IN_H', 'netinet/in.h'],
84   ['HAVE_NETINET_IP_H', 'netinet/ip.h'],
85   ['HAVE_NETINET_TCP_H', 'netinet/tcp.h'],
86   ['HAVE_PTHREAD_H', 'pthread.h'],
87   ['HAVE_STDINT_H', 'stdint.h'],
88   ['HAVE_STDLIB_H', 'stdlib.h'],
89   ['HAVE_STRINGS_H', 'strings.h'],
90   ['HAVE_STRING_H', 'string.h'],
91   ['HAVE_SYS_PARAM_H', 'sys/param.h'],
92   ['HAVE_SYS_SOCKET_H', 'sys/socket.h'],
93   ['HAVE_SYS_STAT_H', 'sys/stat.h'],
94   ['HAVE_SYS_TIME_H', 'sys/time.h'],
95   ['HAVE_SYS_TYPES_H', 'sys/types.h'],
96   ['HAVE_SYS_UTSNAME_H', 'sys/utsname.h'],
97   ['HAVE_UNISTD_H', 'unistd.h'],
98   ['HAVE_WINDOWS_H', 'windows.h'],
99   ['HAVE_WINSOCK2_H', 'winsock2.h'],
100   ['HAVE_WS2TCPIP_H', 'ws2tcpip.h'],
101 ]
102
103 foreach h : check_headers
104   if cc.has_header(h.get(1))
105     cdata.set(h.get(0), 1)
106   endif
107 endforeach
108
109 check_functions = [
110 # check token HAVE_ACM
111 # check token HAVE_ANDROID_MEDIA
112 # check token HAVE_APEXSINK
113 # check token HAVE_APPLE_MEDIA
114 # check token HAVE_ASSRENDER
115 # check token HAVE_AVC
116 # check token HAVE_BLUEZ
117 # check token HAVE_BZ2
118 # check token HAVE_CFLOCALECOPYCURRENT
119 # check token HAVE_CFPREFERENCESCOPYAPPVALUE
120 # check token HAVE_CHROMAPRINT
121 # check token HAVE_CPU_ALPHA
122 # check token HAVE_CPU_ARM
123 # check token HAVE_CPU_CRIS
124 # check token HAVE_CPU_CRISV32
125 # check token HAVE_CPU_HPPA
126 # check token HAVE_CPU_I386
127 # check token HAVE_CPU_IA64
128 # check token HAVE_CPU_M68K
129 # check token HAVE_CPU_MIPS
130 # check token HAVE_CPU_PPC
131 # check token HAVE_CPU_PPC64
132 # check token HAVE_CPU_S390
133 # check token HAVE_CPU_SPARC
134 # check token HAVE_CPU_X86_64
135 # check token HAVE_CURL
136 # check token HAVE_DAALA
137 # check token HAVE_DASH
138 # check token HAVE_DC1394
139   ['HAVE_DCGETTEXT', 'dcgettext'],
140 # check token HAVE_DECKLINK
141 # check token HAVE_DIRECT3D
142 # check token HAVE_DIRECTDRAW
143 # check token HAVE_DIRECTFB
144 # check token HAVE_DIRECTSOUND
145 # check token HAVE_DOWHILE_MACROS
146 # check token HAVE_DTS
147 # check token HAVE_DVB
148 # check token HAVE_EXPERIMENTAL
149 # check token HAVE_EXTERNAL
150 # check token HAVE_FAAC
151 # check token HAVE_FAAD
152 # check token HAVE_FBDEV
153 # check token HAVE_FLITE
154 # check token HAVE_FLUIDSYNTH
155   ['HAVE_GETPAGESIZE', 'getpagesize'],
156 # check token HAVE_GETTEXT
157 # check token HAVE_GL
158 # check token HAVE_GLCHAR
159 # check token HAVE_GLEGLIMAGEOES
160 # check token HAVE_GLINTPTR
161 # check token HAVE_GLSIZEIPTR
162 # check token HAVE_GME
163   ['HAVE_GMTIME_R', 'gmtime_r'],
164 # check token HAVE_GRAPHENE
165 # check token HAVE_GSETTINGS
166 # check token HAVE_GSM
167 # check token HAVE_GUDEV
168 # check token HAVE_HLS
169 # check token HAVE_ICONV
170 # check token HAVE_JPEG
171 # check token HAVE_KATE
172 # check token HAVE_LADSPA
173 # check token HAVE_LIBGCRYPT
174 # check token HAVE_LIBGME_ACCURACY
175 # check token HAVE_LIBMMS
176 # check token HAVE_LIBNSL
177 # check token HAVE_LIBSOCKET
178 # check token HAVE_LIBUSB
179 # check token HAVE_LIBVISUAL
180 # check token HAVE_LINSYS
181 # check token HAVE_LRDF
182 # check token HAVE_LV2
183 # check token HAVE_MIMIC
184   ['HAVE_MMAP', 'mmap'],
185 # check token HAVE_MODPLUG
186 # check token HAVE_MPEG2ENC
187 # check token HAVE_MPG123
188 # check token HAVE_MPLEX
189 # check token HAVE_MUSEPACK
190 # check token HAVE_MYTHTV
191 # check token HAVE_NAS
192 # check token HAVE_NEON
193 # check token HAVE_NETTLE
194 # check token HAVE_OFA
195 # check token HAVE_OPENAL
196 # check token HAVE_OPENCV
197 # check token HAVE_OPENEXR
198 # check token HAVE_OPENJPEG
199 # check token HAVE_OPENJPEG_1
200 # check token HAVE_OPENNI2
201 # check token HAVE_OPENSLES
202 # check token HAVE_OPUS
203 # check token HAVE_ORC
204 # check token HAVE_OSX
205 # check token HAVE_OSX_VIDEO
206   ['HAVE_PIPE2', 'pipe2'],
207 # check token HAVE_PNG
208 # check token HAVE_PVR
209 # check token HAVE_QUICKTIME
210 # check token HAVE_RDTSC
211 # check token HAVE_RESINDVD
212 # check token HAVE_RSVG
213 # check token HAVE_RSVG_2_36_2
214 # check token HAVE_RTMP
215 # check token HAVE_SBC
216 # check token HAVE_SDL
217 # check token HAVE_SHM
218 # check token HAVE_SMOOTHSTREAMING
219 # check token HAVE_SNDFILE
220 # check token HAVE_SNDIO
221 # check token HAVE_SOUNDTOUCH
222 # check token HAVE_SOUNDTOUCH_1_4
223 # check token HAVE_SPANDSP
224 # check token HAVE_SPC
225 # check token HAVE_SRTP
226 # check token HAVE_SSH2
227 # check token HAVE_TELETEXTDEC
228 # check token HAVE_TIGER
229 # check token HAVE_TIMIDITY
230 # check token HAVE_UVCH264
231 # check token HAVE_VALGRIND
232 # check token HAVE_VCD
233 # check token HAVE_VDPAU
234 # check token HAVE_VIDEOTOOLBOX
235 # check token HAVE_VOAACENC
236 # check token HAVE_VOAMRWBENC
237 # check token HAVE_WASAPI
238 # check token HAVE_WAYLAND
239 # check token HAVE_WEBP
240 # check token HAVE_WILDMIDI
241 # check token HAVE_WIN32
242 # check token HAVE_WININET
243 # check token HAVE_WINKS
244 # check token HAVE_WINSCREENCAP
245 # check token HAVE_XVID
246 # check token HAVE_ZBAR
247 ]
248
249 foreach f : check_functions
250   if cc.has_function(f.get(1))
251     cdata.set(f.get(0), 1)
252   endif
253 endforeach
254
255 cdata.set('SIZEOF_CHAR', cc.sizeof('char'))
256 cdata.set('SIZEOF_INT', cc.sizeof('int'))
257 cdata.set('SIZEOF_LONG', cc.sizeof('long'))
258 cdata.set('SIZEOF_SHORT', cc.sizeof('short'))
259 cdata.set('SIZEOF_VOIDP', cc.sizeof('void*'))
260
261 cdata.set_quoted('VERSION', gst_version)
262 cdata.set_quoted('PACKAGE', 'gst-plugins-bad')
263 cdata.set_quoted('PACKAGE_VERSION', gst_version)
264 cdata.set_quoted('PACKAGE_BUGREPORT', 'http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer')
265 cdata.set_quoted('PACKAGE_NAME', 'GStreamer Bad Plug-ins')
266 cdata.set_quoted('GETTEXT_PACKAGE', 'gst-plugins-bad-1.0')
267 cdata.set_quoted('GST_API_VERSION', api_version)
268 cdata.set_quoted('GST_LICENSE', 'LGPL')
269 cdata.set_quoted('LIBDIR', join_paths(get_option('prefix'), get_option('libdir')))
270 cdata.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
271
272 warning_flags = [
273   '-Wmissing-declarations',
274   '-Wredundant-decls',
275   '-Wwrite-strings',
276   '-Wformat',
277   '-Wformat-security',
278   '-Winit-self',
279   '-Wmissing-include-dirs',
280   '-Waddress',
281   '-Wno-multichar',
282   '-Wvla',
283   '-Wpointer-arith',
284 ]
285
286 warning_c_flags = [
287   '-Wmissing-prototypes',
288   '-Wdeclaration-after-statement',
289   '-Wold-style-definition',
290   '-Wnested-externs',
291 ]
292
293 warning_cxx_flags = [
294   '-Wformat-nonliteral',
295 ]
296
297 foreach extra_arg : warning_c_flags
298   if cc.has_argument (extra_arg)
299     add_project_arguments([extra_arg], language: 'c')
300   endif
301 endforeach
302
303 foreach extra_arg : warning_cxx_flags
304   if cxx.has_argument (extra_arg)
305     add_project_arguments([extra_arg], language: 'cpp')
306   endif
307 endforeach
308
309 foreach extra_arg : warning_flags
310   if cc.has_argument (extra_arg)
311     add_project_arguments([extra_arg], language: 'c')
312   endif
313   if cxx.has_argument (extra_arg)
314     add_project_arguments([extra_arg], language: 'cpp')
315   endif
316 endforeach
317
318 # GStreamer package name and origin url
319 gst_package_name = get_option('package-name')
320 if gst_package_name == ''
321   if gst_version_nano == 0
322     gst_package_name = 'GStreamer Bad Plug-ins source release'
323   elif gst_version_nano == 1
324     gst_package_name = 'GStreamer Bad Plug-ins git'
325   else
326     gst_package_name = 'GStreamer Bad Plug-ins prerelease'
327   endif
328 endif
329 cdata.set_quoted('GST_PACKAGE_NAME', gst_package_name)
330 cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('package-origin'))
331
332 # FIXME: This should be exposed as a configuration option
333 host_system = host_machine.system()
334 if host_system == 'linux'
335   cdata.set_quoted('DEFAULT_VIDEOSRC', 'v4l2src')
336 elif host_system == 'osx'
337   cdata.set_quoted('DEFAULT_VIDEOSRC', 'avfvideosrc')
338 else
339   cdata.set_quoted('DEFAULT_VIDEOSRC', 'videotestsrc')
340 endif
341
342 if host_system == 'darwin'
343   cdata.set_quoted('GST_EXTRA_MODULE_SUFFIX', '.dylib')
344 endif
345
346 # Mandatory GST deps
347 gst_dep = dependency('gstreamer-1.0', version : gst_req,
348   fallback : ['gstreamer', 'gst_dep'])
349 gstbase_dep = dependency('gstreamer-base-1.0', version : gst_req,
350   fallback : ['gstreamer', 'gst_base_dep'])
351 gstnet_dep = dependency('gstreamer-net-1.0', version : gst_req,
352   fallback : ['gstreamer', 'gst_net_dep'])
353 gstcontroller_dep = dependency('gstreamer-controller-1.0', version : gst_req,
354   fallback : ['gstreamer', 'gst_controller_dep'])
355
356 gstpbutils_dep = dependency('gstreamer-pbutils-1.0', version : gst_req,
357     fallback : ['gst-plugins-base', 'pbutils_dep'])
358 gstallocators_dep = dependency('gstreamer-allocators-1.0', version : gst_req,
359     fallback : ['gst-plugins-base', 'allocators_dep'])
360 gstapp_dep = dependency('gstreamer-app-1.0', version : gst_req,
361     fallback : ['gst-plugins-base', 'app_dep'])
362 gstaudio_dep = dependency('gstreamer-audio-1.0', version : gst_req,
363     fallback : ['gst-plugins-base', 'audio_dep'])
364 gstfft_dep = dependency('gstreamer-fft-1.0', version : gst_req,
365     fallback : ['gst-plugins-base', 'fft_dep'])
366 gstriff_dep = dependency('gstreamer-riff-1.0', version : gst_req,
367     fallback : ['gst-plugins-base', 'riff_dep'])
368 gstrtp_dep = dependency('gstreamer-rtp-1.0', version : gst_req,
369     fallback : ['gst-plugins-base', 'rtp_dep'])
370 gstrtsp_dep = dependency('gstreamer-rtsp-1.0', version : gst_req,
371     fallback : ['gst-plugins-base', 'rtsp_dep'])
372 gstsdp_dep = dependency('gstreamer-sdp-1.0', version : gst_req,
373     fallback : ['gst-plugins-base', 'sdp_dep'])
374 gsttag_dep = dependency('gstreamer-tag-1.0', version : gst_req,
375     fallback : ['gst-plugins-base', 'tag_dep'])
376 gstvideo_dep = dependency('gstreamer-video-1.0', version : gst_req,
377     fallback : ['gst-plugins-base', 'video_dep'])
378 if host_machine.system() != 'windows'
379   gstcheck_dep = dependency('gstreamer-check-1.0', version : gst_req,
380     fallback : ['gstreamer', 'gst_check_dep'])
381 endif
382
383 # GStreamer OpenGL
384 gstgl_dep = dependency('gstreamer-gl-1.0', version : gst_req,
385     fallback : ['gst-plugins-base', 'gstgl_dep'], required: get_option('gl'))
386
387 if gstgl_dep.found()
388   if gstgl_dep.type_name() == 'pkgconfig'
389     gst_gl_apis = gstgl_dep.get_pkgconfig_variable('gl_apis').split()
390     gst_gl_winsys = gstgl_dep.get_pkgconfig_variable('gl_winsys').split()
391     gst_gl_platforms = gstgl_dep.get_pkgconfig_variable('gl_platforms').split()
392   else
393     gstbase = subproject('gst-plugins-base')
394     gst_gl_apis = gstbase.get_variable('enabled_gl_apis')
395     gst_gl_winsys = gstbase.get_variable('enabled_gl_winsys')
396     gst_gl_platforms = gstbase.get_variable('enabled_gl_platforms')
397   endif
398
399   message('GStreamer OpenGL window systems: @0@'.format(' '.join(gst_gl_winsys)))
400   message('GStreamer OpenGL platforms: @0@'.format(' '.join(gst_gl_platforms)))
401   message('GStreamer OpenGL apis: @0@'.format(' '.join(gst_gl_apis)))
402
403   foreach ws : ['x11', 'wayland', 'android', 'cocoa', 'eagl', 'win32', 'dispmanx', 'viv_fb']
404     set_variable('gst_gl_have_window_@0@'.format(ws), gst_gl_winsys.contains(ws))
405   endforeach
406
407   foreach p : ['glx', 'egl', 'cgl', 'eagl', 'wgl']
408     set_variable('gst_gl_have_platform_@0@'.format(p), gst_gl_platforms.contains(p))
409   endforeach
410
411   foreach api : ['opengl', 'gles2']
412     set_variable('gst_gl_have_api_@0@'.format(api), gst_gl_apis.contains(api))
413   endforeach
414 endif
415
416 libm = cc.find_library('m', required : false)
417 glib_dep = dependency('glib-2.0', version : glib_req, fallback: ['glib', 'libglib_dep'])
418 gmodule_dep = dependency('gmodule-2.0', fallback: ['glib', 'libgmodule_dep'])
419 gio_dep = dependency('gio-2.0', fallback: ['glib', 'libgio_dep'])
420 # gio-unix-2.0 is used by sys/bluez
421
422 # Optional dep of ext/gl and gst/librfb
423 x11_dep = dependency('x11', required : get_option('x11'))
424 if x11_dep.found()
425   cdata.set('HAVE_X11', 1)
426 endif
427
428 if host_machine.system() == 'windows'
429   winsock2 = [cc.find_library('ws2_32')]
430 else
431   winsock2 = []
432 endif
433
434 if host_machine.system() == 'darwin'
435   add_languages('objc')
436   mobilecoreservices_dep = dependency('MobileCoreServices', required : false)
437   if mobilecoreservices_dep.found()
438     cdata.set('HAVE_IOS', 1)
439   endif
440
441   avfoundation_dep = dependency('AVFoundation', required : false)
442   if avfoundation_dep.found()
443       cdata.set('HAVE_AVFOUNDATION', 1)
444   endif
445
446   videotoolbox_dep = dependency('VideoToolbox', required : false)
447   if videotoolbox_dep.found()
448       cdata.set('HAVE_VIDEOTOOLBOX', 1)
449   endif
450
451 #  FIXME: framework.version() returns 'unknown'
452 #  if videotoolbox_dep.version().version_compare('>=10.9.6')
453 #    cdata.set('HAVE_VIDEOTOOLBOX_10_9_6', 1)
454 #  endif
455 endif
456
457 have_orcc = false
458 orcc_args = []
459 # Used by various libraries/elements that use Orc code
460 orc_dep = dependency('orc-0.4', required : get_option('orc'))
461 orcc = find_program('orcc', required : get_option('orc'))
462 if orc_dep.found() and orcc.found()
463   have_orcc = true
464   orcc_args = [orcc, '--include', 'glib.h']
465   cdata.set('HAVE_ORC', 1)
466 else
467   message('Orc Compiler not found or disabled, will use backup C code')
468   cdata.set('DISABLE_ORC', 1)
469 endif
470
471 if gst_dep.type_name() == 'internal'
472   gst_debug_disabled = not subproject('gstreamer').get_variable('gst_debug')
473 else
474   # We can't check that in the case of subprojects as we won't
475   # be able to build against an internal dependency (which is not built yet)
476   gst_debug_disabled = cc.has_header_symbol('gst/gstconfig.h', 'GST_DISABLE_GST_DEBUG', dependencies: gst_dep)
477 endif
478
479 if gst_debug_disabled and cc.has_argument('-Wno-unused')
480   add_project_arguments('-Wno-unused', language: 'c')
481 endif
482
483 gst_plugins_bad_args = ['-DHAVE_CONFIG_H']
484 configinc = include_directories('.')
485 libsinc = include_directories('gst-libs')
486
487 python3 = import('python3').find_python()
488
489 gir = find_program('g-ir-scanner', required : get_option('introspection'))
490 gnome = import('gnome')
491 build_gir = gir.found() and not meson.is_cross_build()
492 gir_init_section = [ '--add-init-section=extern void gst_init(gint*,gchar**);' + \
493     'g_setenv("GST_REGISTRY_1.0", "@0@", TRUE);'.format(meson.current_build_dir() + '/gir_empty_registry.reg') + \
494     'g_setenv("GST_PLUGIN_PATH_1_0", "", TRUE);' + \
495     'g_setenv("GST_PLUGIN_SYSTEM_PATH_1_0", "", TRUE);' + \
496     'gst_init(NULL,NULL);' ]
497
498 pkgconfig = import('pkgconfig')
499 plugins_pkgconfig_install_dir = join_paths(plugins_install_dir, 'pkgconfig')
500 if get_option('default_library') == 'shared'
501   # If we don't build static plugins there is no need to generate pc files
502   plugins_pkgconfig_install_dir = disabler()
503 endif
504
505 subdir('gst-libs')
506 subdir('gst')
507 subdir('sys')
508 subdir('ext')
509 subdir('tests')
510 subdir('pkgconfig')
511
512 # xgettext is optional (on Windows for instance)
513 if find_program('xgettext', required : get_option('nls')).found()
514   cdata.set('ENABLE_NLS', 1)
515   subdir('po')
516 endif
517
518 configure_file(output : 'config.h', configuration : cdata)
519
520 run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")')