X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fcommon%2Fmp3.c;h=c84962cc27bad9c6138bb95989ca706a0089941c;hb=ee3c39efd2cf51cd654b6240f6fb595673f10f45;hp=6c823ad4b53813905556fd09ab13c396810f5113;hpb=93f9619ed819dee07948416c98ca2f1c70a22666;p=picodrive.git diff --git a/platform/common/mp3.c b/platform/common/mp3.c index 6c823ad..c84962c 100644 --- a/platform/common/mp3.c +++ b/platform/common/mp3.c @@ -167,11 +167,11 @@ void mp3_update(int *buffer, int length, int stereo) return; length_mp3 = length; - if (PsndRate <= 11025 + 100) { + if (PicoIn.sndRate <= 11025 + 100) { mix_samples = mix_16h_to_32_s2; length_mp3 <<= 2; shr = 2; } - else if (PsndRate <= 22050 + 100) { + else if (PicoIn.sndRate <= 22050 + 100) { mix_samples = mix_16h_to_32_s1; length_mp3 <<= 1; shr = 1; }