From e6d90d4e83263c37bbee878aed782bf13669daa1 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 21 Oct 2008 22:53:16 +0200 Subject: pcm_utils: added pcm_convert_init() Instead of manually calling memset(0) on the pcm_convert_state struct, client code should use a library function from pcm_utils.c. This way, we can change the semantics of the struct easily. --- src/pcm_utils.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/pcm_utils.c') diff --git a/src/pcm_utils.c b/src/pcm_utils.c index 29932ba4b..5d315bdb3 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -205,6 +205,11 @@ void pcm_mix(char *buffer1, const char *buffer2, size_t size, pcm_add(buffer1, buffer2, size, vol1, 1000 - vol1, format); } +void pcm_convert_init(struct pcm_convert_state *state) +{ + memset(state, 0, sizeof(*state)); +} + #ifdef HAVE_LIBSAMPLERATE static int pcm_resample_get_converter(void) { -- cgit v1.2.3