diff options
author | Chris Robinson <[email protected]> | 2019-06-05 18:54:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-05 18:54:17 -0700 |
commit | 410a5ca62129f03ba7cfc091fa63fc451cdfc24f (patch) | |
tree | 6f14211e49659360cae962653eb78a739ec9c9c6 /Alc/bformatdec.h | |
parent | 5f26205f8fb504c5f6fec3e2b02f0009a4f24be2 (diff) |
Make RealMixParams channel count unsigned
Diffstat (limited to 'Alc/bformatdec.h')
-rw-r--r-- | Alc/bformatdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/bformatdec.h b/Alc/bformatdec.h index ef81b41d..4693fd4b 100644 --- a/Alc/bformatdec.h +++ b/Alc/bformatdec.h @@ -43,7 +43,7 @@ public: const ALsizei (&chanmap)[MAX_OUTPUT_CHANNELS]); /* Decodes the ambisonic input to the given output channels. */ - void process(FloatBufferLine *OutBuffer, const ALsizei OutChannels, + void process(FloatBufferLine *OutBuffer, const ALuint OutChannels, const FloatBufferLine *InSamples, const ALsizei SamplesToDo); /* Retrieves per-order HF scaling factors for "upsampling" ambisonic data. */ |