audio improvement wip
[picodrive.git] / platform / gp2x / code940 / 940shared.h
1 #include "../../../Pico/sound/ym2612.h"\r
2 #include "../helix/pub/mp3dec.h"\r
3 \r
4 // max 16 jobs\r
5 enum _940_job_t {\r
6         JOB940_INITALL = 1,\r
7         JOB940_INVALIDATE_DCACHE,\r
8         JOB940_YM2612RESETCHIP,\r
9         JOB940_YM2612UPDATEONE,\r
10         JOB940_MP3DECODE,\r
11         JOB940_PICOSTATELOAD,\r
12 };\r
13 \r
14 //#define MAX_940JOBS   2\r
15 \r
16 typedef struct\r
17 {\r
18         YM2612  ym2612;                         /* current state of the emulated YM2612 */\r
19         HMP3Decoder mp3dec;                     /* mp3 decoder's handle */\r
20         int     ym_buffer[44100/50*2];          /* this is where the YM2612 samples will be mixed to */\r
21         short   mp3_buffer[2][1152*2];          /* buffers for mp3 decoder's output */\r
22 } _940_data_t;\r
23 \r
24 \r
25 typedef struct\r
26 {\r
27         int             vstarts[8];                             /* debug: 00: number of starts from each of 8 vectors */\r
28         int             last_lr;                                /* debug: 20: last exception's lr */\r
29 //      int             jobs[MAX_940JOBS];                      /* jobs for second core */\r
30 //      int             busy_;                                  /* unused */\r
31         int             length;                                 /* number of samples to mix (882 max) */\r
32         int             stereo;                                 /* mix samples as stereo, doubles sample count automatically */\r
33         int             baseclock;                              /* ym2612 settings */\r
34         int             rate;\r
35         int             writebuffsel;                   /* which write buffer to use (from 940 side) */\r
36         UINT16  writebuff0[2048];                       /* list of writes to ym2612, 1024 for savestates, 1024 extra */\r
37         UINT16  writebuff1[2048];\r
38         int             ym_active_chs;\r
39         int             mp3_len;                        /* data len of loaded mp3 */\r
40         int             mp3_offs;                       /* current playback offset (just after last decoded frame) */\r
41         int             mp3_buffsel;                    /* which output buffer to decode to */\r
42         int             loopc;                          /* debug: main loop counter */\r
43         int             mp3_errors;                     /* debug: mp3 decoder's error counter */\r
44         int             mp3_lasterr;                    /* debug: mp3 decoder's last error */\r
45         int             lastjob;                        /* debug: last job id */\r
46 } _940_ctl_t;\r