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