summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorFabian Greffrath <fabian@greffrath.com>2019-09-24 20:29:21 +0200
committerTim-Philipp Müller <tim@centricular.com>2019-10-01 12:49:52 +0100
commiteb6f8f1c5b71cc3212bc55976c00bd1f43f82e6b (patch)
tree42759546b312bb124ebc52bd111a89df7f6c255d /ext
parentc3c54aad2d45fb246a9b9e8a5e05488c15c27173 (diff)
downloadgstreamer-plugins-bad-eb6f8f1c5b71cc3212bc55976c00bd1f43f82e6b.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')
-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 c9514dba0..c7466f759 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 ();