aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/jack_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-23 09:34:26 +0100
committerMax Kellermann <max@duempel.org>2009-02-23 09:34:26 +0100
commita4dfab2aee0650970af4244c8f4b6c4d738d6c0c (patch)
tree6b0200009da13f5a3d7041f1a0b2e477b8e762da /src/output/jack_plugin.c
parent5a898c15e79ab87d2466e61549fcc20ce115c67e (diff)
downloadmpd-a4dfab2aee0650970af4244c8f4b6c4d738d6c0c.tar.gz
mpd-a4dfab2aee0650970af4244c8f4b6c4d738d6c0c.tar.xz
mpd-a4dfab2aee0650970af4244c8f4b6c4d738d6c0c.zip
output: pass the music chunk pointer as void*, not char*
The meaning of the chunk depends on the audio format; don't suggest a specific format by declaring the pointer as "char*", pass "void*" instead.
Diffstat (limited to 'src/output/jack_plugin.c')
-rw-r--r--src/output/jack_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/jack_plugin.c b/src/output/jack_plugin.c
index 22841f8ef..883695f5f 100644
--- a/src/output/jack_plugin.c
+++ b/src/output/jack_plugin.c
@@ -388,7 +388,7 @@ mpd_jack_write_samples(struct jack_data *jd, const void *src,
}
static size_t
-mpd_jack_play(void *data, const char *buff, size_t size)
+mpd_jack_play(void *data, const void *chunk, size_t size)
{
struct jack_data *jd = data;
const size_t frame_size = audio_format_frame_size(&jd->audio_format);
@@ -421,7 +421,7 @@ mpd_jack_play(void *data, const char *buff, size_t size)
if (space < size)
size = space;
- mpd_jack_write_samples(jd, buff, size);
+ mpd_jack_write_samples(jd, chunk, size);
return size * frame_size;
}