diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bank.c | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -1,6 +1,9 @@ #include <stdlib.h> #include <string.h> +#include <fcntl.h> +#include <errno.h> +#include <xas/riff.h> #include <xas/bank.h> xas_bank *xas_bank_new(xas_audio_format format, @@ -86,6 +89,35 @@ error_invalid_format: return -1; } +ssize_t xas_bank_load_file(xas_bank *bank, + size_t entry_index, + const char *path) { + ssize_t ret; + + xas_audio_stream *riff; + + if ((riff = xas_riff_open_file(path, O_RDONLY)) == NULL) { + goto error_riff_open_file; + } + + if ((ret = xas_bank_record(bank, + riff, + entry_index, + bank->entry_size)) < 0) { + goto error_record; + } + + xas_audio_stream_destroy(riff); + + return ret; + +error_record: + xas_audio_stream_destroy(riff); + +error_riff_open_file: + return -1; +} + xas_bank_player *xas_bank_player_new(xas_bank *bank) { xas_bank_player *player; |