mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
pitch: Set seqnum on newly created segment event
https://bugzilla.gnome.org/show_bug.cgi?id=755012
This commit is contained in:
parent
637106e287
commit
b6ad1b0c22
1 changed files with 3 additions and 0 deletions
|
@ -679,6 +679,7 @@ gst_pitch_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_pitch_process_segment (GstPitch * pitch, GstEvent ** event)
|
gst_pitch_process_segment (GstPitch * pitch, GstEvent ** event)
|
||||||
{
|
{
|
||||||
|
gint seqnum;
|
||||||
gdouble out_seg_rate, our_arate;
|
gdouble out_seg_rate, our_arate;
|
||||||
gfloat stream_time_ratio;
|
gfloat stream_time_ratio;
|
||||||
GstSegment seg;
|
GstSegment seg;
|
||||||
|
@ -732,8 +733,10 @@ gst_pitch_process_segment (GstPitch * pitch, GstEvent ** event)
|
||||||
|
|
||||||
GST_LOG_OBJECT (pitch->sinkpad, "out segment %" GST_SEGMENT_FORMAT, &seg);
|
GST_LOG_OBJECT (pitch->sinkpad, "out segment %" GST_SEGMENT_FORMAT, &seg);
|
||||||
|
|
||||||
|
seqnum = gst_event_get_seqnum (*event);
|
||||||
gst_event_unref (*event);
|
gst_event_unref (*event);
|
||||||
*event = gst_event_new_segment (&seg);
|
*event = gst_event_new_segment (&seg);
|
||||||
|
gst_event_set_seqnum (*event, seqnum);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue