GNOME Bugzilla – Bug 116149
[patch] GStreamer needs a seek API
Last modified: 2004-12-22 21:47:04 UTC
GStreamer needs an API for seeking. Currently apps use the hack of inserting events into the pipeline at random points. Events however are designed to be for inter-plugin communication and apps should never have to touch them.
Well, we have gst_element_send_event(). How about the following: #define gst_element_seek(el, pos, met) \ gst_element_send_event (el, gst_event_new_seek (pos, met)) ?
Apart from that I prefer functions, because you can then later go change them, that is exactly how I think it should be done.
Created attachment 18046 [details] [review] this?
Added to HEAD. Closing.