aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/shout_ogg.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-10 21:28:25 +0100
committerMax Kellermann <max@duempel.org>2009-02-10 21:28:25 +0100
commitb27d9e055bb51a4e5eff04c6e9237009d4578c7b (patch)
tree024a37d08209a16d6bc618b96d31cb1f786139b1 /src/output/shout_ogg.c
parent12756c1b55dcf95364bb6ce5a476387e99067478 (diff)
downloadmpd-b27d9e055bb51a4e5eff04c6e9237009d4578c7b.tar.gz
mpd-b27d9e055bb51a4e5eff04c6e9237009d4578c7b.tar.xz
mpd-b27d9e055bb51a4e5eff04c6e9237009d4578c7b.zip
shout: pass void pointer to the encoder
Pass the music chunk as a "const void *" to the encoder, instead of a "const char *". Actually, both encoders currently expect 16 bit samples, passing a 8-bit character is rather pointless.
Diffstat (limited to 'src/output/shout_ogg.c')
-rw-r--r--src/output/shout_ogg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/output/shout_ogg.c b/src/output/shout_ogg.c
index b7c7b6706..8b769e8c0 100644
--- a/src/output/shout_ogg.c
+++ b/src/output/shout_ogg.c
@@ -247,8 +247,9 @@ pcm16_to_ogg_buffer(float **dest, const int16_t *src,
dest[j][i] = *src++ / 32768.0;
}
-static int shout_ogg_encoder_encode(struct shout_data *sd,
- const char *chunk, size_t size)
+static int
+shout_ogg_encoder_encode(struct shout_data *sd,
+ const void *chunk, size_t size)
{
struct shout_buffer *buf = &sd->buf;
unsigned int samples;