mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
vaapidecode: call the correct query function
In commit 2f8c115
(vaapidecode: use the query virtual methods in 1.4)
a bug was introduced: when calling the parent's query function of the
src pad, the one of the sink pad is called instead. This patch fixes
this issue.
https://bugzilla.gnome.org/show_bug.cgi?id=746248
This commit is contained in:
parent
ccccbf4b09
commit
d8d2f00bd0
1 changed files with 1 additions and 1 deletions
|
@ -1060,7 +1060,7 @@ gst_vaapidecode_src_query (GstVideoDecoder * vdec, GstQuery * query)
|
|||
#else
|
||||
GstPad *pad = GST_VIDEO_DECODER_SRC_PAD (vdec);
|
||||
GstObject *parent = gst_pad_get_parent (pad);
|
||||
ret = GST_PAD_QUERY_FUNCTION_CALL (plugin->sinkpad_query, pad, parent,
|
||||
ret = GST_PAD_QUERY_FUNCTION_CALL (plugin->srcpad_query, pad, parent,
|
||||
query);
|
||||
if (parent)
|
||||
gst_object_unref (parent);
|
||||
|
|
Loading…
Reference in a new issue