diff options
author | Max Kellermann <max@duempel.org> | 2009-01-08 00:46:38 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-08 00:46:38 +0100 |
commit | 2a83138913dbfc90958c52527fbfc1fc1bbf76e5 (patch) | |
tree | dd46a56d1c4f3ae7d49fdb00ce3f5d06e9628d2e /src/pcm_resample.c | |
parent | aab85577bf7576895ccae0403d5cb95aa113f7f0 (diff) | |
download | mpd-2a83138913dbfc90958c52527fbfc1fc1bbf76e5.tar.gz mpd-2a83138913dbfc90958c52527fbfc1fc1bbf76e5.tar.xz mpd-2a83138913dbfc90958c52527fbfc1fc1bbf76e5.zip |
pcm_resample: use pcm_buffer (1/2)
Return a temporary buffer from pcm_resample_*() and pcm_convert().
Diffstat (limited to 'src/pcm_resample.c')
-rw-r--r-- | src/pcm_resample.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pcm_resample.c b/src/pcm_resample.c index 097e13929..0a6fa0148 100644 --- a/src/pcm_resample.c +++ b/src/pcm_resample.c @@ -23,4 +23,6 @@ void pcm_resample_init(struct pcm_resample_state *state) { memset(state, 0, sizeof(*state)); + + pcm_buffer_init(&state->buffer); } |