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.
This commit is contained in:
Wim Taymans 2012-02-02 12:14:15 +01:00
parent c61f794fc2
commit b3eb4e5bd4

View file

@ -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;