/* * title = audio.h * by = Kevin Karplus */ #ifndef MAKE_WAV_H #define MAKE_WAV_H // removed filename argument, changed to write to stdout // R. Perry, March 2014 // void write_wav(unsigned long num_samples, int * data, int s_rate); /* open a file named filename, write signed 16-bit values as a * monoaural WAV file at the specified sampling rate * and close the file */ #endif