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.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/alac/decomp.h b/plugins/alac/decomp.h
new file mode 100644
index 00000000..23dbc527
--- /dev/null
+++ b/plugins/alac/decomp.h
@@ -0,0 +1,13 @@
+#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);
+
+#endif /* __ALAC__DECOMP_H */
+