From bdecab71a00655b336d90d7c1f3ecc39658a542a Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Fri, 29 Dec 2023 05:09:09 +0100 Subject: Add FIXME --- src/audio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/audio.c b/src/audio.c index bfddf55..c5b03fd 100644 --- a/src/audio.c +++ b/src/audio.c @@ -158,6 +158,7 @@ static void stream_read_callback(pa_stream *s, size_t length, void *userdata) assert(length > 0); /* TODO replace this endlessly growing buffer with a ring buffer? */ + /* FIXME: as this triggers Assertion 'size < (1024*1024*96)' failed at ../src/pulse/xmalloc.c:83, function pa_xrealloc(). Aborting. */ if (a->record_buffer) { a->record_buffer = pa_xrealloc(a->record_buffer, a->record_buffer_length + length); -- cgit