summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2011-01-18 14:48:04 +0100
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2011-01-24 22:24:28 +0100
commit68fc03fd76059c525cdb287ff51170737febbb52 (patch)
treee86100e7294845fc090d5c8af368e5f572c71158
parent9f7570f132fa3bd38a2c5ae3ef5b5d7071fc382a (diff)
matroskademux: pull mode should always report seekable
... as it no longer requires an index, but can seek by scanning as well.
-rw-r--r--gst/matroska/matroska-demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c
index 7bca5d19f..4541b44c0 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,