rtpvrawpay: don't use buffer lists if everything fits into one buffer
[platform/upstream/gst-plugins-good.git] / ext / flac / meson.build
1 flac_sources = [
2   'gstflac.c',
3   'gstflacdec.c',
4   'gstflacenc.c',
5   'gstflactag.c',
6 ]
7
8 flac_dep = dependency('flac', version : '>=1.1.4', required : false)
9
10 if flac_dep.found()
11   gstflac = library('gstflac',
12     flac_sources,
13     c_args : gst_plugins_good_args + ['-DGST_USE_UNSTABLE_API'],
14     link_args : noseh_link_args,
15     include_directories : [configinc, libsinc],
16     dependencies : [gstbase_dep, gsttag_dep, gstaudio_dep, flac_dep],
17     install : true,
18     install_dir : plugins_install_dir,
19   )
20   pkgconfig.generate(gstflac, install_dir : plugins_pkgconfig_install_dir)
21 endif