From b3eb4e5bd482ae34dc26a7ab72dc9d8c798a500d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 2 Feb 2012 12:14:15 +0100 Subject: [PATCH] playsink: call the right default query handler We need to call the default query handler of the proxy pad because only that one will forward the query to the target pad in case of the allocation query. --- gst/playback/gstplaysinkconvertbin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/playback/gstplaysinkconvertbin.c b/gst/playback/gstplaysinkconvertbin.c index 692bb1be8b..1a78d461b7 100644 --- a/gst/playback/gstplaysinkconvertbin.c +++ b/gst/playback/gstplaysinkconvertbin.c @@ -467,7 +467,7 @@ gst_play_sink_convert_bin_query (GstPad * pad, GstObject * parent, break; } default: - res = gst_pad_query_default (pad, parent, query); + res = gst_proxy_pad_query_default (pad, parent, query); break; } return res;