Displaying 2 results from an estimated 2 matches for "zhou2".
Did you mean:
zhou
2019 Nov 06
0
【SPEEX】 use speex resample make noise
...as usual.
>
> int main()
> {
> int err;
> SpeexResamplerState *speex_resampler;
> speex_resampler = speex_resampler_init(1, 16000, 48000, 10, &err);
> FILE *fp = fopen("/data/zhou.wav", "rb+");
> FILE *fp2 = fopen("/data/zhou2.wav", "ab+");
> spx_int16_t inbuff[640] = {0};
> spx_int16_t outbuff[1920] = {0};
> spx_uint32_t inlen = 640;
> spx_uint32_t outlen = 1920;
> while (1)
> {
> speex_resampler_reset_mem(speex_resampler);
> int len...
2019 Nov 05
0
【SPEEX】 use speex resample make noise
...confirm?
>
> int main()
> {
> SpeexResamplerState *speex_resampler;
> int err;
> speex_resampler = speex_resampler_init(1, 16000, 48000, 10, &err);
> FILE *fp = fopen("/data/zhou.wav", "rb+");
> FILE *fp2 = fopen("/data/zhou2.wav", "ab+");
> spx_int16_t inbuff[640] = {0};
> spx_int16_t outbuff[1920] = {0};
> spx_uint32_t inlen = 640;
> spx_uint32_t outlen = 1920;
> speex_resampler_skip_zeros(speex_resampler);
> while (1)
> {
> int len = f...