psp sound out code improved (done?)

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@281 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-10-27 13:44:22 +00:00
parent a4221917e1
commit e41da5ce07
2 changed files with 42 additions and 67 deletions

View file

@ -15,11 +15,7 @@
#include "../common/lprintf.h" #include "../common/lprintf.h"
#include "../../Pico/PicoInt.h" #include "../../Pico/PicoInt.h"
#ifdef BENCHMARK
#define OSD_FPS_X 380
#else
#define OSD_FPS_X 420 #define OSD_FPS_X 420
#endif
// additional pspaudio imports, credits to crazyc // additional pspaudio imports, credits to crazyc
int sceAudio_38553111(unsigned short samples, unsigned short freq, char unknown); // play with conversion? int sceAudio_38553111(unsigned short samples, unsigned short freq, char unknown); // play with conversion?
@ -131,7 +127,7 @@ void emu_setDefaultConfig(void)
memset(&currentConfig, 0, sizeof(currentConfig)); memset(&currentConfig, 0, sizeof(currentConfig));
currentConfig.lastRomFile[0] = 0; currentConfig.lastRomFile[0] = 0;
currentConfig.EmuOpt = 0x1f | 0x680; // | confirm_save, cd_leds, 16bit rend currentConfig.EmuOpt = 0x1f | 0x680; // | confirm_save, cd_leds, 16bit rend
currentConfig.PicoOpt = 0x07 | 0xc00; // | cd_pcm, cd_cdda currentConfig.PicoOpt = 0x0f | 0xc00; // | cd_pcm, cd_cdda
currentConfig.PsndRate = 22050; currentConfig.PsndRate = 22050;
currentConfig.PicoRegion = 0; // auto currentConfig.PicoRegion = 0; // auto
currentConfig.PicoAutoRgnOrder = 0x184; // US, EU, JP currentConfig.PicoAutoRgnOrder = 0x184; // US, EU, JP
@ -477,12 +473,13 @@ static void vidResetMode(void)
/* sound stuff */ /* sound stuff */
#define SOUND_DEF_BLOCK_SIZE 1024 // 1152 // 1024 #define SOUND_BLOCK_SIZE_NTSC (2940*2) // 1024 // 1152
#define SOUND_BLOCK_SIZE_PAL (3528*2)
#define SOUND_BLOCK_COUNT 4 #define SOUND_BLOCK_COUNT 4
static short __attribute__((aligned(4))) sndBuffer[SOUND_DEF_BLOCK_SIZE*SOUND_BLOCK_COUNT*2 + 44100/50*2]; static short __attribute__((aligned(4))) sndBuffer[SOUND_BLOCK_SIZE_PAL*SOUND_BLOCK_COUNT + 44100/50*2];
static short *snd_playptr = NULL; static short *snd_playptr = NULL, *sndBuffer_endptr = NULL;
static int samples_made = 0, samples_done = 0, samples_block = SOUND_DEF_BLOCK_SIZE; static int samples_made = 0, samples_done = 0, samples_block = 0;
static int sound_thread_exit = 0; static int sound_thread_exit = 0;
static SceUID sound_sem = -1; static SceUID sound_sem = -1;
@ -490,7 +487,6 @@ static void writeSound(int len);
static int sound_thread(SceSize args, void *argp) static int sound_thread(SceSize args, void *argp)
{ {
short *endptr = &sndBuffer[SOUND_DEF_BLOCK_SIZE*SOUND_BLOCK_COUNT*2];
int ret; int ret;
lprintf("sound_thread: started, priority %i\n", sceKernelGetThreadCurrentPriority()); lprintf("sound_thread: started, priority %i\n", sceKernelGetThreadCurrentPriority());
@ -511,7 +507,7 @@ static int sound_thread(SceSize args, void *argp)
samples_done += samples_block; samples_done += samples_block;
snd_playptr += samples_block; snd_playptr += samples_block;
if (snd_playptr >= endptr) if (snd_playptr >= sndBuffer_endptr)
snd_playptr = sndBuffer; snd_playptr = sndBuffer;
if (ret) if (ret)
lprintf("sthr: outf: %i; pos %i/%i\n", ret, samples_done, samples_made); lprintf("sthr: outf: %i; pos %i/%i\n", ret, samples_done, samples_made);
@ -550,28 +546,28 @@ static void sound_prepare(void)
sound_rerate(Pico.m.frame_count ? 1 : 0); sound_rerate(Pico.m.frame_count ? 1 : 0);
} }
stereo=(PicoOpt&8)>>3; stereo=(PicoOpt&8)>>3;
samples_block = SOUND_DEF_BLOCK_SIZE;
if (PsndRate < 44100) samples_block = SOUND_DEF_BLOCK_SIZE / 2; samples_block = Pico.m.pal ? SOUND_BLOCK_SIZE_PAL : SOUND_BLOCK_SIZE_NTSC;
if (PsndRate < 22050) samples_block = SOUND_DEF_BLOCK_SIZE / 4; if (PsndRate == 22050) samples_block /= 2;
else if (PsndRate == 11025) samples_block /= 4;
sndBuffer_endptr = &sndBuffer[samples_block*SOUND_BLOCK_COUNT];
lprintf("starting audio: %i, len: %i, stereo: %i, pal: %i, block samples: %i\n", lprintf("starting audio: %i, len: %i, stereo: %i, pal: %i, block samples: %i\n",
PsndRate, PsndLen, stereo, Pico.m.pal, samples_block); PsndRate, PsndLen, stereo, Pico.m.pal, samples_block);
while (sceAudioOutput2GetRestSample() > 0) psp_msleep(100); while (sceAudioOutput2GetRestSample() > 0) psp_msleep(100);
sceAudio_5C37C0AE(); sceAudio_5C37C0AE();
ret = sceAudio_38553111(samples_block/2, PsndRate, 2/*stereo ? 2 : 1*/); ret = sceAudio_38553111(samples_block/2, PsndRate, 2); // seems to not need that stupid 64byte alignment
lprintf("sceAudio_38553111() ret: %i\n", ret);
if (ret < 0) { if (ret < 0) {
lprintf("sceAudio_38553111() failed: %i\n", ret); lprintf("sceAudio_38553111() failed: %i\n", ret);
sprintf(noticeMsg, "sound init failed (%i), snd disabled", ret); sprintf(noticeMsg, "sound init failed (%i), snd disabled", ret);
noticeMsgTime = sceKernelGetSystemTimeLow(); noticeMsgTime = sceKernelGetSystemTimeLow();
currentConfig.EmuOpt &= ~4; currentConfig.EmuOpt &= ~4;
} else { } else {
// int ret = sceAudioSetChannelDataLen(ret, PsndLen); // a try..
// lprintf("sceAudioSetChannelDataLen: %i\n", ret);
PicoWriteSound = writeSound; PicoWriteSound = writeSound;
memset32((int *)(void *)sndBuffer, 0, sizeof(sndBuffer)/4); memset32((int *)(void *)sndBuffer, 0, sizeof(sndBuffer)/4);
snd_playptr = sndBuffer; snd_playptr = sndBuffer_endptr - samples_block;
samples_made = samples_block; // send 1 empty block first..
PsndOut = sndBuffer; PsndOut = sndBuffer;
PsndRate_old = PsndRate; PsndRate_old = PsndRate;
PicoOpt_old = PicoOpt; PicoOpt_old = PicoOpt;
@ -581,10 +577,9 @@ static void sound_prepare(void)
static void sound_end(void) static void sound_end(void)
{ {
int ret; while (samples_made - samples_done >= samples_block || sceAudioOutput2GetRestSample() > 0)
while (sceAudioOutput2GetRestSample() > 0) psp_msleep(100); psp_msleep(100);
ret = sceAudio_5C37C0AE(); sceAudio_5C37C0AE();
lprintf("sound_end: sceAudio_5C37C0AE ret %i\n", ret);
} }
static void sound_deinit(void) static void sound_deinit(void)
@ -596,23 +591,24 @@ static void sound_deinit(void)
static void writeSound(int len) static void writeSound(int len)
{ {
int ret; int ret;
short *endptr = &sndBuffer[SOUND_DEF_BLOCK_SIZE*SOUND_BLOCK_COUNT*2];
if (PicoOpt&8) len<<=1; if (PicoOpt&8) len<<=1;
PsndOut += len; PsndOut += len;
if (PsndOut > endptr) { /*if (PsndOut > sndBuffer_endptr) {
memcpy32((int *)(void *)sndBuffer, (int *)endptr, (PsndOut - endptr + 1) / 2); memcpy32((int *)(void *)sndBuffer, (int *)endptr, (PsndOut - endptr + 1) / 2);
PsndOut = &sndBuffer[PsndOut - endptr]; PsndOut = &sndBuffer[PsndOut - endptr];
lprintf("mov\n");
} }
else if (PsndOut == endptr) else*/
PsndOut = sndBuffer; // happy case if (PsndOut >= sndBuffer_endptr)
PsndOut = sndBuffer;
// signal the snd thread // signal the snd thread
samples_made += len; samples_made += len;
if (samples_made - samples_done >= samples_block) { if (samples_made - samples_done >= samples_block) {
if (!Pico.m.scanline) lprintf("signal, %i/%i\n", samples_done, samples_made); // lprintf("signal, %i/%i\n", samples_done, samples_made);
ret = sceKernelSignalSema(sound_sem, 1); ret = sceKernelSignalSema(sound_sem, 1);
if (!Pico.m.scanline) lprintf("signal ret %i\n", ret); // lprintf("signal ret %i\n", ret);
} }
} }
@ -900,20 +896,14 @@ void emu_Loop(void)
// second passed? // second passed?
if (tval - tval_thissec >= 1000000) if (tval - tval_thissec >= 1000000)
{ {
#ifdef BENCHMARK // missing 1 frame?
static int bench = 0, bench_fps = 0, bench_fps_s = 0, bfp = 0, bf[4]; if (currentConfig.Frameskip < 0 && frames_done < target_fps) {
if(++bench == 10) { SkipFrame(); frames_done++;
bench = 0;
bench_fps_s = bench_fps;
bf[bfp++ & 3] = bench_fps;
bench_fps = 0;
} }
bench_fps += frames_shown;
sprintf(fpsbuff, "%02i/%02i/%02i", frames_shown, bench_fps_s, (bf[0]+bf[1]+bf[2]+bf[3])>>2);
#else
if (currentConfig.EmuOpt & 2) if (currentConfig.EmuOpt & 2)
sprintf(fpsbuff, "%02i/%02i ", frames_shown, frames_done); sprintf(fpsbuff, "%02i/%02i ", frames_shown, frames_done);
#endif
tval_thissec += 1000000; tval_thissec += 1000000;
if (currentConfig.Frameskip < 0) { if (currentConfig.Frameskip < 0) {

View file

@ -1218,11 +1218,11 @@ static void menu_opt_cust_draw(const menu_entry *entry, int x, int y, void *para
{ {
case MA_OPT_RENDERER: case MA_OPT_RENDERER:
if (currentConfig.PicoOpt&0x10) if (currentConfig.PicoOpt&0x10)
str = " 8bit fast"; str = "fast";
else if (currentConfig.EmuOpt&0x80) else if (currentConfig.EmuOpt&0x80)
str = "16bit accurate"; str = "accurate";
else else
str = " 8bit accurate"; str = " 8bit accurate"; // n/a
text_out16(x, y, "Renderer: %s", str); text_out16(x, y, "Renderer: %s", str);
break; break;
case MA_OPT_FRAMESKIP: case MA_OPT_FRAMESKIP:
@ -1353,30 +1353,15 @@ static int menu_loop_options(void)
if (!me_process(opt_entries, OPT_ENTRY_COUNT, selected_id, (inp&BTN_RIGHT) ? 1 : 0)) { if (!me_process(opt_entries, OPT_ENTRY_COUNT, selected_id, (inp&BTN_RIGHT) ? 1 : 0)) {
switch (selected_id) { switch (selected_id) {
case MA_OPT_RENDERER: case MA_OPT_RENDERER:
if (inp & BTN_LEFT) {
if ((currentConfig.PicoOpt&0x10) || !(currentConfig.EmuOpt &0x80)) { if ((currentConfig.PicoOpt&0x10) || !(currentConfig.EmuOpt &0x80)) {
currentConfig.PicoOpt&= ~0x10; currentConfig.PicoOpt&= ~0x10;
currentConfig.EmuOpt |= 0x80; currentConfig.EmuOpt |= 0x80;
}
} else { } else {
if (!(currentConfig.PicoOpt&0x10) || (currentConfig.EmuOpt &0x80)) {
currentConfig.PicoOpt|= 0x10; currentConfig.PicoOpt|= 0x10;
currentConfig.EmuOpt &= ~0x80; currentConfig.EmuOpt &= ~0x80;
} }
}
break; break;
case MA_OPT_SOUND_QUALITY: case MA_OPT_SOUND_QUALITY:
if ((inp & BTN_RIGHT) && currentConfig.PsndRate == 44100 &&
!(currentConfig.PicoOpt&0x08))
{
currentConfig.PsndRate = 11025;
currentConfig.PicoOpt |= 8;
} else if ((inp & BTN_LEFT) && currentConfig.PsndRate == 11025 &&
(currentConfig.PicoOpt&0x08) && !(PicoMCD&1))
{
currentConfig.PsndRate = 44100;
currentConfig.PicoOpt &= ~8;
} else
currentConfig.PsndRate = sndrate_prevnext(currentConfig.PsndRate, inp & BTN_RIGHT); currentConfig.PsndRate = sndrate_prevnext(currentConfig.PsndRate, inp & BTN_RIGHT);
break; break;
case MA_OPT_REGION: case MA_OPT_REGION: