gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 58924be793b2b3a7b3b460bffa079950f6fac4bd
parent 920269ca20820eb2b10446eeb846bc9c508519db
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 27 Jan 2022 23:59:30 +0100

do not log "Deliver Audio" too often

Diffstat:
Msource/virusTestConsole/virusTestConsole.cpp | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/source/virusTestConsole/virusTestConsole.cpp b/source/virusTestConsole/virusTestConsole.cpp @@ -75,7 +75,10 @@ void audioCallback(dsp56k::Audio* audio) ctr++; - if((ctr & 0xfff) == 0) {LOG("Deliver Audio");} + if((ctr & 0x1fff) == 0) + { + LOG("Deliver Audio"); + } audio->processAudioInterleaved(audioIn, audioOut, sampleCount, channelsIn, channelsOut);