49 unsigned int &sample_rate,
51 int &bytes_per_sample,
52 int &first_sample_pos,
53 unsigned int &samples_per_chan);
74 unsigned int sample_rate,
76 int bytes_per_sample);
void wav_write_sample(FILE *fp, short int sample, int bytes_per_sample)
Write one sample to an open WAV file at the current position.
bool wavheader_complete(FILE *fp, unsigned int byte_count)
Complete a WAV header.
bool wavheader_write(FILE *fp, unsigned int sample_rate, int nchans, int bytes_per_sample)
Write a valid RIFF file header.
short int wav_read_sample(FILE *fp, int bytes_per_sample)
Read one sample from an open WAV file at the current position.
bool wavheader_parse(FILE *fp, unsigned int &sample_rate, int &nchans, int &bytes_per_sample, int &first_sample_pos, unsigned int &samples_per_chan)
Read signal information from a given WAV file.