summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/en/ao.rst2
-rw-r--r--audio/out/ao_pulse.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/DOCS/man/en/ao.rst b/DOCS/man/en/ao.rst
index ef28c0771c..14f7a5726e 100644
--- a/DOCS/man/en/ao.rst
+++ b/DOCS/man/en/ao.rst
@@ -130,7 +130,7 @@ Available audio output drivers are:
Set the audio buffer size in milliseconds. A higher value buffers
more data, and has a lower probability of buffer underruns. A smaller
value makes the audio stream react faster, e.g. to playback speed
- changes. Default: 1000.
+ changes. Default: 250.
``portaudio``
PortAudio audio output driver. This works on all platforms, and has
diff --git a/audio/out/ao_pulse.c b/audio/out/ao_pulse.c
index a573738deb..fc93c40871 100644
--- a/audio/out/ao_pulse.c
+++ b/audio/out/ao_pulse.c
@@ -621,7 +621,7 @@ const struct ao_driver audio_out_pulse = {
.resume = resume,
.priv_size = sizeof(struct priv),
.priv_defaults = &(const struct priv) {
- .cfg_buffer = 1000,
+ .cfg_buffer = 250,
},
.options = (const struct m_option[]) {
OPT_STRING("host", cfg_host, 0),