From 1fd9e983f3007bc99d855b72dc4498da2b81478b Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 16 Aug 2006 15:33:12 +0000 Subject: 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. --- ext/ladspa/gstladspa.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ext/ladspa') diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c index fc2a9343..c256105b 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, -- cgit v1.2.1