X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2Fsound%2Fsound.c;h=ac37c614c769b8adec3dac8639067a86d0dee8de;hb=f02439758ee681130093e689d4d8a4b377ca462f;hp=18cc46eada9500a35a74a5c5b7c78112b676fbb9;hpb=7a93adeb29f01f5867ff36606cd73a382b6ee0e3;p=picodrive.git diff --git a/Pico/sound/sound.c b/Pico/sound/sound.c index 18cc46e..ac37c61 100644 --- a/Pico/sound/sound.c +++ b/Pico/sound/sound.c @@ -8,14 +8,9 @@ #include -#include "sound.h" #include "ym2612.h" #include "sn76496.h" -#ifndef __GNUC__ -#pragma warning (disable:4244) -#endif - #if defined(_USE_MZ80) #include "../../cpu/mz80/mz80.h" #elif defined(_USE_DRZ80) @@ -29,11 +24,8 @@ // master int buffer to mix to static int PsndBuffer[2*44100/50]; -//int z80CycleAim = 0; - // dac -short *dac_out; -unsigned short dac_info[312]; // pppppppp ppppllll, p - pos in buff, l - length to write for this sample +static unsigned short dac_info[312]; // pppppppp ppppllll, p - pos in buff, l - length to write for this sample // for Pico int PsndRate=0; @@ -51,7 +43,7 @@ void YM2612TimerHandler(int c,int cnt); extern int *sn76496_regs; -static void dac_recalculate() +static void dac_recalculate(void) { int i, dac_cnt, pos, len, lines = Pico.m.pal ? 312 : 262, mid = Pico.m.pal ? 68 : 93; @@ -107,15 +99,16 @@ static void dac_recalculate() } -void sound_reset() +PICO_INTERNAL void sound_reset(void) { - extern int z80stopCycle; void *ym2612_regs; // also clear the internal registers+addr line ym2612_regs = YM2612GetRegs(); memset(ym2612_regs, 0, 0x200+4); - z80stopCycle = 0; + // setting these to 0 might confuse timing code, + // so better set to something like this instead + z80startCycle = z80stopCycle = 0x01000000; sound_rerate(0); } @@ -124,7 +117,7 @@ void sound_reset() // to be called after changing sound rate or chips void sound_rerate(int preserve_state) { - unsigned int state[28]; + void *state = NULL; int target_fps = Pico.m.pal ? 50 : 60; // not all rates are supported in MCD mode due to mp3 decoder limitations @@ -134,12 +127,16 @@ void sound_rerate(int preserve_state) } if (preserve_state) { + state = malloc(0x200); + if (state == NULL) return; + memcpy(state, YM2612GetRegs(), 0x200); if ((PicoMCD & 1) && Pico_mcd->m.audio_track) Pico_mcd->m.audio_offset = mp3_get_offset(); } YM2612Init(Pico.m.pal ? OSC_PAL/7 : OSC_NTSC/7, PsndRate); if (preserve_state) { // feed it back it's own registers, just like after loading state + memcpy(YM2612GetRegs(), state, 0x200); YM2612PicoStateLoad(); if ((PicoMCD & 1) && Pico_mcd->m.audio_track) mp3_start_play(Pico_mcd->TOC.Tracks[Pico_mcd->m.audio_track].F, Pico_mcd->m.audio_offset); @@ -149,6 +146,9 @@ void sound_rerate(int preserve_state) SN76496_init(Pico.m.pal ? OSC_PAL/15 : OSC_NTSC/15, PsndRate); if (preserve_state) memcpy(sn76496_regs, state, 28*4); // restore old state + if (state) + free(state); + // calculate PsndLen PsndLen=PsndRate / target_fps; PsndLen_exc_add=((PsndRate - PsndLen*target_fps)<<16) / target_fps; @@ -168,7 +168,7 @@ void sound_rerate(int preserve_state) // This is called once per raster (aka line), but not necessarily for every line -void sound_timers_and_dac(int raster) +PICO_INTERNAL void sound_timers_and_dac(int raster) { int pos, len; int do_dac = PsndOut && (PicoOpt&1) && *ym2612_dacen; @@ -216,7 +216,7 @@ void sound_timers_and_dac(int raster) } -void sound_clear(void) +PICO_INTERNAL void sound_clear(void) { int len = PsndLen; if (PsndLen_exc_add) len++; @@ -225,8 +225,9 @@ void sound_clear(void) } -int sound_render(int offset, int length) +PICO_INTERNAL int sound_render(int offset, int length) { + int buf32_updated = 0; int *buf32 = PsndBuffer+offset; int stereo = (PicoOpt & 8) >> 3; // emulating CD && PCM option enabled && PCM chip on && have enabled channels @@ -247,16 +248,22 @@ int sound_render(int offset, int length) SN76496Update(PsndOut+offset, length, stereo); // Add in the stereo FM buffer - if (PicoOpt & 1) - YM2612UpdateOne(buf32, length, stereo, 1); + if (PicoOpt & 1) { + buf32_updated = YM2612UpdateOne(buf32, length, stereo, 1); + } else + memset32(buf32, 0, length<