mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 11:55:39 +00:00
gesdemux: Fix querying if we need stack reloading
We are probing upstream queries, not downstream ones This was clearly a small test that slipt into previous commit
This commit is contained in:
parent
f19bf3edb4
commit
19426863e9
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ ges_demux_src_probe (GstPad * pad, GstPadProbeInfo * info, GstElement * parent)
|
|||
GESDemux *self = GES_DEMUX (parent);
|
||||
GstEvent *event;
|
||||
|
||||
if (info->type & (GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM)) {
|
||||
if (info->type & (GST_PAD_PROBE_TYPE_QUERY_UPSTREAM)) {
|
||||
GstQuery *query = info->data;
|
||||
|
||||
if (GST_QUERY_TYPE (query) == GST_QUERY_CUSTOM) {
|
||||
|
|
Loading…
Reference in a new issue