X-Git-Url: https://code.delx.au/pulseaudio/blobdiff_plain/f46799579f438125b695dced4edf8bca05cbe90a..4a5f48e7a42f997793db76e2001b7c252f8d93fe:/src/modules/bluetooth/module-bluez5-device.c diff --git a/src/modules/bluetooth/module-bluez5-device.c b/src/modules/bluetooth/module-bluez5-device.c index 287e7639..61723f86 100644 --- a/src/modules/bluetooth/module-bluez5-device.c +++ b/src/modules/bluetooth/module-bluez5-device.c @@ -458,7 +458,7 @@ static int a2dp_process_push(struct userdata *u) { pa_log_error("SBC decoding error (%li)", (long) decoded); pa_memblock_release(memchunk.memblock); pa_memblock_unref(memchunk.memblock); - return -1; + return 0; } /* Reset frame length, it can be changed due to bitpool change */ @@ -1095,10 +1095,12 @@ static void thread_func(void *userdata) { if (n_read < 0) goto io_fail; - /* We just read something, so we are supposed to write something, too */ - pending_read_bytes += n_read; - do_write += pending_read_bytes / u->write_block_size; - pending_read_bytes = pending_read_bytes % u->write_block_size; + if (n_read > 0) { + /* We just read something, so we are supposed to write something, too */ + pending_read_bytes += n_read; + do_write += pending_read_bytes / u->write_block_size; + pending_read_bytes = pending_read_bytes % u->write_block_size; + } } }