summaryrefslogtreecommitdiffstats
path: root/read-sound-file.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-05-26 18:50:28 +0000
committerLennart Poettering <lennart@poettering.net>2008-05-26 18:50:28 +0000
commit64ff61369428cd88f7ede6fb32c72356d520edf2 (patch)
tree693d739a5814b6d4f1abc5a0387bae0eaf3e1220 /read-sound-file.h
parent9010c443230c167398e22ffa3fa7643dfc252f00 (diff)
most complete pulse driver
git-svn-id: file:///home/lennart/svn/public/libcanberra/trunk@9 01b60673-d06a-42c0-afdd-89cb8e0f78ac
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