allow slightly deviated sound rates (for Wiz)
authornotaz <notasas@gmail.com>
Sat, 8 Aug 2009 13:18:41 +0000 (13:18 +0000)
committernotaz <notasas@gmail.com>
Sat, 8 Aug 2009 13:18:41 +0000 (13:18 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@740 be3aeb3a-fb24-0410-a615-afba39da0efa

common/mp3_helix.c
gp2x/emu.c

index 5f58aa5..4a4931f 100644 (file)
@@ -196,8 +196,14 @@ void mp3_update(int *buffer, int length, int stereo)
                return; /* no file / EOF */
 
        length_mp3 = length;
-       if (PsndRate == 22050) { mix_samples = mix_16h_to_32_s1; length_mp3 <<= 1; shr = 1; }
-       else if (PsndRate == 11025) { mix_samples = mix_16h_to_32_s2; length_mp3 <<= 2; shr = 2; }
+       if (PsndRate <= 11025 + 100) {
+               mix_samples = mix_16h_to_32_s2;
+               length_mp3 <<= 2; shr = 2;
+       }
+       else if (PsndRate <= 22050 + 100) {
+               mix_samples = mix_16h_to_32_s1;
+               length_mp3 <<= 1; shr = 1;
+       }
 
        if (1152 - mp3_buffer_offs >= length_mp3) {
                mix_samples(buffer, cdda_out_buffer + mp3_buffer_offs*2, length<<1);
index 3245075..c608f32 100644 (file)
@@ -33,7 +33,7 @@
 \r
 extern int crashed_940;\r
 \r
-static short __attribute__((aligned(4))) sndBuffer[2*44100/50];\r
+static short __attribute__((aligned(4))) sndBuffer[2*(44100+100)/50];\r
 static unsigned char PicoDraw2FB_[(8+320) * (8+240+8)];\r
 unsigned char *PicoDraw2FB = PicoDraw2FB_;\r
 static int osd_fps_x;\r
@@ -205,7 +205,7 @@ static void draw_pico_ptr(void)
        if (!(Pico.video.reg[12]&1) && !(PicoOpt & POPT_DIS_32C_BORDER))\r
                x += 32;\r
 \r
-       if (EOPT_WIZ_TEAR_FIX) {\r
+       if (currentConfig.EmuOpt & EOPT_WIZ_TEAR_FIX) {\r
                pitch = 240;\r
                p += (319 - x) * pitch + y;\r
        } else\r
@@ -614,9 +614,19 @@ void pemu_sound_start(void)
                int is_stereo = (PicoOpt & POPT_EN_STEREO) ? 1 : 0;\r
                int target_fps = Pico.m.pal ? 50 : 60;\r
                int frame_samples, snd_excess_add;\r
+               int snd_rate_oss = PsndRate;\r
                gp2x_soc_t soc;\r
 \r
                soc = soc_detect();\r
+               if (soc == SOCID_POLLUX) {\r
+                       /* POLLUX pain: DPLL1 / mclk_div / bitclk_div / 4 */\r
+                       switch (PsndRate) {\r
+                       case 44100: PsndRate = 44171; break; // 44170.673077\r
+                       case 22050: PsndRate = 22086; break; // 22085.336538\r
+                       case 11025: PsndRate = 11043; break; // 11042.668269\r
+                       default: break;\r
+                       }\r
+               }\r
 \r
                #define SOUND_RERATE_FLAGS (POPT_EN_FM|POPT_EN_PSG|POPT_EN_STEREO|POPT_EXT_FM|POPT_EN_MCD_CDDA)\r
                if (PsndRate != PsndRate_old || Pico.m.pal != pal_old || ((PicoOpt & POPT_EXT_FM) && crashed_940) ||\r
@@ -642,7 +652,7 @@ void pemu_sound_start(void)
                printf("starting audio: %i len: %i (ex: %04x) stereo: %i, pal: %i\n",\r
                        PsndRate, PsndLen, snd_excess_add, is_stereo, Pico.m.pal);\r
                sndout_oss_setvol(currentConfig.volume, currentConfig.volume);\r
-               sndout_oss_start(PsndRate, frame_samples, is_stereo);\r
+               sndout_oss_start(snd_rate_oss, frame_samples, is_stereo);\r
 \r
                /* Wiz's sound hardware needs more prebuffer */\r
                if (soc == SOCID_POLLUX)\r
@@ -652,6 +662,13 @@ void pemu_sound_start(void)
 \r
 void pemu_sound_stop(void)\r
 {\r
+       /* get back from Wiz pain */\r
+       switch (PsndRate) {\r
+               case 44171: PsndRate = 44100; break;\r
+               case 22086: PsndRate = 22050; break;\r
+               case 11043: PsndRate = 11025; break;\r
+               default: break;\r
+       }\r
 }\r
 \r
 void pemu_sound_wait(void)\r
@@ -807,6 +824,8 @@ void pemu_loop_end(void)
        int po_old = PicoOpt;\r
        int eo_old = currentConfig.EmuOpt;\r
 \r
+       pemu_sound_stop();\r
+\r
        /* do one more frame for menu bg */\r
        PicoOpt &= ~POPT_ALT_RENDERER;\r
        PicoOpt |= POPT_EN_SOFTSCALE|POPT_ACC_SPRITES;\r