diff options
author | Max Kellermann <max@duempel.org> | 2009-02-23 09:34:26 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-23 09:34:26 +0100 |
commit | a4dfab2aee0650970af4244c8f4b6c4d738d6c0c (patch) | |
tree | 6b0200009da13f5a3d7041f1a0b2e477b8e762da /src/output/osx_plugin.c | |
parent | 5a898c15e79ab87d2466e61549fcc20ce115c67e (diff) | |
download | mpd-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 '')
-rw-r--r-- | src/output/osx_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/osx_plugin.c b/src/output/osx_plugin.c index ffeb8cd5e..b9fb8c15b 100644 --- a/src/output/osx_plugin.c +++ b/src/output/osx_plugin.c @@ -257,7 +257,7 @@ osx_openDevice(void *data, struct audio_format *audioFormat) } static size_t -osx_play(void *data, const char *playChunk, size_t size) +osx_play(void *data, const void *chunk, size_t size) { OsxData *od = data; size_t start, nbytes; @@ -291,7 +291,7 @@ osx_play(void *data, const char *playChunk, size_t size) if (nbytes > size) nbytes = size; - memcpy(od->buffer + start, playChunk, nbytes); + memcpy(od->buffer + start, chunk, nbytes); od->len += nbytes; g_mutex_unlock(od->mutex); |