From 6566038df99530bfb0785cc3d30afe611e40bc96 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 31 May 2010 09:57:15 +0200 Subject: decoder/gme: pass the whole buffer to decoder_data() Pass sizeof(buf) to decoder_data(), not the number of samples (which is half the size). At the same time, pass GME_BUF_SIZE to gme_play() - libgme really wants to get the number of samples, not the number of stereo frames. Previously, this plugin had been using only the first half of the buffer. --- src/decoder/gme_decoder_plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/decoder/gme_decoder_plugin.c b/src/decoder/gme_decoder_plugin.c index cdabd36a6..336fcb87f 100644 --- a/src/decoder/gme_decoder_plugin.c +++ b/src/decoder/gme_decoder_plugin.c @@ -56,11 +56,11 @@ gme_file_decode(struct decoder *decoder, const char *path_fs) /* play */ do { - if((gme_err = gme_play(emu, GME_BUF_SIZE>>1, buf)) != NULL){ + if((gme_err = gme_play(emu, GME_BUF_SIZE, buf)) != NULL){ g_warning("%s", gme_err); return; } - cmd = decoder_data(decoder, NULL, buf, GME_BUF_SIZE, 0); + cmd = decoder_data(decoder, NULL, buf, sizeof(buf), 0); if(cmd == DECODE_COMMAND_SEEK) { float where = decoder_seek_where(decoder); -- cgit v1.2.3