adaptivedemux2: Remove scheduler_lock mutex

Remove the old unused scheduler_lock

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3314>
This commit is contained in:
Jan Schmidt 2022-10-12 02:14:32 +11:00
parent b691aece65
commit c9de81edd4
2 changed files with 0 additions and 3 deletions

View file

@ -73,7 +73,6 @@ struct _GstAdaptiveDemuxPrivate
/* Adaptive scheduling and parsing task */
GstAdaptiveDemuxLoop *scheduler_task;
GMutex scheduler_lock;
/* Callback / timer id for the next manifest update */
guint manifest_updates_cb;

View file

@ -574,7 +574,6 @@ gst_adaptive_demux_init (GstAdaptiveDemux * demux,
g_rec_mutex_init (&demux->priv->manifest_lock);
demux->priv->scheduler_task = gst_adaptive_demux_loop_new ();
g_mutex_init (&demux->priv->scheduler_lock);
g_mutex_init (&demux->priv->api_lock);
g_mutex_init (&demux->priv->segment_lock);
@ -646,7 +645,6 @@ gst_adaptive_demux_finalize (GObject * object)
g_mutex_clear (&demux->priv->buffering_lock);
g_mutex_clear (&demux->priv->scheduler_lock);
gst_adaptive_demux_loop_unref (demux->priv->scheduler_task);
/* The input period is present after a reset, clear it now */