load_wav

Loads a sample from a RIFF WAV file.

Description

SAMPLE *load_wav(const char *filename);
Loads a sample from a RIFF WAV file. Example:
      SAMPLE *sample = load_wav("scream.wav");
      if (!sample)
	 abort_on_error("Couldn't scare user!");
Returns a pointer to the SAMPLE or NULL on error. Remember to free this sample later to avoid memory leaks.

Related Discussions

The following threads each have code containing this keyword: Note: You can click on the numbers to jump directly to the posts that reference this page.

Related Projects

The following projects include source code containing this keyword: