search for: write_waveform

Displaying 1 result from an estimated 1 matches for "write_waveform".

2010 Nov 10
0
bug fix for speex_resampler_reset_mem?
...aveform_as_linear(infileName, &rate, &num_samples, &num_channels); SpeexResamplerState *state = speex_resampler_init_frac(num_channels, in_rate, out_rate, in_rate, out_rate, quality, &error); speex_resampler_skip_zeros(state); speex_resampler_process_int(state, 0, input_data, ...) write_waveform(...) speex_resampler_reset_mem(m_resampler_state); speex_resampler_skip_zeros(m_resampler_state); speex_resampler_process_int(state, 0, input_data, ...) write_waveform(...) speex_resampler_destroy(state); When I run it this way, my two output waveforms are not identical on a binary basis. Changi...