]> git.sesse.net Git - vlc/commitdiff
* httpd: increased buffer size.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 17 Mar 2003 23:48:26 +0000 (23:48 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 17 Mar 2003 23:48:26 +0000 (23:48 +0000)
modules/misc/httpd.c

index 71c217a4a81181978b54ad10231640ef0501a049..eaed824d445421a69db6f7c21897cea5c4341cf9 100644 (file)
@@ -2,7 +2,7 @@
  * httpd.c
  *****************************************************************************
  * Copyright (C) 2001-2003 VideoLAN
- * $Id: httpd.c,v 1.9 2003/03/17 23:42:12 fenrir Exp $
+ * $Id: httpd.c,v 1.10 2003/03/17 23:48:26 fenrir Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -734,7 +734,7 @@ static httpd_stream_t  *_RegisterStream( httpd_sys_t *p_httpt,
     p_stream->pf_get          = NULL;
     p_stream->pf_post         = NULL;
 
-    p_stream->i_buffer_size   = 1024*1024;
+    p_stream->i_buffer_size   = 5*1024*1024;
     p_stream->i_buffer_pos      = 0;
     p_stream->i_buffer_last_pos = 0;
     p_stream->p_buffer        = malloc( p_stream->i_buffer_size );