From c85993ccf4582f61cd02840120166cf301cb378c Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 16 Jan 2021 21:54:08 +1000 Subject: [PATCH] Scale the volume up a bit for the vocoder example. --- research/_examples/duplex_effect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/research/_examples/duplex_effect.c b/research/_examples/duplex_effect.c index 2312b5ac..47f6003d 100644 --- a/research/_examples/duplex_effect.c +++ b/research/_examples/duplex_effect.c @@ -88,7 +88,7 @@ int main(int argc, char** argv) ma_node_attach_output_bus(&g_vocoderNode, 0, ma_node_graph_get_endpoint(&g_nodeGraph), 0); /* Amplify the volume of the vocoder output because in my testing it is a bit quiet. */ - ma_node_set_output_bus_volume(&g_vocoderNode, 0, 2); + ma_node_set_output_bus_volume(&g_vocoderNode, 0, 4); /* Excite/modulator. Attached to input bus 0 of the vocoder node. */