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;
|
result = TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case GST_EVENT_RECONFIGURE:
|
||||||
|
result = TRUE;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
result = FALSE;
|
result = FALSE;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue