Commit cf669337 authored by Jean-Paul Saman's avatar Jean-Paul Saman

stream_filter/httplive.c: better wording

parent a2beee05
......@@ -885,8 +885,8 @@ static int Download(stream_t *s, hls_stream_t *hls, segment_t *segment, int *cur
if (estimated > segment->duration)
{
msg_Err(s, "cannot quarantee smooth playback");
msg_Warn(s,"downloading takes (%ds) takes longer then playback (%ds) of segment %d",
estimated, segment->duration, segment->sequence);
msg_Warn(s,"downloading of segment %d takes %ds, which is longer then its playback (%ds)",
segment->sequence, estimated, segment->duration);
vlc_mutex_unlock(&segment->lock);
return VLC_EGENERIC;
}
......
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