summaryrefslogtreecommitdiff
path: root/ext/fluidsynth
diff options
context:
space:
mode:
authorFabian Greffrath <fabian@greffrath.com>2019-09-24 20:29:21 +0200
committerSebastian Dröge <slomo@coaxion.net>2019-09-26 07:41:31 +0000
commit296e17e3f170ce5076148ff4526b2c8848520992 (patch)
tree0cbd7ef1c2f8400440e1416b9ad6cbded8d49b8c /ext/fluidsynth
parent1e38255c9710986d88d538525b247af0499dac8f (diff)
downloadgstreamer-plugins-bad-296e17e3f170ce5076148ff4526b2c8848520992.tar.gz
fluidsynth: add sf3 to soundfont search path
In Debian, soundfonts in SF3 format (i.e. the same as SF2 format but with Ogg/Vorbis-compressed samples) are installed into /usr/share/sounds/sf3. Soundfonts in SF3 format are supported since FluidSynth 1.1.7 (released in Feb 2018).
Diffstat (limited to 'ext/fluidsynth')
-rw-r--r--ext/fluidsynth/gstfluiddec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/fluidsynth/gstfluiddec.c b/ext/fluidsynth/gstfluiddec.c
index 48b53ca19..7737cbb37 100644
--- a/ext/fluidsynth/gstfluiddec.c
+++ b/ext/fluidsynth/gstfluiddec.c
@@ -530,8 +530,9 @@ gst_fluid_dec_open (GstFluidDec * fluiddec)
fluiddec->soundfont);
} else {
gint i, j;
- /* ubuntu/debian in sounds/sf2, fedora in soundfonts */
- static const gchar *paths[] = { "sounds/sf2/", "soundfonts/", NULL };
+ /* ubuntu/debian in sounds/sf[23], fedora in soundfonts */
+ static const gchar *paths[] =
+ { "sounds/sf3/", "sounds/sf2/", "soundfonts/", NULL };
sharedirs = g_get_system_data_dirs ();