Removed unused function
authorDavid Corvoysier <david.corvoysier@orange.com>
Fri, 19 Oct 2012 08:50:16 +0000 (10:50 +0200)
committerThiago Santos <thiago.sousa.santos@collabora.com>
Wed, 8 May 2013 21:14:03 +0000 (18:14 -0300)
ext/dash/gstdashdemux.c

index 39bd7e4..c3841d0 100644 (file)
@@ -203,7 +203,6 @@ static void gst_dash_demux_download_loop (GstDashDemux * demux);
 static void gst_dash_demux_stop (GstDashDemux * demux);
 static void gst_dash_demux_pause_stream_task (GstDashDemux * demux);
 static void gst_dash_demux_resume_stream_task (GstDashDemux * demux);
-static void gst_dash_demux_pause_download_task (GstDashDemux * demux);
 static void gst_dash_demux_resume_download_task (GstDashDemux * demux);
 static gboolean gst_dash_demux_select_representations (GstDashDemux * demux,
     guint64 current_bitrate);
@@ -1195,15 +1194,6 @@ gst_dash_demux_resume_stream_task (GstDashDemux * demux)
 }
 
 static void
-gst_dash_demux_pause_download_task (GstDashDemux * demux)
-{
-  /* Send a signal to the download task so that it pauses itself */
-  GST_TASK_SIGNAL (demux->download_task);
-  /* Pause it explicitly (if it was not in the COND) */
-  gst_task_pause (demux->download_task);
-}
-
-static void
 gst_dash_demux_resume_download_task (GstDashDemux * demux)
 {
   g_get_current_time (&demux->next_download);