summaryrefslogtreecommitdiff
path: root/plugins/alac/decomp.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/alac/decomp.h')
-rw-r--r--plugins/alac/decomp.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/alac/decomp.h b/plugins/alac/decomp.h
new file mode 100644
index 00000000..47b3a9a7
--- /dev/null
+++ b/plugins/alac/decomp.h
@@ -0,0 +1,17 @@
+#ifndef __ALAC__DECOMP_H
+#define __ALAC__DECOMP_H
+
+typedef struct alac_file alac_file;
+
+alac_file *create_alac(int samplesize, int numchannels);
+void decode_frame(alac_file *alac,
+ unsigned char *inbuffer,
+ void *outbuffer, int *outputsize);
+void alac_set_info(alac_file *alac, char *inputbuffer);
+
+int alac_get_samplerate(alac_file *alac);
+void alac_file_free (alac_file *alac);
+
+
+#endif /* __ALAC__DECOMP_H */
+