diff options
author | grm <grm@eyesin.space> | 2025-03-02 14:42:46 +0200 |
---|---|---|
committer | grm <grm@eyesin.space> | 2025-03-02 14:42:46 +0200 |
commit | a043eb3931b58d9370565734211508af1f83fe94 (patch) | |
tree | 92df69f9d7511e83b88df5604558b669c5b2a899 /src/osc.c | |
parent | 092f4e2740a2e59a6b6c5aa064f59d9970790e23 (diff) | |
download | synth-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |