mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
pad: Append hooks instead of prepending to call them in the order they were added
https://bugzilla.gnome.org/show_bug.cgi?id=757197
This commit is contained in:
parent
85b93fa347
commit
2dfa548f36
1 changed files with 1 additions and 1 deletions
|
@ -1365,7 +1365,7 @@ gst_pad_add_probe (GstPad * pad, GstPadProbeType mask,
|
|||
PROBE_COOKIE (hook) = (pad->priv->probe_cookie - 1);
|
||||
|
||||
/* add the probe */
|
||||
g_hook_prepend (&pad->probes, hook);
|
||||
g_hook_append (&pad->probes, hook);
|
||||
pad->num_probes++;
|
||||
/* incremenent cookie so that the new hook get's called */
|
||||
pad->priv->probe_list_cookie++;
|
||||
|
|
Loading…
Reference in a new issue