From 29161cb50e76e0531af97a1b9bc615c8405c6dbd Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 16 Aug 2006 15:33:12 +0000 Subject: [PATCH] ext/ladspa/gstladspa.c: Convert ' ' into '_'. Try to keep as many characters in the padtemplate names as possible. Original commit message from CVS: * ext/ladspa/gstladspa.c: (gst_ladspa_base_init): Convert ' ' into '_'. Try to keep as many characters in the padtemplate names as possible. --- ChangeLog | 6 ++++++ ext/ladspa/gstladspa.c | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 75e175b89c..af13c9c55f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-08-16 Wim Taymans + + * ext/ladspa/gstladspa.c: (gst_ladspa_base_init): + Convert ' ' into '_'. Try to keep as many characters in the padtemplate + names as possible. + 2006-08-16 Wim Taymans * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush), diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c index fc2a93433b..c256105beb 100644 --- a/ext/ladspa/gstladspa.c +++ b/ext/ladspa/gstladspa.c @@ -91,7 +91,10 @@ gst_ladspa_base_init (gpointer g_class) if (LADSPA_IS_PORT_AUDIO (p)) { gchar *name = g_strdup ((gchar *) desc->PortNames[j]); - g_strcanon (name, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "-", '-'); + GST_DEBUG ("LADSPA port name: \"%s\"", name); + g_strdelimit (name, " ", '_'); + g_strcanon (name, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "_-><=", '-'); + GST_DEBUG ("GStreamer pad name: \"%s\"", name); if (LADSPA_IS_PORT_INPUT (p)) gst_signal_processor_class_add_pad_template (gsp_class, name,