diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-27 13:12:02 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-27 13:12:02 +0000 |
commit | b9b39849d8705b0cec5e3ccf8e5ddf49c4a12f42 (patch) | |
tree | 327696f3c6cf56f504747d9e7db11707d6f67290 | |
parent | 5339f63a2bc9e8687df4860df7ae31d33ec09ea3 (diff) | |
download | mpd-b9b39849d8705b0cec5e3ccf8e5ddf49c4a12f42.tar.gz mpd-b9b39849d8705b0cec5e3ccf8e5ddf49c4a12f42.tar.xz mpd-b9b39849d8705b0cec5e3ccf8e5ddf49c4a12f42.zip |
Increasing default buffer_before_play from 0% to 10%.
git-svn-id: https://svn.musicpd.org/mpd/trunk@6290 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | doc/mpd.conf.5 | 3 | ||||
-rw-r--r-- | doc/mpdconf.example | 2 | ||||
-rw-r--r-- | src/playerData.c | 4 |
4 files changed, 6 insertions, 4 deletions
@@ -21,6 +21,7 @@ ver 0.13.0 (2007/??/??) * New playlistmove command for moving songs in stored playlists * New playlistdelete command for deleting songs from 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 ver 0.12.2 (2007/3/20) diff --git a/doc/mpd.conf.5 b/doc/mpd.conf.5 index 48926fd29..efe95167d 100644 --- a/doc/mpd.conf.5 +++ b/doc/mpd.conf.5 @@ -171,7 +171,8 @@ large enough for nearly 12 seconds of CD-quality audio. .B buffer_before_play <0-100%> 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. -The default is 0%. +The default is 10%, a little over 1 second of CD-quality audio with the default +buffer size. .TP .B http_buffer_size <size in KiB> This specifies the size of the buffer used for playing HTTP streams. The diff --git a/doc/mpdconf.example b/doc/mpdconf.example index c6dc24dca..8cd367541 100644 --- a/doc/mpdconf.example +++ b/doc/mpdconf.example @@ -190,7 +190,7 @@ error_file "~/.mpd/mpd.error" # How much of the buffer to fill before beginning to play. # Increase this if you hear skipping when changing songs. # -#buffer_before_play "0%" +#buffer_before_play "10%" # # Similar options for the HTTP stream buffer. If you hear # skipping while playing HTTP streams, you may wish to increase diff --git a/src/playerData.c b/src/playerData.c index e0c3abfe4..30ff6d6d6 100644 --- a/src/playerData.c +++ b/src/playerData.c @@ -31,8 +31,8 @@ int buffered_before_play; int buffered_chunks; -#define DEFAULT_BUFFER_SIZE 2048 -#define DEFAULT_BUFFER_BEFORE_PLAY 0 +#define DEFAULT_BUFFER_SIZE 2048 +#define DEFAULT_BUFFER_BEFORE_PLAY 10 static PlayerData *playerData_pd; |