diff options
author | Max Kellermann <max@duempel.org> | 2009-01-07 22:20:30 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-07 22:20:30 +0100 |
commit | 7f34e9410eeb638b44ba1c7f7711844bd410b3a7 (patch) | |
tree | ac6dfdc40ee3ad04733151ba396f153c719822cf /src/pcm_resample.h | |
parent | 97b844ec72a415da962ee37d6f5b5e527ded13d3 (diff) | |
download | mpd-7f34e9410eeb638b44ba1c7f7711844bd410b3a7.tar.gz mpd-7f34e9410eeb638b44ba1c7f7711844bd410b3a7.tar.xz mpd-7f34e9410eeb638b44ba1c7f7711844bd410b3a7.zip |
pcm: added pcm_convert_deinit(), pcm_resample_deinit()
Free memory allocated by libsamplerate when the output or the decoder
is closed.
Diffstat (limited to 'src/pcm_resample.h')
-rw-r--r-- | src/pcm_resample.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pcm_resample.h b/src/pcm_resample.h index c80dfa8a3..69bf6316d 100644 --- a/src/pcm_resample.h +++ b/src/pcm_resample.h @@ -52,6 +52,8 @@ struct pcm_resample_state { void pcm_resample_init(struct pcm_resample_state *state); +void pcm_resample_deinit(struct pcm_resample_state *state); + size_t pcm_resample_16(uint8_t channels, unsigned src_rate, |