summaryrefslogtreecommitdiff
path: root/gst/debugutils/progressreport.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2011-11-15 18:01:16 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2011-11-15 18:04:44 +0100
commite7918a5aba38bb306ac0f2dab4f4a15fdf0bb629 (patch)
tree2ccf50f6d3adfcd3a8ea60affc5d9d0168abcdbb /gst/debugutils/progressreport.c
parent04579335c41be41cec9f644239ec4ac91de206b6 (diff)
_query_peer_*() -> _peer_query_*()
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 5e2eecf15..82f4d7d95 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_peer_query_position (sink_pad, format, &cur) ||
+ !gst_pad_peer_query_duration (sink_pad, format, &total)) {
return FALSE;
}
} else {