dashdemux: run gst-indent on mpdparser

Run gst-indent on mpdparser to have it stop complaining on every
commit
This commit is contained in:
Thiago Santos 2014-12-29 10:44:19 -03:00
parent 45ae4d7f9c
commit a862ba4b45

View file

@ -2619,8 +2619,7 @@ gst_mpd_client_get_period_index_at_time (GstMpdClient * client,
if (time_offset < 0)
return 0;
for (idx = 0, iter = client->periods; iter;
idx++, iter = g_list_next (iter)) {
for (idx = 0, iter = client->periods; iter; idx++, iter = g_list_next (iter)) {
stream_period = iter->data;
if (stream_period->start <= time_offset
&& stream_period->start + stream_period->duration > time_offset) {