Audio file format specific decompression routines. More...

Go to the source code of this file.
Functions | |
| int | modplug_open (struct audio_file *fd, const char *ext) |
| Open a modplug file. | |
| void | modplug_close (struct audio_file *fd) |
| Close and clean up the modplug file. | |
| size_t | modplug_read (struct audio_file *fd, int16_t *buf, size_t len) |
| Read data from the modplug file and place it in buf. | |
| void | modplug_seek (struct audio_file *fd, int len, int rel) |
| Seek the modplug file a relatime amount of seconds. | |
| int | mp3_open (struct audio_file *fd, const char *ext) |
| Open an mp3 file. | |
| void | mp3_close (struct audio_file *fd) |
| Close and clean up the mp3 file. | |
| size_t | mp3_read (struct audio_file *fd, int16_t *buf, size_t len) |
| Read data from the mp3 file and place it in buf. | |
| void | mp3_seek (struct audio_file *fd, int len, int rel) |
| Seek the mp3 file a relatime amount of seconds. | |
| int | sndfile_open (struct audio_file *fd, const char *ext) |
| Open a soundfile. | |
| void | sndfile_close (struct audio_file *fd) |
| Close the soundfile. | |
| size_t | sndfile_read (struct audio_file *fd, int16_t *buf, size_t len) |
| Read data from the soundfile and place it in buf. | |
| void | sndfile_seek (struct audio_file *fd, int len, int rel) |
| Seek a relative amount in seconds in the current file handle. | |
| int | vorbis_open (struct audio_file *fd, const char *ext) |
| Open an Ogg Vorbis file. | |
| void | vorbis_close (struct audio_file *fd) |
| Close and clean up the Ogg Vorbis file. | |
| size_t | vorbis_read (struct audio_file *fd, int16_t *buf, size_t len) |
| Read data from the Ogg Vorbis file and place it in buf. | |
| void | vorbis_seek (struct audio_file *fd, int len, int rel) |
| Seek a relative amount in seconds in the current file handle. | |
Audio file format specific decompression routines.
Definition in file audio_format.h.
1.6.3