mpc: don't assume the stream is stereo

Don't hard-code the factor "2".
This commit is contained in:
Max Kellermann 2008-11-12 07:07:40 +01:00
parent 8d1ffb1684
commit 0a6f4048d0
1 changed files with 1 additions and 2 deletions

View File

@ -184,8 +184,7 @@ mpc_decode(struct decoder *mpd_decoder, struct input_stream *inStream)
samplePos += ret;
/* ret is in samples, and we have stereo */
ret *= 2;
ret *= info.channels;
mpc_to_mpd_buffer(chunk, sample_buffer, ret);