mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
adaptivedemux2: Don't allow stream selection while switching periods
The stream selection is done on the currently outputting tracks, but in order to (de)activate the backing streams we can only do it if the input and output period are identical. Fixes crash when doing stream selection during period migration Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3525>
This commit is contained in:
parent
df311a65da
commit
63b598b409
1 changed files with 7 additions and 0 deletions
|
@ -2355,6 +2355,13 @@ handle_stream_selection (GstAdaptiveDemux * demux, GList * streams,
|
|||
return FALSE;
|
||||
|
||||
TRACKS_LOCK (demux);
|
||||
/* We can't do stream selection if we are migrating between periods */
|
||||
if (demux->input_period && demux->output_period != demux->input_period) {
|
||||
GST_WARNING_OBJECT (demux,
|
||||
"Stream selection while migrating between periods is not possible");
|
||||
TRACKS_UNLOCK (demux);
|
||||
return FALSE;
|
||||
}
|
||||
/* Validate the streams and fill:
|
||||
* tracks : list of tracks corresponding to requested streams
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue