summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2017-04-25 13:22:33 +0300
committerSebastian Dröge <sebastian@centricular.com>2017-04-25 13:22:33 +0300
commit29feef49130d382bcb03961bbd4005e3b9386865 (patch)
treee65184ceba97678ed650a0cdc4a9f1f7cee19366
parent0886160123115f8b9f90ad5811d6bd9a171b92e8 (diff)
downloadgstreamer-plugins-bad-29feef49130d382bcb03961bbd4005e3b9386865.tar.gz
mssdemux: Fix compiler warning
../subprojects/gst-plugins-bad/ext/smoothstreaming/gstmssdemux.c: In function ‘gst_mss_demux_requires_periodical_playlist_update’: ../subprojects/gst-plugins-bad/ext/smoothstreaming/gstmssdemux.c:729:16: error: unused variable ‘mssdemux’ [-Werror=unused-variable] GstMssDemux *mssdemux = GST_MSS_DEMUX_CAST (demux); ^~~~~~~~ cc1: all warnings being treated as errors
-rw-r--r--ext/smoothstreaming/gstmssdemux.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/smoothstreaming/gstmssdemux.c b/ext/smoothstreaming/gstmssdemux.c
index 99b1b4724..7c16fd3fc 100644
--- a/ext/smoothstreaming/gstmssdemux.c
+++ b/ext/smoothstreaming/gstmssdemux.c
@@ -726,7 +726,5 @@ gst_mss_demux_data_received (GstAdaptiveDemux * demux,
static gboolean
gst_mss_demux_requires_periodical_playlist_update (GstAdaptiveDemux * demux)
{
- GstMssDemux *mssdemux = GST_MSS_DEMUX_CAST (demux);
-
return TRUE;
}