From acad0292c634dc76d76ae22c1643a5d7f18f5f8d Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 22 May 2021 19:10:08 +1000 Subject: [PATCH] Add a comment. --- research/miniaudio_engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/research/miniaudio_engine.h b/research/miniaudio_engine.h index a9819dae..52eca14a 100644 --- a/research/miniaudio_engine.h +++ b/research/miniaudio_engine.h @@ -2039,7 +2039,7 @@ MA_API ma_result ma_gainer_process_pcm_frames(ma_gainer* pGainer, void* pFramesO pGainer->t = (ma_uint32)ma_min(pGainer->t + frameCount, pGainer->config.smoothTimeInFrames); - #if 0 + #if 0 /* Reference implementation. */ for (iFrame = 0; iFrame < frameCount; iFrame += 1) { /* We can allow the input and output buffers to be null in which case we'll just update the internal timer. */ if (pFramesOut != NULL && pFramesIn != NULL) {