basesrc: say we handle RECONFIGURE event
authorWim Taymans <wim.taymans@collabora.co.uk>
Sat, 10 Dec 2011 10:08:22 +0000 (11:08 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Sat, 10 Dec 2011 10:08:22 +0000 (11:08 +0100)
We handle the RECONFIGURE event so return TRUE from the event handler.

libs/gst/base/gstbasesrc.c

index ee05abd..47f7e2f 100644 (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;