summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gst/playback/gsturidecodebin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c
index f4d9f59c0..d6fb90eaa 100644
--- a/gst/playback/gsturidecodebin.c
+++ b/gst/playback/gsturidecodebin.c
@@ -2607,7 +2607,7 @@ decoder_query_duration_fold (const GValue * item, GValue * ret,
gst_query_parse_duration (fold->query, NULL, &duration);
- GST_DEBUG_OBJECT (item, "got duration %" G_GINT64_FORMAT, duration);
+ GST_DEBUG_OBJECT (pad, "got duration %" G_GINT64_FORMAT, duration);
if (duration > fold->max)
fold->max = duration;
@@ -2640,7 +2640,7 @@ decoder_query_position_fold (const GValue * item, GValue * ret,
gst_query_parse_position (fold->query, NULL, &position);
- GST_DEBUG_OBJECT (item, "got position %" G_GINT64_FORMAT, position);
+ GST_DEBUG_OBJECT (pad, "got position %" G_GINT64_FORMAT, position);
if (position > fold->max)
fold->max = position;
@@ -2720,7 +2720,7 @@ decoder_query_seeking_fold (const GValue * item, GValue * ret, QueryFold * fold)
g_value_set_boolean (ret, TRUE);
gst_query_parse_seeking (fold->query, NULL, &seekable, NULL, NULL);
- GST_DEBUG_OBJECT (item, "got seekable %d", seekable);
+ GST_DEBUG_OBJECT (pad, "got seekable %d", seekable);
if (fold->seekable)
fold->seekable = seekable;
@@ -2749,7 +2749,7 @@ decoder_query_generic_fold (const GValue * item, GValue * ret, QueryFold * fold)
if ((res = gst_pad_query (pad, fold->query))) {
g_value_set_boolean (ret, TRUE);
- GST_DEBUG_OBJECT (item, "answered query %p", fold->query);
+ GST_DEBUG_OBJECT (pad, "answered query %p", fold->query);
}
/* and stop as soon as we have a valid result */