X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fwav.h;h=4a3126c03e6446e2f53163a5d4e9f1676849a5dc;hb=57daf2c90dc409a2aa7030ce6ce996707e99967b;hp=c671df86ced84a8e0e8aec9c9e661551d12e14d8;hpb=96f6f939bc6a9cf64967842d5e13f949110b2d22;p=swftools.git diff --git a/lib/wav.h b/lib/wav.h index c671df8..4a3126c 100644 --- a/lib/wav.h +++ b/lib/wav.h @@ -19,8 +19,8 @@ struct WAV { unsigned int size; }; -int readWAV(char* filename, struct WAV*wav); -int writeWAV(char*filename, struct WAV*wav); -void printWAVInfo(struct WAV*wav); -int convertWAV2mono(struct WAV*src, struct WAV*dest, int rate); +int wav_read(struct WAV*wav, char* filename); +int wav_write(struct WAV*wav, char*filename); +void wav_print(struct WAV*wav); +int wav_convert2mono(struct WAV*src, struct WAV*dest, int rate);