appsrc: Return FALSE from the seek handler if no seek callback was set

This commit is contained in:
Sebastian Dröge 2010-06-14 11:03:50 +02:00
parent a34fe5df35
commit 611d87ce7a

View file

@ -889,7 +889,7 @@ gst_app_src_do_seek (GstBaseSrc * src, GstSegment * segment)
static gboolean
gst_app_src_emit_seek (GstAppSrc * appsrc, guint64 offset)
{
gboolean res;
gboolean res = FALSE;
gboolean emit;
GstAppSrcPrivate *priv = appsrc->priv;