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/bs2b.h | |
parent | e165cae3cddec51332660bdb1e69d7fa5f687e68 (diff) |
Use size_t for the post-process sample length
Diffstat (limited to 'alc/bs2b.h')
-rw-r--r-- | alc/bs2b.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,6 +84,6 @@ int bs2b_get_srate(bs2b *bs2b); /* Clear buffer */ void bs2b_clear(bs2b *bs2b); -void bs2b_cross_feed(bs2b *bs2b, float *Left, float *Right, int SamplesToDo); +void bs2b_cross_feed(bs2b *bs2b, float *Left, float *Right, size_t SamplesToDo); #endif /* BS2B_H */ |