From f989e6f2d756d9f3491d5f88aab42d2be28c09dd Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Mon, 4 Feb 2013 10:30:32 +0100 Subject: [PATCH] debugutils: fix order of caps on an unnegotiated link headlabel is the sink_pad (where the link points to) and not the other way around. --- gst/gstdebugutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstdebugutils.c b/gst/gstdebugutils.c index 4f90de2836..23c8f9b499 100644 --- a/gst/gstdebugutils.c +++ b/gst/gstdebugutils.c @@ -399,7 +399,7 @@ debug_dump_element_pad_link (GstPad * pad, GstElement * element, * we need an empty label to make space */ fprintf (out, "%s%s_%s -> %s_%s [labeldistance=\"10\", labelangle=\"0\", " "label=\" \", " - "headlabel=\"%s\", taillabel=\"%s\"]\n", + "taillabel=\"%s\", headlabel=\"%s\"]\n", spc, element_name, pad_name, peer_element_name, peer_pad_name, media_src, media_sink); g_free (media_src);