From: Wim Taymans Date: Thu, 2 Feb 2012 11:14:15 +0000 (+0100) Subject: playsink: call the right default query handler X-Git-Tag: 1.19.3~511^2~6847 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3eb4e5bd482ae34dc26a7ab72dc9d8c798a500d;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/gst/playback/gstplaysinkconvertbin.c b/gst/playback/gstplaysinkconvertbin.c index 692bb1b..1a78d46 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;