mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
pad: A newly activated pad should be marked as needing reconfiguration
This commit is contained in:
parent
942d905e19
commit
c279bdb663
1 changed files with 3 additions and 0 deletions
|
@ -1072,6 +1072,9 @@ gst_pad_activate_mode (GstPad * pad, GstPadMode mode, gboolean active)
|
|||
break;
|
||||
}
|
||||
|
||||
/* Mark pad as needing reconfiguration */
|
||||
if (active)
|
||||
GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
|
||||
pre_activate (pad, new);
|
||||
|
||||
if (GST_PAD_ACTIVATEMODEFUNC (pad)) {
|
||||
|
|
Loading…
Reference in a new issue