mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 22:06:41 +00:00
matroskademux: pull mode should always report seekable
... as it no longer requires an index, but can seek by scanning as well.
This commit is contained in:
parent
9f7570f132
commit
68fc03fd76
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue