Commit 3f9e7e3f authored by Jean-Paul Saman's avatar Jean-Paul Saman

Revert "stream_filter/httplive.c: select stream with lowest bandwidth to start playback."

This reverts commit d20cd478.

Conflicts:

	modules/stream_filter/httplive.c
parent c44a8218
......@@ -233,29 +233,6 @@ static hls_stream_t *hls_GetLast(vlc_array_t *hls_stream)
return (hls_stream_t *) hls_Get(hls_stream, count);
}
static int hls_LowestBandwidthStream(vlc_array_t *hls_stream)
{
int count = vlc_array_count(hls_stream);
int i_lowest = 0;
uint64_t lowest = 0;
for (int i = 0; i < count; i++)
{
hls_stream_t *hls = (hls_stream_t *) vlc_array_item_at_index(hls_stream, i);
if (lowest == 0)
{
lowest = hls->bandwidth;
i_lowest = i;
}
else if (hls->bandwidth < lowest)
{
lowest = hls->bandwidth;
i_lowest = i;
}
}
return i_lowest;
}
/* Segment */
static segment_t *segment_New(hls_stream_t* hls, int duration, char *uri)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment