X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Fmp3_helix.c;h=3e75ab9722d9f7f3f51f98623bc07112405a80ed;hb=ff63afa1b6f6f291d466a870b8e6d25fe9a74296;hp=a5da3761eadddd3a90bc15f78b0b7cb8e3fd24e5;hpb=11f4e72292ab00c686f2a2288e4f1cda3a0f7abd;p=libpicofe.git diff --git a/common/mp3_helix.c b/common/mp3_helix.c index a5da376..3e75ab9 100644 --- a/common/mp3_helix.c +++ b/common/mp3_helix.c @@ -11,7 +11,6 @@ #include "helix/pub/mp3dec.h" #include "lprintf.h" -static short mp3_out_buffer[2*1152]; static HMP3Decoder mp3dec = 0; static int mp3_buffer_offs = 0; @@ -94,7 +93,7 @@ static int mp3_decode(void) readPtr += offset; bytesLeft -= offset; - err = MP3Decode(mp3dec, &readPtr, &bytesLeft, mp3_out_buffer, 0); + err = MP3Decode(mp3dec, &readPtr, &bytesLeft, cdda_out_buffer, 0); if (err) { if (err == ERR_MP3_INDATA_UNDERFLOW) { shared_ctl->mp3_offs = shared_ctl->mp3_len; // EOF @@ -119,7 +118,7 @@ void mp3_start_local(void) #define mp3_update mp3_update_local -#else +#else // !__GP2X__ static FILE *mp3_current_file = NULL; static int mp3_file_len = 0, mp3_file_pos = 0; @@ -148,7 +147,7 @@ static int mp3_decode(void) readPtr = mp3_input_buffer + offset; bytesLeft -= offset; - err = MP3Decode(mp3dec, &readPtr, &bytesLeft, mp3_out_buffer, 0); + err = MP3Decode(mp3dec, &readPtr, &bytesLeft, cdda_out_buffer, 0); if (err) { //lprintf("MP3Decode err (%i/%i) %i\n", mp3_file_pos, mp3_file_len, err); if (err == ERR_MP3_INDATA_UNDERFLOW) { @@ -180,7 +179,7 @@ void mp3_start_play(FILE *f, int pos) mp3_current_file = NULL; mp3_buffer_offs = 0; - if (!(PicoOpt&0x800) || f == NULL) // cdda disabled or no file? + if (!(PicoOpt&POPT_EN_MCD_CDDA) || f == NULL) // cdda disabled or no file? return; //lprintf("mp3_start_play %p %i\n", f, pos); @@ -204,7 +203,7 @@ int mp3_get_offset(void) unsigned int offs1024 = 0; int cdda_on; - cdda_on = (PicoMCD & 1) && (PicoOpt&0x800) && !(Pico_mcd->s68k_regs[0x36] & 1) && + cdda_on = (PicoAHW & PAHW_MCD) && (PicoOpt&POPT_EN_MCD_CDDA) && !(Pico_mcd->s68k_regs[0x36] & 1) && (Pico_mcd->scd.Status_CDC & 1) && mp3_current_file != NULL; if (cdda_on) { @@ -232,17 +231,17 @@ void mp3_update(int *buffer, int length, int stereo) else if (PsndRate == 11025) { mix_samples = mix_16h_to_32_s2; length_mp3 <<= 2; shr = 2; } if (1152 - mp3_buffer_offs >= length_mp3) { - mix_samples(buffer, mp3_out_buffer + mp3_buffer_offs*2, length<<1); + mix_samples(buffer, cdda_out_buffer + mp3_buffer_offs*2, length<<1); mp3_buffer_offs += length_mp3; } else { int ret, left = 1152 - mp3_buffer_offs; - mix_samples(buffer, mp3_out_buffer + mp3_buffer_offs*2, (left>>shr)<<1); + mix_samples(buffer, cdda_out_buffer + mp3_buffer_offs*2, (left>>shr)<<1); ret = mp3_decode(); if (ret == 0) { mp3_buffer_offs = length_mp3 - left; - mix_samples(buffer + ((left>>shr)<<1), mp3_out_buffer, (mp3_buffer_offs>>shr)<<1); + mix_samples(buffer + ((left>>shr)<<1), cdda_out_buffer, (mp3_buffer_offs>>shr)<<1); } else mp3_buffer_offs = 0; }