mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
pulse-server: limit capture blocks to fragsize
Don't send larger chunks than the fragsize. Some clients don't like this. Also checked with #2418. Fixes #2711
This commit is contained in:
parent
bd584ca8c0
commit
00a234daf2
1 changed files with 1 additions and 0 deletions
|
|
@ -1343,6 +1343,7 @@ do_process_done(struct spa_loop *loop,
|
|||
|
||||
while ((uint32_t)avail >= stream->attr.fragsize) {
|
||||
towrite = SPA_MIN(avail, MAX_BLOCK);
|
||||
towrite = SPA_MIN((uint32_t)avail, stream->attr.fragsize);
|
||||
towrite = SPA_ROUND_DOWN(towrite, stream->frame_size);
|
||||
|
||||
msg = message_alloc(impl, stream->channel, towrite);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue