mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
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:
parent
b691aece65
commit
c9de81edd4
2 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue