projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f19bf3e
)
gesdemux: Fix querying if we need stack reloading
author
Thibault Saunier
<tsaunier@igalia.com>
Tue, 20 Aug 2019 19:29:12 +0000
(15:29 -0400)
committer
Thibault Saunier
<tsaunier@igalia.com>
Tue, 20 Aug 2019 19:29:57 +0000
(15:29 -0400)
We are probing upstream queries, not downstream ones
This was clearly a small test that slipt into previous commit
plugins/ges/gesdemux.c
patch
|
blob
|
history
diff --git
a/plugins/ges/gesdemux.c
b/plugins/ges/gesdemux.c
index a5bcdcab4e23d029b22dc790ddee207f2b10bdce..3d900f2918088a9e2b106361047721e7e75a5801 100644
(file)
--- a/
plugins/ges/gesdemux.c
+++ b/
plugins/ges/gesdemux.c
@@
-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_
DOWN
STREAM)) {
+ if (info->type & (GST_PAD_PROBE_TYPE_QUERY_
UP
STREAM)) {
GstQuery *query = info->data;
if (GST_QUERY_TYPE (query) == GST_QUERY_CUSTOM) {