aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-03-05 16:17:47 -0800
committerChris Robinson <[email protected]>2014-03-05 16:38:02 -0800
commit143f786d1ae7415c0389d4b1cb04fbbd8472b14f (patch)
treec75d6a29373dce843c639723e77363dbe1c52812 /OpenAL32/Include
parentbf4ddfef6d01b2edb6a99e4691cc95f414890f2c (diff)
Move the sample conversion routines to a separate file
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/sample_cvt.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenAL32/Include/sample_cvt.h b/OpenAL32/Include/sample_cvt.h
new file mode 100644
index 00000000..12bb1fa6
--- /dev/null
+++ b/OpenAL32/Include/sample_cvt.h
@@ -0,0 +1,9 @@
+#ifndef SAMPLE_CVT_H
+#define SAMPLE_CVT_H
+
+#include "AL/al.h"
+#include "alBuffer.h"
+
+void ConvertData(ALvoid *dst, enum UserFmtType dstType, const ALvoid *src, enum UserFmtType srcType, ALsizei numchans, ALsizei len, ALsizei align);
+
+#endif /* SAMPLE_CVT_H */