From 3e0321f49c71a68c9ece6cbe1a759957b57194d2 Mon Sep 17 00:00:00 2001 From: derselbst Date: Fri, 28 Jan 2022 16:32:51 +0100 Subject: [PATCH] Remove FIXME in OSS driver Why shouldn't we reuse the int16 buffer for dithering before streaming to OSS? --- src/drivers/fluid_oss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/fluid_oss.c b/src/drivers/fluid_oss.c index e8611ce9..d4c0950c 100644 --- a/src/drivers/fluid_oss.c +++ b/src/drivers/fluid_oss.c @@ -425,7 +425,7 @@ new_fluid_oss_audio_driver2(fluid_settings_t *settings, fluid_audio_func_t func, goto error_recovery; } - /* allocate the buffers. FIXME!!! don't use interleaved samples */ + /* allocate the buffers. */ dev->buffer = FLUID_MALLOC(dev->buffer_byte_size); dev->buffers[0] = FLUID_ARRAY(float, dev->buffer_size); dev->buffers[1] = FLUID_ARRAY(float, dev->buffer_size);