diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bank.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -49,7 +49,7 @@ static inline xas_bank_entry *entry_by_index(xas_bank *bank, } ssize_t xas_bank_record(xas_bank *bank, - xas_audio_stream *input, + xas_audio_stream *source, size_t entry_index, size_t count) { xas_bank_entry *entry = entry_by_index(bank, entry_index); @@ -57,7 +57,7 @@ ssize_t xas_bank_record(xas_bank *bank, size_t left = count, index_o = 0; - if (!xas_audio_format_eq(bank->format, input->format)) { + if (!xas_audio_format_eq(bank->format, source->format)) { errno = EINVAL; goto error_invalid_format; @@ -73,7 +73,7 @@ ssize_t xas_bank_record(xas_bank *bank, void *buf; - if ((readlen = xas_audio_stream_read(input, &buf, amount)) < 0) { + if ((readlen = xas_audio_stream_read(source, &buf, amount)) < 0) { goto error_audio_stream_read; } else if (readlen == 0) { break; |