diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-20 04:32:38 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-20 04:32:38 +0000 |
commit | 0b051094166ad33184100f229931ea0f6f21e176 (patch) | |
tree | 3735e311736b4e72b831d59fbeaf48ce008c621e /src/inputStream_http.c | |
parent | 05889aa3e337ac264c185dd60cec5e5071fe0a31 (diff) | |
download | mpd-0b051094166ad33184100f229931ea0f6f21e176.tar.gz mpd-0b051094166ad33184100f229931ea0f6f21e176.tar.xz mpd-0b051094166ad33184100f229931ea0f6f21e176.zip |
more bug fixes
git-svn-id: https://svn.musicpd.org/mpd/trunk@1108 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputStream_http.c')
-rw-r--r-- | src/inputStream_http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c index 3e97b8ffa..1e88db114 100644 --- a/src/inputStream_http.c +++ b/src/inputStream_http.c @@ -39,7 +39,7 @@ #define HTTP_CONN_STATE_OPEN 3 #define HTTP_CONN_STATE_REOPEN 4 -#define HTTP_BUFFER_SIZE 524289 +#define HTTP_BUFFER_SIZE 131072 #define HTTP_PREBUFFER_SIZE (HTTP_BUFFER_SIZE >> 2) //#define HTTP_PREBUFFER_SIZE 0 @@ -406,7 +406,7 @@ static int getHTTPHello(InputStream * inStream) { data->connState = HTTP_CONN_STATE_OPEN; - /*data->prebuffer = 1;*/ + data->prebuffer = 1; /*mark as unseekable till we actually implement seeking*/ inStream->seekable = 0; |