summaryrefslogtreecommitdiffstats
path: root/src/osc.c
diff options
context:
space:
mode:
authorgrm <grm@eyesin.space>2025-03-02 14:42:46 +0200
committergrm <grm@eyesin.space>2025-03-02 14:42:46 +0200
commita043eb3931b58d9370565734211508af1f83fe94 (patch)
tree92df69f9d7511e83b88df5604558b669c5b2a899 /src/osc.c
parent092f4e2740a2e59a6b6c5aa064f59d9970790e23 (diff)
downloadsynth-project-a043eb3931b58d9370565734211508af1f83fe94.tar.gz
synth-project-a043eb3931b58d9370565734211508af1f83fe94.tar.bz2
synth-project-a043eb3931b58d9370565734211508af1f83fe94.zip
Add template and suppress verbose logging
Diffstat (limited to 'src/osc.c')
-rw-r--r--src/osc.c4
1 files changed, 2 insertions, 2 deletions
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) {