From a043eb3931b58d9370565734211508af1f83fe94 Mon Sep 17 00:00:00 2001 From: grm Date: Sun, 2 Mar 2025 14:42:46 +0200 Subject: Add template and suppress verbose logging --- src/osc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/osc.c') diff --git a/src/osc.c b/src/osc.c index 16e6894..28e35b4 100644 --- a/src/osc.c +++ b/src/osc.c @@ -66,8 +66,8 @@ osc_load_wav(osc_t * osc, const char * path) return -1; } - printf("Opened %s: \n", path); - printf("frames: %ld sr: %d chan: %d format: %d sections: %d seekable: %d\n", fileInfo.frames, fileInfo.samplerate, fileInfo.channels, fileInfo.format, fileInfo.sections, fileInfo.seekable); + /* printf("Opened %s: \n", path); */ + /* printf("frames: %ld sr: %d chan: %d format: %d sections: %d seekable: %d\n", fileInfo.frames, fileInfo.samplerate, fileInfo.channels, fileInfo.format, fileInfo.sections, fileInfo.seekable); */ // Ensure the WAV file has only one channel if (fileInfo.channels != 1) { -- cgit v1.2.3