daft-engineers / vocoder

Open source vocoder designed for the Raspberry Pi.
https://daft-engineers.github.io/vocoder/
Mozilla Public License 2.0
11 stars 0 forks source link

Change signed short to 16 bit int #84

Closed bear-in-the-air closed 1 year ago

bear-in-the-air commented 1 year ago

Signed short is a platform dependent size, to make it consistent with the rest of the code and across platforms a 16 bit int should be used instead. Noticed in a cast in filter.cc but should be checked for everywhere.

Success criteria