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
b9b39849
Commit
b9b39849
authored
May 27, 2007
by
J. Alexander Treuman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increasing default buffer_before_play from 0% to 10%.
git-svn-id:
https://svn.musicpd.org/mpd/trunk@6290
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
5339f63a
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
ChangeLog
ChangeLog
+1
-0
mpd.conf.5
doc/mpd.conf.5
+2
-1
mpdconf.example
doc/mpdconf.example
+1
-1
playerData.c
src/playerData.c
+1
-1
No files found.
ChangeLog
View file @
b9b39849
...
@@ -21,6 +21,7 @@ ver 0.13.0 (2007/??/??)
...
@@ -21,6 +21,7 @@ ver 0.13.0 (2007/??/??)
* New playlistmove command for moving songs in stored playlists
* New playlistmove command for moving songs in stored playlists
* New playlistdelete command for deleting songs from stored playlists
* New playlistdelete command for deleting songs from stored playlists
* New rename command for renaming stored playlists
* New rename command for renaming stored playlists
* Increased default buffer_before_play from 0% to 10% to prevent skipping
* Lots of bug fixes, cleaned up code, and performance improvements
* Lots of bug fixes, cleaned up code, and performance improvements
ver 0.12.2 (2007/3/20)
ver 0.12.2 (2007/3/20)
...
...
doc/mpd.conf.5
View file @
b9b39849
...
@@ -171,7 +171,8 @@ large enough for nearly 12 seconds of CD-quality audio.
...
@@ -171,7 +171,8 @@ large enough for nearly 12 seconds of CD-quality audio.
.B buffer_before_play <0-100%>
.B buffer_before_play <0-100%>
This specifies how much of the audio buffer should be filled before playing a
This specifies how much of the audio buffer should be filled before playing a
song. Try increasing this if you hear skipping when manually changing songs.
song. Try increasing this if you hear skipping when manually changing songs.
The default is 0%.
The default is 10%, a little over 1 second of CD-quality audio with the default
buffer size.
.TP
.TP
.B http_buffer_size <size in KiB>
.B http_buffer_size <size in KiB>
This specifies the size of the buffer used for playing HTTP streams. The
This specifies the size of the buffer used for playing HTTP streams. The
...
...
doc/mpdconf.example
View file @
b9b39849
...
@@ -190,7 +190,7 @@ error_file "~/.mpd/mpd.error"
...
@@ -190,7 +190,7 @@ error_file "~/.mpd/mpd.error"
# How much of the buffer to fill before beginning to play.
# How much of the buffer to fill before beginning to play.
# Increase this if you hear skipping when changing songs.
# Increase this if you hear skipping when changing songs.
#
#
#buffer_before_play "0%"
#buffer_before_play "
1
0%"
#
#
# Similar options for the HTTP stream buffer. If you hear
# Similar options for the HTTP stream buffer. If you hear
# skipping while playing HTTP streams, you may wish to increase
# skipping while playing HTTP streams, you may wish to increase
...
...
src/playerData.c
View file @
b9b39849
...
@@ -32,7 +32,7 @@ int buffered_before_play;
...
@@ -32,7 +32,7 @@ int buffered_before_play;
int
buffered_chunks
;
int
buffered_chunks
;
#define DEFAULT_BUFFER_SIZE 2048
#define DEFAULT_BUFFER_SIZE 2048
#define DEFAULT_BUFFER_BEFORE_PLAY
0
#define DEFAULT_BUFFER_BEFORE_PLAY
1
0
static
PlayerData
*
playerData_pd
;
static
PlayerData
*
playerData_pd
;
...
...
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