GNOME Bugzilla – Bug 544855
fakesrc and fakesink should call super::event()
Last modified: 2008-08-20 07:03:31 UTC
fakesrc overrides basesrc::event, but does not do any event handling. It should call super::event() to make use of basesrc's implementation. Otherwise seeking, eos and the like don't work.
Created attachment 115322 [details] [review] call super::event() fix for both fakesrc and fakesink
Created attachment 115326 [details] [review] call super::event() erm, gstbasesink has no default_event. Call this in a futureproof-save way.
2008-08-20 Stefan Kost <ensonic@users.sf.net> reviewed by: Wim Taymans <wim.taymans@collabora.co.uk> * plugins/elements/gstfakesink.c: * plugins/elements/gstfakesrc.c: Call super::event() when not handling it. Fixes #544855.