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_plugin.h | |
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 'src/output_plugin.h')
-rw-r--r-- | src/output_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output_plugin.h b/src/output_plugin.h index 8a2bcadac..08d04d87f 100644 --- a/src/output_plugin.h +++ b/src/output_plugin.h @@ -95,7 +95,7 @@ struct audio_output_plugin { * * @return the number of bytes played, or 0 on error */ - size_t (*play)(void *data, const char *chunk, size_t size); + size_t (*play)(void *data, const void *chunk, size_t size); /** * Try to cancel data which may still be in the device's |