diff options
author | Chris Robinson <[email protected]> | 2019-08-25 15:36:40 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-25 15:36:40 -0700 |
commit | 88a8bf903b08cd93ea7028a4c726f39e4cde7c79 (patch) | |
tree | b24161d1c89d9335262787a8b0c7c930f2976c0e /alc/bformatdec.h | |
parent | e165cae3cddec51332660bdb1e69d7fa5f687e68 (diff) |
Use size_t for the post-process sample length
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 dbde90c8..98cbb022 100644 --- a/alc/bformatdec.h +++ b/alc/bformatdec.h @@ -50,7 +50,7 @@ public: /* Decodes the ambisonic input to the given output channels. */ void process(const al::span<FloatBufferLine> OutBuffer, const FloatBufferLine *InSamples, - const ALsizei SamplesToDo); + const size_t SamplesToDo); /* Retrieves per-order HF scaling factors for "upsampling" ambisonic data. */ static std::array<ALfloat,MAX_AMBI_ORDER+1> GetHFOrderScales(const ALsizei in_order, |