mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
videomixer: Send queries to the master pad by default instead of all pads
This commit is contained in:
parent
0bf61ecfaf
commit
f19ef7eada
1 changed files with 2 additions and 2 deletions
|
@ -896,8 +896,8 @@ gst_videomixer_query (GstPad * pad, GstQuery * query)
|
|||
break;
|
||||
default:
|
||||
/* FIXME, needs a custom query handler because we have multiple
|
||||
* sinkpads */
|
||||
res = gst_pad_query_default (pad, query);
|
||||
* sinkpads, send to the master pad until then */
|
||||
res = gst_pad_query (GST_PAD_CAST (mix->master), query);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue