mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
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:
parent
c61f794fc2
commit
b3eb4e5bd4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue