mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
tsdemux: Clear bufferlist/iterator when removing streams
This commit is contained in:
parent
dd6550a663
commit
6800d0c4e0
1 changed files with 10 additions and 0 deletions
|
@ -1032,6 +1032,16 @@ gst_ts_demux_stream_flush (TSDemuxStream * stream)
|
||||||
memset (stream->pendingbuffers, 0, TS_MAX_PENDING_BUFFERS);
|
memset (stream->pendingbuffers, 0, TS_MAX_PENDING_BUFFERS);
|
||||||
stream->nbpending = 0;
|
stream->nbpending = 0;
|
||||||
|
|
||||||
|
if (stream->current) {
|
||||||
|
gst_buffer_list_unref (stream->current);
|
||||||
|
stream->current = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stream->currentit) {
|
||||||
|
gst_buffer_list_iterator_free (stream->currentit);
|
||||||
|
stream->currentit = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (stream->currentlist) {
|
if (stream->currentlist) {
|
||||||
g_list_foreach (stream->currentlist, (GFunc) gst_buffer_unref, NULL);
|
g_list_foreach (stream->currentlist, (GFunc) gst_buffer_unref, NULL);
|
||||||
g_list_free (stream->currentlist);
|
g_list_free (stream->currentlist);
|
||||||
|
|
Loading…
Reference in a new issue