[FFmpeg-cvslog] ffserver: wrap around bandwidth exceeded msg text

Reynaldo H. Verdejo Pinochet git at videolan.org
Mon Oct 5 01:00:27 CEST 2015


ffmpeg | branch: master | Reynaldo H. Verdejo Pinochet <reynaldo at osg.samsung.com> | Sun Oct  4 14:42:27 2015 -0700| [d8c714cb241b0c914eedf8808c5840ac8fee3a38] | committer: Reynaldo H. Verdejo Pinochet

ffserver: wrap around bandwidth exceeded msg text

Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo at osg.samsung.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d8c714cb241b0c914eedf8808c5840ac8fee3a38
---

 ffserver.c |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/ffserver.c b/ffserver.c
index 34bfa89..a45603a 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -1488,9 +1488,11 @@ static int http_parse_request(HTTPContext *c)
                       "Content-type: text/html\r\n"
                       "\r\n"
                       "<html><head><title>Too busy</title></head><body>\r\n"
-                      "<p>The server is too busy to serve your request at this time.</p>\r\n"
-                      "<p>The bandwidth being served (including your stream) is %"PRIu64"kbit/sec, "
-                      "and this exceeds the limit of %"PRIu64"kbit/sec.</p>\r\n"
+                      "<p>The server is too busy to serve your request at "
+                      "this time.</p>\r\n"
+                      "<p>The bandwidth being served (including your stream) "
+                      "is %"PRIu64"kbit/sec, and this exceeds the limit of "
+                      "%"PRIu64"kbit/sec.</p>\r\n"
                       "</body></html>\r\n",
                  current_bandwidth, config.max_bandwidth);
         q += strlen(q);



More information about the ffmpeg-cvslog mailing list