Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gstreamer
Commits
787a9f54
Commit
787a9f54
authored
Jun 18, 2018
by
Edward Hervey
🤘
Committed by
Tim-Philipp Müller
Jul 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
concat: Properly forward the SEGMENT seqnum
parent
d6c697e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
plugins/elements/gstconcat.c
plugins/elements/gstconcat.c
+4
-1
No files found.
plugins/elements/gstconcat.c
View file @
787a9f54
...
...
@@ -569,6 +569,7 @@ gst_concat_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
ret
=
FALSE
;
}
else
{
GstSegment
segment
=
spad
->
segment
;
GstEvent
*
topush
;
if
(
adjust_base
)
{
/* We know no duration */
...
...
@@ -584,8 +585,10 @@ gst_concat_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
segment
.
stop
+=
self
->
current_start_offset
;
}
}
topush
=
gst_event_new_segment
(
&
segment
);
gst_event_set_seqnum
(
topush
,
gst_event_get_seqnum
(
event
));
gst_pad_push_event
(
self
->
srcpad
,
gst_event_new_segment
(
&
segment
)
);
gst_pad_push_event
(
self
->
srcpad
,
topush
);
}
break
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment