diff options
author | Chris Robinson <[email protected]> | 2017-01-16 08:59:08 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-01-16 08:59:08 -0800 |
commit | 959812ee13e4869309e3c2cf507f6b0458ad8618 (patch) | |
tree | bbced4cf0170a033239301c0ed1ac60fa8f64979 /Alc/uhjfilter.h | |
parent | 325a49975a762744638b56b6a7ddd2ccd40fda55 (diff) |
Use ALsizei in a few more places
Diffstat (limited to 'Alc/uhjfilter.h')
-rw-r--r-- | Alc/uhjfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/uhjfilter.h b/Alc/uhjfilter.h index cec3463e..48c2fde6 100644 --- a/Alc/uhjfilter.h +++ b/Alc/uhjfilter.h @@ -44,6 +44,6 @@ typedef struct Uhj2Encoder { /* Encodes a 2-channel UHJ (stereo-compatible) signal from a B-Format input * signal. The input must use FuMa channel ordering and scaling. */ -void EncodeUhj2(Uhj2Encoder *enc, ALfloat *restrict LeftOut, ALfloat *restrict RightOut, ALfloat (*restrict InSamples)[BUFFERSIZE], ALuint SamplesToDo); +void EncodeUhj2(Uhj2Encoder *enc, ALfloat *restrict LeftOut, ALfloat *restrict RightOut, ALfloat (*restrict InSamples)[BUFFERSIZE], ALsizei SamplesToDo); #endif /* UHJFILTER_H */ |