summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-09-03 19:51:12 +0200
committerLennart Poettering <lennart@poettering.net>2008-09-03 19:51:12 +0200
commitcbd8e60f6cae11d3f26c8cd4ce27450e877f259f (patch)
treea67085d0898c661d9faeb754f6ff39167f213ccf /src/utils
parent79009d223582277c389ed1bfae792cbfbbc061e7 (diff)
use PA_STREAM_EARLY_REQUESTS for OSS streams
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/padsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/padsp.c b/src/utils/padsp.c
index 2c88c483..f2fdede4 100644
--- a/src/utils/padsp.c
+++ b/src/utils/padsp.c
@@ -1003,7 +1003,7 @@ static int create_playback_stream(fd_info *i) {
attr.prebuf = (uint32_t) i->fragment_size;
attr.minreq = (uint32_t) i->fragment_size;
- flags = PA_STREAM_INTERPOLATE_TIMING|PA_STREAM_AUTO_TIMING_UPDATE;
+ flags = PA_STREAM_INTERPOLATE_TIMING|PA_STREAM_AUTO_TIMING_UPDATE|PA_STREAM_EARLY_REQUESTS;
if (i->play_precork) {
flags |= PA_STREAM_START_CORKED;
debug(DEBUG_LEVEL_NORMAL, __FILE__": creating stream corked\n");