mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
dashdemux: Reset number of subtitle streams counter on reset() too
Otherwise we will continue increasing forever the number of subtitle streams when reusing the element for another DASH manifest.
This commit is contained in:
parent
c94c0ad834
commit
269a8c5fdf
1 changed files with 1 additions and 0 deletions
|
@ -884,6 +884,7 @@ gst_dash_demux_reset (GstAdaptiveDemux * ademux)
|
|||
|
||||
demux->n_audio_streams = 0;
|
||||
demux->n_video_streams = 0;
|
||||
demux->n_subtitle_streams = 0;
|
||||
}
|
||||
|
||||
static GstCaps *
|
||||
|
|
Loading…
Reference in a new issue