aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/bformatdec.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-01-29 16:42:02 -0800
committerChris Robinson <[email protected]>2017-01-29 16:42:02 -0800
commit071b83ba523b0bae6f86482190677b4e52fb6082 (patch)
tree19c011173eecb56dd7d92d83608cfb3507d9f8fa /Alc/bformatdec.h
parent55a2474d7e5ad39d4dc1c07082314bb26a528335 (diff)
Replace more ALuint with ALsizei
Diffstat (limited to 'Alc/bformatdec.h')
-rw-r--r--Alc/bformatdec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/bformatdec.h b/Alc/bformatdec.h
index 7024b003..06c14ec3 100644
--- a/Alc/bformatdec.h
+++ b/Alc/bformatdec.h
@@ -32,7 +32,7 @@ enum BFormatDecFlags {
struct BFormatDec *bformatdec_alloc();
void bformatdec_free(struct BFormatDec *dec);
int bformatdec_getOrder(const struct BFormatDec *dec);
-void bformatdec_reset(struct BFormatDec *dec, const struct AmbDecConf *conf, ALsizei chancount, ALuint srate, const ALuint chanmap[MAX_OUTPUT_CHANNELS], int flags);
+void bformatdec_reset(struct BFormatDec *dec, const struct AmbDecConf *conf, ALsizei chancount, ALuint srate, const ALsizei chanmap[MAX_OUTPUT_CHANNELS], int flags);
/* Decodes the ambisonic input to the given output channels. */
void bformatdec_process(struct BFormatDec *dec, ALfloat (*restrict OutBuffer)[BUFFERSIZE], ALsizei OutChannels, const ALfloat (*restrict InSamples)[BUFFERSIZE], ALsizei SamplesToDo);