mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
autovideoconvert: should not forward the allocation query if no element is selected
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6927>
This commit is contained in:
parent
b792b558ce
commit
7b547e044c
1 changed files with 10 additions and 0 deletions
|
@ -1150,6 +1150,16 @@ gst_base_auto_convert_sink_query (GstPad * pad, GstObject * parent,
|
|||
return ret;
|
||||
}
|
||||
|
||||
/* Should not forward the allocation query downstream directly
|
||||
* if no subelement is selected, otherwise it can influence
|
||||
* the downstream allocation choices and upstream buffer usage.
|
||||
*/
|
||||
if (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION) {
|
||||
GST_DEBUG_OBJECT (self,
|
||||
"no subelement is selected yet, can't answer ALLOCATION query");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
ignore_acceptcaps_failure:
|
||||
|
||||
if (GST_QUERY_TYPE (query) == GST_QUERY_ACCEPT_CAPS) {
|
||||
|
|
Loading…
Reference in a new issue