summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2009-07-20 19:09:19 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2009-07-20 19:09:19 +0200
commitb3c55f5ce5301d218596b199c893232802948a42 (patch)
treeda6a68405b1fd4b9ee7529d7e1fa3a89f09548e5
parent8bfd80e5a2bef03ec333884eb999fbd492cd659e (diff)
pulsesink: set some values to their defaults
Set the minreq and maxlength buffer attributes to -1 to let puleseaudio select a sensible value.
-rw-r--r--ext/pulse/pulsesink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c
index 5373cdd37..d80d5cfae 100644
--- a/ext/pulse/pulsesink.c
+++ b/ext/pulse/pulsesink.c
@@ -619,9 +619,9 @@ gst_pulseringbuffer_acquire (GstRingBuffer * buf, GstRingBufferSpec * spec)
* when we cause an underrun, which causes time to continue. */
memset (&buf_attr, 0, sizeof (buf_attr));
buf_attr.tlength = spec->segtotal * spec->segsize;
- buf_attr.maxlength = buf_attr.tlength * 2;
+ buf_attr.maxlength = -1;
buf_attr.prebuf = 0;
- buf_attr.minreq = spec->segsize;
+ buf_attr.minreq = -1;
GST_INFO_OBJECT (psink, "tlength: %d", buf_attr.tlength);
GST_INFO_OBJECT (psink, "maxlength: %d", buf_attr.maxlength);