diff options
author | Max Kellermann <max@duempel.org> | 2009-01-07 19:00:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-07 19:00:02 +0100 |
commit | 04a2138b3329e189c87c6bedb39b8a975da53565 (patch) | |
tree | d262ddc9d5a77112b949ec52899f14d43d262de9 /src/pcm_mix.c | |
parent | bb01016400e0f36ac1ae8781314682db5fe207ca (diff) | |
download | mpd-04a2138b3329e189c87c6bedb39b8a975da53565.tar.gz mpd-04a2138b3329e189c87c6bedb39b8a975da53565.tar.xz mpd-04a2138b3329e189c87c6bedb39b8a975da53565.zip |
pcm: pass void pointers to PCM functions
In generic PCM functions allowing all sample formats, pass a void
pointer instead of a char pointer.
Diffstat (limited to 'src/pcm_mix.c')
-rw-r--r-- | src/pcm_mix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pcm_mix.c b/src/pcm_mix.c index 0ca5a9a7f..3084051ab 100644 --- a/src/pcm_mix.c +++ b/src/pcm_mix.c @@ -80,7 +80,7 @@ pcm_add_24(int32_t *buffer1, const int32_t *buffer2, } static void -pcm_add(char *buffer1, const char *buffer2, size_t size, +pcm_add(void *buffer1, const void *buffer2, size_t size, int vol1, int vol2, const struct audio_format *format) { @@ -107,7 +107,7 @@ pcm_add(char *buffer1, const char *buffer2, size_t size, } void -pcm_mix(char *buffer1, const char *buffer2, size_t size, +pcm_mix(void *buffer1, const void *buffer2, size_t size, const struct audio_format *format, float portion1) { int vol1; |