summaryrefslogtreecommitdiff
path: root/gst/debugutils/progressreport.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-07-28 10:54:38 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-07-28 11:38:31 +0100
commitb843f8f99c7931cf1ec4f414702181896a29cba1 (patch)
tree0085a3913631aa9cabea8285044e5dd45951efdc /gst/debugutils/progressreport.c
parentf94ea7299ab05a39bb399d446b6b806a130d94e9 (diff)
gst: udpate for position/duration/convert query API changes
Diffstat (limited to 'gst/debugutils/progressreport.c')
-rw-r--r--gst/debugutils/progressreport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/debugutils/progressreport.c b/gst/debugutils/progressreport.c
index aa3d01bf7..5e2eecf15 100644
--- a/gst/debugutils/progressreport.c
+++ b/gst/debugutils/progressreport.c
@@ -240,8 +240,8 @@ gst_progress_report_do_query (GstProgressReport * filter, GstFormat format,
if (filter->do_query || !buf) {
GST_LOG_OBJECT (filter, "using upstream query");
- if (!gst_pad_query_peer_position (sink_pad, &format, &cur) ||
- !gst_pad_query_peer_duration (sink_pad, &format, &total)) {
+ if (!gst_pad_query_peer_position (sink_pad, format, &cur) ||
+ !gst_pad_query_peer_duration (sink_pad, format, &total)) {
return FALSE;
}
} else {