[vlc-commits] commit: stream_filter/httplive.c: better wording (Jean-Paul Saman )
git at videolan.org
git at videolan.org
Wed Dec 22 09:59:14 CET 2010
vlc | branch: master | Jean-Paul Saman <jean-paul.saman at m2x.nl> | Wed Dec 22 09:55:59 2010 +0100| [cf6693379fe97500b5f091576e74c23c4308d85c] | committer: Jean-Paul Saman
stream_filter/httplive.c: better wording
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cf6693379fe97500b5f091576e74c23c4308d85c
---
modules/stream_filter/httplive.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/stream_filter/httplive.c b/modules/stream_filter/httplive.c
index 11bef2b..617bc82 100644
--- a/modules/stream_filter/httplive.c
+++ b/modules/stream_filter/httplive.c
@@ -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;
}
More information about the vlc-commits
mailing list