summaryrefslogtreecommitdiffstats
path: root/read-sound-file.h
diff options
context:
space:
mode:
Diffstat (limited to 'read-sound-file.h')
-rw-r--r--read-sound-file.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/read-sound-file.h b/read-sound-file.h
index 8dcc1e0..5ab7e66 100644
--- a/read-sound-file.h
+++ b/read-sound-file.h
@@ -38,7 +38,11 @@ unsigned ca_sound_file_get_nchannels(ca_sound_file *f);
unsigned ca_sound_file_get_rate(ca_sound_file *f);
ca_sample_type_t ca_sound_file_get_sample_type(ca_sound_file *f);
+size_t ca_sound_file_get_size(ca_sound_file *f);
+
int ca_sound_file_read_int16(ca_sound_file *f, int16_t *d, unsigned *n);
int ca_sound_file_read_uint8(ca_sound_file *f, uint8_t *d, unsigned *n);
+int ca_sound_file_read_arbitrary(ca_sound_file *f, void *d, size_t *n);
+
#endif