X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fgp2x%2Fcode940%2F940shared.h;h=6f12a32f08527855923f6fdb6e11fd45bfb2410f;hb=ce07c136bb10124ebb2029d5275e27ca2a6254af;hp=7f348e2d70f10ac859cee878380b6b4d2cc8156d;hpb=091facb8fe133c8318ed13147b244e9af602a2ac;p=picodrive.git diff --git a/platform/gp2x/code940/940shared.h b/platform/gp2x/code940/940shared.h index 7f348e2..6f12a32 100644 --- a/platform/gp2x/code940/940shared.h +++ b/platform/gp2x/code940/940shared.h @@ -1,5 +1,4 @@ -#include "../../../Pico/sound/ym2612.h" -#include "../../common/helix/pub/mp3dec.h" +#include "../../../pico/sound/ym2612.h" // max 16 jobs, lower num means higher prio enum _940_job_t { @@ -20,7 +19,7 @@ enum _940_job_t { typedef struct { YM2612 ym2612; /* current state of the emulated YM2612 */ - HMP3Decoder mp3dec; /* mp3 decoder's handle */ + void *mp3dec; /* mp3 decoder's handle */ int ym_buffer[44100/50*2]; /* this is where the YM2612 samples will be mixed to */ short mp3_buffer[2][1152*2]; /* buffers for mp3 decoder's output */ } _940_data_t;