]> git.sesse.net Git - vlc/commitdiff
stream_filter/httplive.c: better wording
authorJean-Paul Saman <jean-paul.saman@m2x.nl>
Wed, 22 Dec 2010 08:55:59 +0000 (09:55 +0100)
committerJean-Paul Saman <jean-paul.saman@m2x.nl>
Wed, 22 Dec 2010 08:55:59 +0000 (09:55 +0100)
modules/stream_filter/httplive.c

index 11bef2bf8cac709d3c4fae7208990b068544a6e8..617bc827053b2b2e29e92bc39cac6b821548cfab 100644 (file)
@@ -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;
         }