1 // (c) Copyright 2007 notaz, All rights reserved.
2 // Free for non-commercial use.
4 // For commercial use, separate licencing terms must be obtained.
11 #include <pspaudiocodec.h>
14 #include "../../pico/pico_int.h"
15 #include "../../pico/sound/mix.h"
16 #include "../common/lprintf.h"
18 int mp3_last_error = 0;
20 static int initialized = 0;
21 static SceUID thread_job_sem = -1;
22 static SceUID thread_busy_sem = -1;
23 static int thread_exit = 0;
26 static int bitrates[] = { 0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 0 };
27 //static int samplerates[] = { 44100, 48000, 32000, 0 };
29 #define MIN_INFRAME_SIZE 96
30 #define IN_BUFFER_SIZE (2*1024)
32 static unsigned long mp3_codec_struct[65] __attribute__((aligned(64)));
34 static unsigned char mp3_src_buffer[2][IN_BUFFER_SIZE] __attribute__((aligned(64)));
35 static short mp3_mix_buffer[2][1152*2] __attribute__((aligned(64)));
36 static int working_buf = 0;
38 static const char *mp3_fname = NULL;
39 static SceUID mp3_handle = -1;
40 static int mp3_src_pos = 0, mp3_src_size = 0;
42 static int decode_thread(SceSize args, void *argp);
45 static void psp_sem_lock(SceUID sem)
47 int ret = sceKernelWaitSema(sem, 1, 0);
48 if (ret < 0) lprintf("sceKernelWaitSema(%08x) failed with %08x\n", sem, ret);
51 static void psp_sem_unlock(SceUID sem)
53 int ret = sceKernelSignalSema(sem, 1);
54 if (ret < 0) lprintf("sceKernelSignalSema(%08x) failed with %08x\n", sem, ret);
57 // only accepts MPEG-1, layer3
58 static int find_sync_word(unsigned char *data, int len)
61 for (i = 0; i < len-1; i++)
63 if ( data[i+0] != 0xff) continue;
64 if ((data[i+1] & 0xfe) == 0xfa) return i;
70 static int read_next_frame(int which_buffer)
72 int i, bytes_read, frame_offset;
73 int bitrate, padding, frame_size = 0;
75 for (i = 0; i < 32; i++)
77 bytes_read = sceIoRead(mp3_handle, mp3_src_buffer[which_buffer], sizeof(mp3_src_buffer[which_buffer]));
78 mp3_src_pos += bytes_read;
79 if (bytes_read < MIN_INFRAME_SIZE) {
80 mp3_src_pos = mp3_src_size;
81 return 0; // EOF/IO failure
83 frame_offset = find_sync_word(mp3_src_buffer[which_buffer], bytes_read);
84 if (frame_offset < 0) {
85 lprintf("missing syncword, foffs=%i\n", mp3_src_pos - bytes_read);
87 sceIoLseek32(mp3_handle, mp3_src_pos, PSP_SEEK_SET);
90 if (bytes_read - frame_offset < 4) {
91 lprintf("syncword @ EOB, foffs=%i\n", mp3_src_pos - bytes_read);
93 sceIoLseek32(mp3_handle, mp3_src_pos, PSP_SEEK_SET);
97 bitrate = mp3_src_buffer[which_buffer][frame_offset+2] >> 4;
98 padding = (mp3_src_buffer[which_buffer][frame_offset+2] & 2) >> 1;
100 frame_size = 144000*bitrates[bitrate]/44100 + padding;
101 if (frame_size <= 0) {
102 lprintf("bad frame, foffs=%i\n", mp3_src_pos - bytes_read);
103 continue; // bad frame
106 if (bytes_read - frame_offset < frame_size)
108 lprintf("unfit, foffs=%i\n", mp3_src_pos - bytes_read);
109 mp3_src_pos -= bytes_read - frame_offset;
110 if (mp3_src_size - mp3_src_pos < frame_size) {
111 mp3_src_pos = mp3_src_size;
114 sceIoLseek32(mp3_handle, mp3_src_pos, PSP_SEEK_SET);
115 continue; // didn't fit, re-read..
119 //lprintf("unaligned, foffs=%i, offs=%i\n", mp3_src_pos - bytes_read, frame_offset);
120 memmove(mp3_src_buffer[which_buffer], mp3_src_buffer[which_buffer] + frame_offset, frame_size);
123 // align for next frame read
124 mp3_src_pos -= bytes_read - (frame_offset + frame_size);
125 sceIoLseek32(mp3_handle, mp3_src_pos, PSP_SEEK_SET);
130 return frame_size > 0 ? frame_size : -1;
134 static SceUID load_start_module(const char *prxname)
139 mod = pspSdkLoadStartModule(prxname, PSP_MEMORY_PARTITION_KERNEL);
141 lprintf("failed to load %s (%08x), trying kuKernelLoadModule\n", prxname, mod);
142 mod1 = kuKernelLoadModule(prxname, 0, NULL);
143 if (mod1 < 0) lprintf("kuKernelLoadModule failed with %08x\n", mod1);
145 ret = sceKernelStartModule(mod1, 0, NULL, &status, 0);
146 if (ret < 0) lprintf("sceKernelStartModule failed with %08x\n", ret);
160 /* <= 1.5 (and probably some other, not sure which) fw need this to for audiocodec to work,
161 * so if it fails, assume we are just on new enough firmware and continue.. */
162 load_start_module("flash0:/kd/me_for_vsh.prx");
164 if (sceKernelDevkitVersion() < 0x02070010)
165 mod = load_start_module("flash0:/kd/audiocodec.prx");
166 else mod = load_start_module("flash0:/kd/avcodec.prx");
169 mod = load_start_module("flash0:/kd/audiocodec_260.prx"); // last chance..
170 if (mod < 0) goto fail;
173 /* audiocodec init */
174 memset(mp3_codec_struct, 0, sizeof(mp3_codec_struct));
175 ret = sceAudiocodecCheckNeedMem(mp3_codec_struct, 0x1002);
177 lprintf("sceAudiocodecCheckNeedMem failed with %08x\n", ret);
181 ret = sceAudiocodecGetEDRAM(mp3_codec_struct, 0x1002);
183 lprintf("sceAudiocodecGetEDRAM failed with %08x\n", ret);
187 ret = sceAudiocodecInit(mp3_codec_struct, 0x1002);
189 lprintf("sceAudiocodecInit failed with %08x\n", ret);
193 /* thread and stuff */
194 thread_job_sem = sceKernelCreateSema("p_mp3job_sem", 0, 0, 1, NULL);
195 if (thread_job_sem < 0) {
196 lprintf("sceKernelCreateSema() failed: %08x\n", thread_job_sem);
197 ret = thread_job_sem;
201 thread_busy_sem = sceKernelCreateSema("p_mp3busy_sem", 0, 1, 1, NULL);
202 if (thread_busy_sem < 0) {
203 lprintf("sceKernelCreateSema() failed: %08x\n", thread_busy_sem);
204 ret = thread_busy_sem;
208 /* use slightly higher prio then main */
210 thid = sceKernelCreateThread("mp3decode_thread", decode_thread, 30, 0x2000, 0, NULL);
212 lprintf("failed to create decode thread: %08x\n", thid);
216 ret = sceKernelStartThread(thid, 0, 0);
218 lprintf("failed to start decode thread: %08x\n", ret);
227 sceKernelDeleteSema(thread_busy_sem);
228 thread_busy_sem = -1;
230 sceKernelDeleteSema(thread_job_sem);
233 sceAudiocodecReleaseEDRAM(mp3_codec_struct);
235 mp3_last_error = ret;
240 void mp3_deinit(void)
242 lprintf("mp3_deinit, initialized=%i\n", initialized);
244 if (!initialized) return;
246 psp_sem_lock(thread_busy_sem);
247 psp_sem_unlock(thread_busy_sem);
249 sceKernelSignalSema(thread_job_sem, 1);
250 sceKernelDelayThread(100*1000);
252 if (mp3_handle >= 0) sceIoClose(mp3_handle);
256 sceKernelDeleteSema(thread_busy_sem);
257 thread_busy_sem = -1;
258 sceKernelDeleteSema(thread_job_sem);
260 sceAudiocodecReleaseEDRAM(mp3_codec_struct);
264 // may overflow stack?
265 static int decode_thread(SceSize args, void *argp)
269 lprintf("decode_thread started with id %08x, priority %i\n",
270 sceKernelGetThreadId(), sceKernelGetThreadCurrentPriority());
274 psp_sem_lock(thread_job_sem);
275 if (thread_exit) break;
277 psp_sem_lock(thread_busy_sem);
278 //lprintf("{ job\n");
280 frame_size = read_next_frame(working_buf);
283 mp3_codec_struct[6] = (unsigned long)mp3_src_buffer[working_buf];
284 mp3_codec_struct[8] = (unsigned long)mp3_mix_buffer[working_buf];
285 mp3_codec_struct[7] = mp3_codec_struct[10] = frame_size;
286 mp3_codec_struct[9] = 1152 * 4;
288 ret = sceAudiocodecDecode(mp3_codec_struct, 0x1002);
289 if (ret < 0) lprintf("sceAudiocodecDecode failed with %08x\n", ret);
292 //lprintf("} job\n");
293 psp_sem_unlock(thread_busy_sem);
296 lprintf("leaving decode thread\n");
297 sceKernelExitDeleteThread(0);
302 // might be called before initialization
303 int mp3_get_bitrate(FILE *f, int size)
305 int ret, retval = -1, sample_rate, bitrate;
306 // filenames are stored instead handles in PSP, due to stupid max open file limit
307 char *fname = (char *)f;
309 /* make sure thread is not busy.. */
310 if (thread_busy_sem >= 0)
311 psp_sem_lock(thread_busy_sem);
313 if (mp3_handle >= 0) sceIoClose(mp3_handle);
314 mp3_handle = sceIoOpen(fname, PSP_O_RDONLY, 0777);
315 if (mp3_handle < 0) {
316 lprintf("sceIoOpen(%s) failed\n", fname);
321 ret = read_next_frame(0);
323 lprintf("read_next_frame() failed (%s)\n", fname);
326 sample_rate = (mp3_src_buffer[0][2] & 0x0c) >> 2;
327 bitrate = mp3_src_buffer[0][2] >> 4;
329 if (sample_rate != 0) {
330 lprintf("unsupported samplerate (%s)\n", fname);
331 goto end; // only 44kHz supported..
333 bitrate = bitrates[bitrate];
335 lprintf("unsupported bitrate (%s)\n", fname);
342 if (mp3_handle >= 0) sceIoClose(mp3_handle);
345 if (thread_busy_sem >= 0)
346 psp_sem_unlock(thread_busy_sem);
347 if (retval < 0) mp3_last_error = -1; // remember we had a problem..
352 static int mp3_job_started = 0, mp3_samples_ready = 0, mp3_buffer_offs = 0, mp3_play_bufsel = 0;
354 void mp3_start_play(FILE *f, int pos)
356 char *fname = (char *)f;
358 if (!initialized) return;
360 lprintf("mp3_start_play(%s) @ %i\n", fname, pos);
361 psp_sem_lock(thread_busy_sem);
363 if (mp3_fname != fname || mp3_handle < 0)
365 if (mp3_handle >= 0) sceIoClose(mp3_handle);
366 mp3_handle = sceIoOpen(fname, PSP_O_RDONLY, 0777);
367 if (mp3_handle < 0) {
368 lprintf("sceIoOpen(%s) failed\n", fname);
369 psp_sem_unlock(thread_busy_sem);
372 mp3_src_size = sceIoLseek32(mp3_handle, 0, PSP_SEEK_END);
376 // clear decoder state
377 sceAudiocodecInit(mp3_codec_struct, 0x1002);
380 mp3_src_pos = (int) (((float)pos / 1023.0f) * (float)mp3_src_size);
381 sceIoLseek32(mp3_handle, mp3_src_pos, PSP_SEEK_SET);
382 lprintf("seek %i: %i/%i\n", pos, mp3_src_pos, mp3_src_size);
385 mp3_samples_ready = mp3_buffer_offs = mp3_play_bufsel = 0;
388 /* send a request to decode first frame */
389 psp_sem_unlock(thread_busy_sem);
390 psp_sem_unlock(thread_job_sem);
391 sceKernelDelayThread(1); // reschedule
395 void mp3_update(int *buffer, int length, int stereo)
399 // playback was started, track not ended
400 if (mp3_handle < 0 || mp3_src_pos >= mp3_src_size) return;
403 if (PsndRate == 22050) length_mp3 <<= 1; // mp3s are locked to 44100Hz stereo
404 else if (PsndRate == 11025) length_mp3 <<= 2; // so make length 44100ish
406 /* do we have to wait? */
407 if (mp3_job_started && mp3_samples_ready < length_mp3)
409 psp_sem_lock(thread_busy_sem);
410 psp_sem_unlock(thread_busy_sem);
412 mp3_samples_ready += 1152;
415 /* mix mp3 data, only stereo */
416 if (mp3_samples_ready >= length_mp3)
419 void (*mix_samples)(int *dest_buf, short *mp3_buf, int count) = mix_16h_to_32;
420 if (PsndRate == 22050) { mix_samples = mix_16h_to_32_s1; shr = 1; }
421 else if (PsndRate == 11025) { mix_samples = mix_16h_to_32_s2; shr = 2; }
423 if (1152 - mp3_buffer_offs >= length_mp3) {
424 mix_samples(buffer, mp3_mix_buffer[mp3_play_bufsel] + mp3_buffer_offs*2, length<<1);
426 mp3_buffer_offs += length_mp3;
428 // collect samples from both buffers..
429 int left = 1152 - mp3_buffer_offs;
430 if (mp3_play_bufsel == 0)
432 mix_samples(buffer, mp3_mix_buffer[0] + mp3_buffer_offs*2, length<<1);
433 mp3_buffer_offs = length_mp3 - left;
436 mix_samples(buffer, mp3_mix_buffer[1] + mp3_buffer_offs*2, (left>>shr)<<1);
437 mp3_buffer_offs = length_mp3 - left;
438 mix_samples(buffer + ((left>>shr)<<1),
439 mp3_mix_buffer[0], (mp3_buffer_offs>>shr)<<1);
443 mp3_samples_ready -= length_mp3;
446 // ask to decode more if we already can
447 if (!mp3_job_started)
453 psp_sem_lock(thread_busy_sem); // just in case
454 psp_sem_unlock(thread_busy_sem);
455 psp_sem_unlock(thread_job_sem);
456 sceKernelDelayThread(1);
461 int mp3_get_offset(void) // 0-1023
463 unsigned int offs1024 = 0;
466 cdda_on = (PicoAHW & PAHW_MCD) && (PicoOpt&0x800) && !(Pico_mcd->s68k_regs[0x36] & 1) &&
467 (Pico_mcd->scd.Status_CDC & 1) && mp3_handle >= 0;
470 offs1024 = mp3_src_pos << 7;
471 offs1024 /= mp3_src_size >> 3;
473 lprintf("offs1024=%u (%i/%i)\n", offs1024, mp3_src_pos, mp3_src_size);
479 void mp3_reopen_file(void)
481 if (mp3_fname == NULL) return;
482 lprintf("mp3_reopen_file(%s)\n", mp3_fname);
484 // try closing, just in case
485 if (mp3_handle >= 0) sceIoClose(mp3_handle);
487 mp3_handle = sceIoOpen(mp3_fname, PSP_O_RDONLY, 0777);
489 sceIoLseek32(mp3_handle, mp3_src_pos, PSP_SEEK_SET);
490 lprintf("mp3_reopen_file %s\n", mp3_handle >= 0 ? "ok" : "failed");