mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
basesrc: say we handle RECONFIGURE event
We handle the RECONFIGURE event so return TRUE from the event handler.
This commit is contained in:
parent
651e433427
commit
768e28e1c4
1 changed files with 3 additions and 0 deletions
|
@ -1854,6 +1854,9 @@ gst_base_src_default_event (GstBaseSrc * src, GstEvent * event)
|
|||
result = TRUE;
|
||||
break;
|
||||
}
|
||||
case GST_EVENT_RECONFIGURE:
|
||||
result = TRUE;
|
||||
break;
|
||||
default:
|
||||
result = FALSE;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue