From dba88558d122ae939bc4cbaad4c0c3dfedd3c166 Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 10 May 2021 21:20:42 +1000 Subject: [PATCH] Fix example code in documentation. --- research/miniaudio_engine.h | 1 + 1 file changed, 1 insertion(+) diff --git a/research/miniaudio_engine.h b/research/miniaudio_engine.h index 99f49603..57bb1dd7 100644 --- a/research/miniaudio_engine.h +++ b/research/miniaudio_engine.h @@ -481,6 +481,7 @@ pointer to the processing function and the number of input and output buses. Exa static ma_node_vtable my_custom_node_vtable = { my_custom_node_process_pcm_frames, // The function that will be called process your custom node. This is where you'd implement your effect processing. + NULL, // Optional. A callback for calculating the number of input frames that are required to process a specified number of output frames. 2, // 2 input buses. 1, // 1 output bus. 0 // Default flags.