basesrc: say we handle RECONFIGURE event

We handle the RECONFIGURE event so return TRUE from the event handler.
This commit is contained in:
Wim Taymans 2011-12-10 11:08:22 +01:00
parent 651e433427
commit 768e28e1c4

View file

@ -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;