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
ead82e4d
Commit
ead82e4d
authored
Apr 27, 2005
by
Warren Dukes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change the default max_output_buffer_size from 2048 to 8192
git-svn-id:
https://svn.musicpd.org/mpd/trunk@3226
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
c58d2a2e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
mpd.1
doc/mpd.1
+1
-1
mpdconf.example
doc/mpdconf.example
+1
-1
interface.c
src/interface.c
+1
-1
No files found.
doc/mpd.1
View file @
ead82e4d
...
...
@@ -137,7 +137,7 @@ This specifies the maximum size a command list can be (in kilobytes). The defaul
.TP
.B max_output_buffer_size <size in KB>
This specifies the maximum size of the output buffer to a client (in kilobytes).
The default is
2048
kilobytes.
The default is
8192
kilobytes.
.TP
.B ao_driver <ao plug-in>
This specifies the ao plug-in to use for audio output. Typical values for
...
...
doc/mpdconf.example
View file @
ead82e4d
...
...
@@ -222,7 +222,7 @@ pid_file "~/.mpd/mpd.pid"
# No need to change these unless you know better.
#
#max_command_list_size "2048"
#max_output_buffer_size "
2048
"
#max_output_buffer_size "
8192
"
#
# This will make playlists compatible with normal music
# players.
...
...
src/interface.c
View file @
ead82e4d
...
...
@@ -51,7 +51,7 @@
#define INTERFACE_TIMEOUT_DEFAULT (60)
#define INTERFACE_MAX_CONNECTIONS_DEFAULT (10)
#define INTERFACE_MAX_COMMAND_LIST_DEFAULT (2048*1024)
#define INTERFACE_MAX_OUTPUT_BUFFER_SIZE_DEFAULT (
2048
*1024)
#define INTERFACE_MAX_OUTPUT_BUFFER_SIZE_DEFAULT (
8192
*1024)
/* set this to zero to indicate we have no possible interfaces */
static
int
interface_max_connections
=
0
;
/*INTERFACE_MAX_CONNECTIONS_DEFAULT;*/
...
...
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