aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/converter.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-04-10 13:40:45 -0700
committerChris Robinson <[email protected]>2017-04-10 13:40:45 -0700
commitcaae349fdc16a761cda511f74c4cc5c611f5591a (patch)
treec718ada67628b06d9ca8622431af345719054d39 /Alc/converter.h
parentcc79cb803ad27d92e3e44e89b59c5a6521e06d44 (diff)
Update the given source pointer in the sample converter
Diffstat (limited to 'Alc/converter.h')
-rw-r--r--Alc/converter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/converter.h b/Alc/converter.h
index 51d579b5..5bbbf691 100644
--- a/Alc/converter.h
+++ b/Alc/converter.h
@@ -32,7 +32,7 @@ typedef struct SampleConverter {
SampleConverter *CreateSampleConverter(enum DevFmtType srcType, enum DevFmtType dstType, ALsizei numchans, ALsizei srcRate, ALsizei dstRate);
void DestroySampleConverter(SampleConverter **converter);
-ALsizei SampleConverterInput(SampleConverter *converter, const ALvoid *src, ALsizei *srcframes, ALvoid *dst, ALsizei dstframes);
+ALsizei SampleConverterInput(SampleConverter *converter, const ALvoid **src, ALsizei *srcframes, ALvoid *dst, ALsizei dstframes);
ALsizei SampleConverterAvailableOut(SampleConverter *converter, ALsizei srcframes);
#ifdef __cpluspluc