tsdemux: We do not support the SKIP seek flag but that is not a problem
authorSebastian Dröge <sebastian@centricular.com>
Thu, 30 Jan 2014 19:28:04 +0000 (20:28 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Tue, 4 Feb 2014 16:02:42 +0000 (17:02 +0100)
gst/mpegtsdemux/mpegtsbase.c
gst/mpegtsdemux/tsdemux.c

index 8aaa56810452437e9e70953602d7910decbdb24c..9c0a1cc7b7f55332b69de40e23653c2829a5e932 100644 (file)
@@ -1405,7 +1405,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;
   }
index 40fe151db016f57835b651decb9b5c50dbe76001..1dcf0aeae1cb03bcd41b9160446e63cc871f14f6 100644 (file)
@@ -514,7 +514,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;
   }