aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_volume.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-07 19:00:02 +0100
committerMax Kellermann <max@duempel.org>2009-01-07 19:00:02 +0100
commit04a2138b3329e189c87c6bedb39b8a975da53565 (patch)
treed262ddc9d5a77112b949ec52899f14d43d262de9 /src/pcm_volume.c
parentbb01016400e0f36ac1ae8781314682db5fe207ca (diff)
downloadmpd-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_volume.c')
-rw-r--r--src/pcm_volume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_volume.c b/src/pcm_volume.c
index 7f032a5f3..2dff14ef5 100644
--- a/src/pcm_volume.c
+++ b/src/pcm_volume.c
@@ -74,7 +74,7 @@ pcm_volume_change_24(int32_t *buffer, unsigned num_samples, int volume)
}
void
-pcm_volume(char *buffer, int bufferSize,
+pcm_volume(void *buffer, int bufferSize,
const struct audio_format *format,
int volume)
{