meson: build sndfile plugin
authorTim-Philipp Müller <tim@centricular.com>
Sun, 16 Dec 2018 20:27:56 +0000 (20:27 +0000)
committerSebastian Dröge <slomo@coaxion.net>
Mon, 17 Dec 2018 09:12:53 +0000 (09:12 +0000)
ext/meson.build
ext/sndfile/meson.build [new file with mode: 0644]
meson_options.txt

index 94c832a..7e46486 100644 (file)
@@ -46,7 +46,7 @@ subdir('rtmp')
 subdir('sbc')
 subdir('sctp')
 subdir('smoothstreaming')
-#subdir('sndfile')
+subdir('sndfile')
 subdir('soundtouch')
 subdir('spandsp')
 subdir('srt')
diff --git a/ext/sndfile/meson.build b/ext/sndfile/meson.build
new file mode 100644 (file)
index 0000000..9748626
--- /dev/null
@@ -0,0 +1,13 @@
+sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: get_option('sndfile'))
+
+if sndfile_dep.found()
+  gstsndfile = library('gstsndfile',
+    'gstsf.c', 'gstsfdec.c', # 'gstsfsink.c', 'gstsfsrc.c',
+    c_args: gst_plugins_bad_args,
+    include_directories: [configinc],
+    dependencies: [gstaudio_dep, gst_dep, sndfile_dep],
+    install: true,
+    install_dir: plugins_install_dir,
+  )
+  pkgconfig.generate(gstsndfile, install_dir: plugins_pkgconfig_install_dir)
+endif
index ced7fe6..a4d0fc3 100644 (file)
@@ -130,6 +130,7 @@ option('sbc', type : 'feature', value : 'auto', description : 'SBC bluetooth aud
 option('sctp', type : 'feature', value : 'auto', description : 'SCTP plugin')
 option('shm', type : 'feature', value : 'auto', description : 'Shared memory source/sink plugin')
 option('smoothstreaming', type : 'feature', value : 'auto', description : 'Microsoft Smooth Streaming demuxer plugin')
+option('sndfile', type : 'feature', value : 'auto', description : 'libsndfile plugin')
 option('soundtouch', type : 'feature', value : 'auto', description : 'Audio pitch controller & BPM detection plugin')
 option('spandsp', type : 'feature', value : 'auto', description : 'Packet loss concealment audio plugin')
 option('srt', type : 'feature', value : 'auto', description : 'Secure, Reliable, Transport client/server network source/sink plugin')