Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
e75e4008
Commit
e75e4008
authored
Dec 20, 2008
by
Avuton Olrich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete http_buffer* stuff that went away with the new curl backend.
parent
04561b60
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
12 deletions
+0
-12
mpd.conf.5
doc/mpd.conf.5
+0
-8
conf.c
src/conf.c
+0
-2
conf.h
src/conf.h
+0
-2
No files found.
doc/mpd.conf.5
View file @
e75e4008
...
@@ -192,14 +192,6 @@ song. Try increasing this if you hear skipping when manually changing songs.
...
@@ -192,14 +192,6 @@ song. Try increasing this if you hear skipping when manually changing songs.
The default is 10%, a little over 1 second of CD-quality audio with the default
The default is 10%, a little over 1 second of CD-quality audio with the default
buffer size.
buffer size.
.TP
.TP
.B http_buffer_size <size in KiB>
This specifies the size of the buffer used for playing HTTP streams. The
default is 128.
.TP
.B http_prebuffer_size <size in KiB>
This specifies how much of an HTTP stream should be buffered before beginning
playback. The default is 32.
.TP
.B http_proxy_host <hostname>
.B http_proxy_host <hostname>
Use to specify the proxy host used for HTTP connections.
Use to specify the proxy host used for HTTP connections.
.TP
.TP
...
...
src/conf.c
View file @
e75e4008
...
@@ -171,8 +171,6 @@ void initConf(void)
...
@@ -171,8 +171,6 @@ void initConf(void)
registerConfigParam
(
CONF_SAMPLERATE_CONVERTER
,
0
,
0
);
registerConfigParam
(
CONF_SAMPLERATE_CONVERTER
,
0
,
0
);
registerConfigParam
(
CONF_AUDIO_BUFFER_SIZE
,
0
,
0
);
registerConfigParam
(
CONF_AUDIO_BUFFER_SIZE
,
0
,
0
);
registerConfigParam
(
CONF_BUFFER_BEFORE_PLAY
,
0
,
0
);
registerConfigParam
(
CONF_BUFFER_BEFORE_PLAY
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_BUFFER_SIZE
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_PREBUFFER_SIZE
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_PROXY_HOST
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_PROXY_HOST
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_PROXY_PORT
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_PROXY_PORT
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_PROXY_USER
,
0
,
0
);
registerConfigParam
(
CONF_HTTP_PROXY_USER
,
0
,
0
);
...
...
src/conf.h
View file @
e75e4008
...
@@ -49,8 +49,6 @@
...
@@ -49,8 +49,6 @@
#define CONF_SAMPLERATE_CONVERTER "samplerate_converter"
#define CONF_SAMPLERATE_CONVERTER "samplerate_converter"
#define CONF_AUDIO_BUFFER_SIZE "audio_buffer_size"
#define CONF_AUDIO_BUFFER_SIZE "audio_buffer_size"
#define CONF_BUFFER_BEFORE_PLAY "buffer_before_play"
#define CONF_BUFFER_BEFORE_PLAY "buffer_before_play"
#define CONF_HTTP_BUFFER_SIZE "http_buffer_size"
#define CONF_HTTP_PREBUFFER_SIZE "http_prebuffer_size"
#define CONF_HTTP_PROXY_HOST "http_proxy_host"
#define CONF_HTTP_PROXY_HOST "http_proxy_host"
#define CONF_HTTP_PROXY_PORT "http_proxy_port"
#define CONF_HTTP_PROXY_PORT "http_proxy_port"
#define CONF_HTTP_PROXY_USER "http_proxy_user"
#define CONF_HTTP_PROXY_USER "http_proxy_user"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment