sound: remove cd rate limitations
authornotaz <notasas@gmail.com>
Fri, 4 Oct 2013 00:50:29 +0000 (03:50 +0300)
committernotaz <notasas@gmail.com>
Fri, 4 Oct 2013 00:50:29 +0000 (03:50 +0300)
this was only there for mp3 and is now causing problems
on caanoo due to it's sample rate limitations

pico/sound/sound.c

index ec0e205..b12afc3 100644 (file)
@@ -121,15 +121,6 @@ void PsndRerate(int preserve_state)
   void *state = NULL;\r
   int target_fps = Pico.m.pal ? 50 : 60;\r
 \r
-  // not all rates are supported in MCD mode due to mp3 decoder limitations\r
-  if (PicoAHW & PAHW_MCD) {\r
-    if (!(11025-100 <= PsndRate && PsndRate <= 11025+100) &&\r
-        !(22050-100 <= PsndRate && PsndRate <= 22050+100) &&\r
-        !(44100-100 <= PsndRate && PsndRate <= 44100+100))\r
-      PsndRate = 22050;\r
-    PicoOpt |= POPT_EN_STEREO; // force stereo\r
-  }\r
-\r
   if (preserve_state) {\r
     state = malloc(0x204);\r
     if (state == NULL) return;\r