aboutsummaryrefslogtreecommitdiff
path: root/src/pcm_resample.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-08 00:47:04 +0100
committerMax Kellermann <max@duempel.org>2009-01-08 00:47:04 +0100
commitbb08679a702f0093077d49f76d5e597f92384fb1 (patch)
treeebab3b485e0c3c9adf9b38eac6b2687d07541430 /src/pcm_resample.c
parent2a83138913dbfc90958c52527fbfc1fc1bbf76e5 (diff)
pcm_resample: use pcm_buffer (2/2)
Use the PCM buffer library for the libsamplerate output buffer.
Diffstat (limited to 'src/pcm_resample.c')
-rw-r--r--src/pcm_resample.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pcm_resample.c b/src/pcm_resample.c
index 0a6fa014..647d9b4f 100644
--- a/src/pcm_resample.c
+++ b/src/pcm_resample.c
@@ -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);
}