From 65837e669bf8b02819f02db9d7d21a47babe1356 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 26 May 2009 03:32:26 +0200 Subject: add proper multichannel support (includes of WAVEX files) --- src/read-vorbis.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/read-vorbis.h') diff --git a/src/read-vorbis.h b/src/read-vorbis.h index c98c7e5..6edbcaf 100644 --- a/src/read-vorbis.h +++ b/src/read-vorbis.h @@ -24,6 +24,8 @@ #include #include +#include "read-sound-file.h" + typedef struct ca_vorbis ca_vorbis; int ca_vorbis_open(ca_vorbis **v, FILE *f); @@ -31,6 +33,7 @@ void ca_vorbis_close(ca_vorbis *v); unsigned ca_vorbis_get_nchannels(ca_vorbis *v); unsigned ca_vorbis_get_rate(ca_vorbis *v); +const ca_channel_position_t* ca_vorbis_get_channel_map(ca_vorbis *v); int ca_vorbis_read_s16ne(ca_vorbis *v, int16_t *d, size_t *n); -- cgit