mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
mpegtsmux: detect and ignore gap buffers
Fixes #1291. Without this, when a stream has gaps and then resumes, the next buffer PTS that is written to the TS is given the PTS of the first gap. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1263>
This commit is contained in:
parent
6dae95d60f
commit
0a2e026985
1 changed files with 6 additions and 0 deletions
|
@ -1076,6 +1076,12 @@ gst_base_ts_mux_aggregate_buffer (GstBaseTsMux * mux,
|
|||
|
||||
GST_DEBUG_OBJECT (mux, "Pads collected");
|
||||
|
||||
if (buf && gst_buffer_get_size (buf) == 0
|
||||
&& GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_FLAG_GAP)) {
|
||||
gst_buffer_unref (buf);
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
if (G_UNLIKELY (mux->first)) {
|
||||
ret = gst_base_ts_mux_create_streams (mux);
|
||||
if (G_UNLIKELY (ret != GST_FLOW_OK)) {
|
||||
|
|
Loading…
Reference in a new issue