diff options
-rw-r--r-- | src/audio.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |