From 68fc03fd76059c525cdb287ff51170737febbb52 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Tue, 18 Jan 2011 14:48:04 +0100 Subject: [PATCH] matroskademux: pull mode should always report seekable ... as it no longer requires an index, but can seek by scanning as well. --- gst/matroska/matroska-demux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 7bca5d19fa..4541b44c0d 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -2071,7 +2071,7 @@ gst_matroska_demux_query (GstMatroskaDemux * demux, GstPad * pad, /* assuming we'll be able to get an index ... */ seekable = demux->seekable; } else { - seekable = ! !demux->index; + seekable = TRUE; } gst_query_set_seeking (query, GST_FORMAT_TIME, seekable,