aboutsummaryrefslogtreecommitdiffstats
path: root/alc/converter.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-11 06:58:27 -0700
committerChris Robinson <[email protected]>2019-09-11 06:58:27 -0700
commita895709b6f67586d4aec3c6f0b276b01899cae86 (patch)
tree5b6c3508fefba53008e6799d4a79f8157269e55f /alc/converter.h
parentbe0442c6207cc10fca079a803bbdd8985959b657 (diff)
Fix function declaration
Diffstat (limited to 'alc/converter.h')
-rw-r--r--alc/converter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/converter.h b/alc/converter.h
index 46e57f10..8a7b6f5f 100644
--- a/alc/converter.h
+++ b/alc/converter.h
@@ -43,8 +43,8 @@ struct SampleConverter {
};
using SampleConverterPtr = std::unique_ptr<SampleConverter>;
-SampleConverterPtr CreateSampleConverter(DevFmtType srcType, DevFmtType dstType, ALsizei numchans,
- ALsizei srcRate, ALsizei dstRate, Resampler resampler);
+SampleConverterPtr CreateSampleConverter(DevFmtType srcType, DevFmtType dstType, size_t numchans,
+ ALuint srcRate, ALuint dstRate, Resampler resampler);
struct ChannelConverter {