summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Swain <robert.swain@collabora.co.uk>2009-11-24 16:35:20 +0100
committerRobert Swain <robert.swain@collabora.co.uk>2009-11-24 16:35:20 +0100
commitdb5de8f1b609474b4c0a051389e8cd4cede9c55f (patch)
tree4953b28bb803945f09da0edb71a37381edb61c8a
parentb753e177fb4cd94a360f958e709f1d34dea7491d (diff)
qtdemux: Fix order of arguments in log message
-rw-r--r--gst/qtdemux/qtdemux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index bf3fe3c42..1655cf6ee 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -2247,8 +2247,8 @@ gst_qtdemux_sync_streams (GstQTDemux * demux)
/* only act if some gap */
end_time = stream->segments[stream->n_segments - 1].stop_time;
GST_LOG_OBJECT (demux, "current position: %" GST_TIME_FORMAT
- ", stream end: %" GST_TIME_FORMAT, GST_TIME_ARGS (end_time),
- GST_TIME_ARGS (demux->segment.last_stop));
+ ", stream end: %" GST_TIME_FORMAT,
+ GST_TIME_ARGS (demux->segment.last_stop), GST_TIME_ARGS (end_time));
if (end_time + 2 * GST_SECOND < demux->segment.last_stop) {
GST_DEBUG_OBJECT (demux, "sending EOS for stream %s",
GST_PAD_NAME (stream->pad));