splitfilesrc: set offsets on buffers
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 6 Oct 2011 07:33:19 +0000 (08:33 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 30 Nov 2011 16:39:33 +0000 (16:39 +0000)
Looks like some parsers (in some versions at least) expect the
offsets to be set, and behave weird if that's not the case
(e.g. off-by-one in h264parse).

gst/multifile/gstsplitfilesrc.c

index ce856f5..35559fa 100644 (file)
@@ -497,6 +497,10 @@ gst_split_file_src_create (GstBaseSrc * basesrc, guint64 offset, guint size,
       cur_part.stop, cur_part.path);
 
   buf = gst_buffer_new_and_alloc (size);
+
+  GST_BUFFER_OFFSET (buf) = offset;
+  GST_BUFFER_OFFSET_END (buf) = offset + size;
+
   data = GST_BUFFER_DATA (buf);
 
   cancel = src->cancellable;