audio: Increase per tee branch buffer size. Fixes #1147

This commit is contained in:
Thomas Adamcik 2015-04-26 23:07:10 +02:00
parent a72c9c88c9
commit b80361ccb2
2 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,10 @@ Bug fix release.
- HTTP: Make event broadcasts work with Tornado 2.3, the previous threading fix
broke this.
- Audio: Fix for :issue:`1097` tuned down the buffer size in the queue. Turns
out this can cause distortions in certain cases. Give this an other go with
a more generous buffer size. (Fixes: :issue:`1147`)
v1.0.1 (2015-04-23)
===================

View File

@ -164,7 +164,7 @@ class _Outputs(gst.Bin):
# All tee branches need a queue in front of them.
# But keep the queue short so the volume change isn't to slow:
queue = gst.element_factory_make('queue')
queue.set_property('max-size-buffers', 5)
queue.set_property('max-size-buffers', 15)
self.add(element)
self.add(queue)
queue.link(element)