mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
tsdemux: We do not support the SKIP seek flag but that is not a problem
This commit is contained in:
parent
d331eee67c
commit
9682e44db6
2 changed files with 2 additions and 2 deletions
|
@ -1414,7 +1414,7 @@ mpegts_base_handle_seek_event (MpegTSBase * base, GstPad * pad,
|
|||
mpegts_packetizer_flush (base->packetizer, FALSE);
|
||||
}
|
||||
|
||||
if (flags & (GST_SEEK_FLAG_SEGMENT | GST_SEEK_FLAG_SKIP)) {
|
||||
if (flags & (GST_SEEK_FLAG_SEGMENT)) {
|
||||
GST_WARNING ("seek flags 0x%x are not supported", (int) flags);
|
||||
goto done;
|
||||
}
|
||||
|
|
|
@ -538,7 +538,7 @@ gst_ts_demux_do_seek (MpegTSBase * base, GstEvent * event)
|
|||
goto done;
|
||||
}
|
||||
|
||||
if (flags & (GST_SEEK_FLAG_SEGMENT | GST_SEEK_FLAG_SKIP)) {
|
||||
if (flags & (GST_SEEK_FLAG_SEGMENT)) {
|
||||
GST_WARNING ("seek flags 0x%x are not supported", (int) flags);
|
||||
goto done;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue