summaryrefslogtreecommitdiff
path: root/gst/gstparse.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2002-04-14 14:59:34 +0000
committerBenjamin Otte <otte@gnome.org>2002-04-14 14:59:34 +0000
commitce8e4a887971c11b5255306d23e0416c4830a9a5 (patch)
treefc10bc243a3bf77f4f187c69802e6c7921024ad8 /gst/gstparse.c
parentbac184e6fba7417e8e8cc437a389c72721e02c5a (diff)
downloadgstreamer-ce8e4a887971c11b5255306d23e0416c4830a9a5.tar.gz
we don't use // in code we commit :)
Original commit message from CVS: hi wtay (and some others): we don't use // in code we commit :)
Diffstat (limited to 'gst/gstparse.c')
-rw-r--r--gst/gstparse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/gstparse.c b/gst/gstparse.c
index c3e273a721..bdcfaa77e6 100644
--- a/gst/gstparse.c
+++ b/gst/gstparse.c
@@ -256,7 +256,7 @@ make_connections (graph_t *g, GError **error)
a = c->src_pads;
b = c->sink_pads;
-// g_print ("a: %p, b: %p\n", a, b);
+ /* g_print ("a: %p, b: %p\n", a, b); */
if (a && b) {
/* balanced multipad connection */
while (a && b) {
@@ -289,14 +289,14 @@ make_connections (graph_t *g, GError **error)
}
} else if (a) {
if ((pt1 = gst_element_get_pad_template (src, (gchar*)a->data))) {
-// g_print ("have padtemplate %s, SOMETIMES=%s\n", pt1->name_template, pt1->presence == GST_PAD_SOMETIMES ? "TRUE" : "FALSE");
+ /* g_print ("have padtemplate %s, SOMETIMES=%s\n", pt1->name_template, pt1->presence == GST_PAD_SOMETIMES ? "TRUE" : "FALSE"); */
if ((p1 = gst_element_get_pad (src, (gchar*)a->data)) || pt1->presence == GST_PAD_SOMETIMES) {
if (!p1) {
/* sigh, a hack until i fix the gstelement api... */
if ((pt2 = gst_element_get_compatible_pad_template (sink, pt1))) {
-// g_print ("have compatible pad template %s\n", pt2->name_template);
+ /* g_print ("have compatible pad template %s\n", pt2->name_template); */
if ((p2 = gst_element_get_pad (sink, pt2->name_template))) {
-// g_print ("got the pad\n");
+ /* g_print ("got the pad\n"); */
dc = g_new0 (dynamic_connection_t, 1);
dc->srcpadname = (gchar*)a->data;
dc->target_pad = p2;