feat: replace manual WAV parsing with libsndfile

Co-authored-by: aider (deepseek/deepseek-reasoner) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-12 19:14:35 +00:00
parent a92b5c51e1
commit 3e52142f62

View File

@@ -1,6 +1,6 @@
CC ?= gcc
CFLAGS ?= -Wall -Wextra -g -Isrc
LDFLAGS ?= -ljack -lm -lpthread
LDFLAGS ?= -ljack -lm -lpthread -lsndfile
SRC = src/main.c src/looper.c src/channel.c src/midi.c src/ringbuffer.c src/wav.c
OBJ = $(SRC:.c=.o)