dashdemux: remove unused segment attribute

It was never used, only initialized
This commit is contained in:
Thiago Santos 2015-01-14 23:11:15 -03:00
parent 3055bb331a
commit fb760a563c
2 changed files with 0 additions and 6 deletions

View file

@ -330,8 +330,6 @@ gst_dash_demux_class_init (GstDashDemuxClass * klass)
static void
gst_dash_demux_init (GstDashDemux * demux)
{
gst_segment_init (&demux->segment, GST_FORMAT_TIME);
/* Properties */
demux->max_buffering_time = DEFAULT_MAX_BUFFERING_TIME * GST_SECOND;
demux->bandwidth_usage = DEFAULT_BANDWIDTH_USAGE;
@ -655,8 +653,6 @@ gst_dash_demux_reset (GstAdaptiveDemux * ademux)
demux->client = NULL;
}
demux->client = gst_mpd_client_new ();
gst_segment_init (&demux->segment, GST_FORMAT_TIME);
}
static GstCaps *

View file

@ -86,8 +86,6 @@ struct _GstDashDemux
GSList *next_periods;
GstSegment segment;
GstMpdClient *client; /* MPD client */
GMutex client_lock;