resampler icon indicating copy to clipboard operation
resampler copied to clipboard

A Simple and Efficient Audio Resampler Implementation in C

Results 2 resampler issues
Sort by recently updated
recently updated
newest added

你好,我想请问下,如何修改可以实现自定义长度的上采样呢?比如我的输入为长160,输出想为256长度或者输出为256,下采样到160,应该怎么做呢?非常感谢

fix out-of-bounds read (and garbage last field) when outputSize % 2 == 1 demonstration ```c int16_t input_buffer[1024]; for (int i = 0; i < 1024; i++) { input_buffer[i] = i...