pcm_resample: use pcm_buffer (2/2)

Use the PCM buffer library for the libsamplerate output buffer.
This commit is contained in:
Max Kellermann
2009-01-08 00:47:04 +01:00
parent 2a83138913
commit bb08679a70
3 changed files with 14 additions and 18 deletions

View File

@@ -17,6 +17,7 @@
*/
#include "pcm_resample.h"
#include "config.h"
#include <string.h>
@@ -24,5 +25,10 @@ void pcm_resample_init(struct pcm_resample_state *state)
{
memset(state, 0, sizeof(*state));
#ifdef HAVE_LIBSAMPLERATE
pcm_buffer_init(&state->in);
pcm_buffer_init(&state->out);
#endif
pcm_buffer_init(&state->buffer);
}