From 63734cbb3c1c4c2c4e20ce90a05c1dae91e3be2b Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Sun, 18 Oct 2009 14:20:07 +0300 Subject: [PATCH] lv2: fix pad direction for ungrouped ports Classic copy'n'paste bug. --- ext/lv2/gstlv2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/lv2/gstlv2.c b/ext/lv2/gstlv2.c index ac4c903828..7610cd8450 100644 --- a/ext/lv2/gstlv2.c +++ b/ext/lv2/gstlv2.c @@ -348,7 +348,7 @@ gst_lv2_base_init (gpointer g_class) SLV2Port port = slv2_plugin_get_port_by_index (lv2plugin, desc->index); const gchar *name = slv2_value_as_string (slv2_port_get_symbol (lv2plugin, port)); - gst_signal_processor_class_add_pad_template (gsp_class, name, GST_PAD_SINK, + gst_signal_processor_class_add_pad_template (gsp_class, name, GST_PAD_SRC, j, 1, &mono_position); }