mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
rndbuffersize: send SEGMENT event before pushing buffers
Conflicts: gst/debugutils/rndbuffersize.c
This commit is contained in:
parent
354e35a6ee
commit
920e91e072
1 changed files with 13 additions and 1 deletions
|
@ -23,7 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
# include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
@ -51,6 +51,8 @@ struct _GstRndBufferSize
|
||||||
|
|
||||||
GstPad *sinkpad, *srcpad;
|
GstPad *sinkpad, *srcpad;
|
||||||
guint64 offset;
|
guint64 offset;
|
||||||
|
|
||||||
|
gboolean need_newsegment;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstRndBufferSizeClass
|
struct _GstRndBufferSizeClass
|
||||||
|
@ -259,6 +261,7 @@ gst_rnd_buffer_size_activate_mode (GstPad * pad, GstObject * parent,
|
||||||
res =
|
res =
|
||||||
gst_pad_start_task (pad, (GstTaskFunction) gst_rnd_buffer_size_loop,
|
gst_pad_start_task (pad, (GstTaskFunction) gst_rnd_buffer_size_loop,
|
||||||
self);
|
self);
|
||||||
|
self->need_newsegment = TRUE;
|
||||||
} else {
|
} else {
|
||||||
GST_INFO_OBJECT (self, "stopping pull");
|
GST_INFO_OBJECT (self, "stopping pull");
|
||||||
res = gst_pad_stop_task (pad);
|
res = gst_pad_stop_task (pad);
|
||||||
|
@ -302,6 +305,15 @@ gst_rnd_buffer_size_loop (GstRndBufferSize * self)
|
||||||
GST_WARNING_OBJECT (self, "short buffer: %u bytes", size);
|
GST_WARNING_OBJECT (self, "short buffer: %u bytes", size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (self->need_newsegment) {
|
||||||
|
GstSegment segment;
|
||||||
|
|
||||||
|
gst_segment_init (&segment, GST_FORMAT_BYTES);
|
||||||
|
segment.start = self->offset;
|
||||||
|
gst_pad_push_event (self->srcpad, gst_event_new_segment (&segment));
|
||||||
|
self->need_newsegment = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
self->offset += size;
|
self->offset += size;
|
||||||
|
|
||||||
ret = gst_pad_push (self->srcpad, buf);
|
ret = gst_pad_push (self->srcpad, buf);
|
||||||
|
|
Loading…
Reference in a new issue