From 78673090c59b47ae3d540c25839bce40db6f720d Mon Sep 17 00:00:00 2001 From: kub Date: Tue, 4 Feb 2025 21:45:54 +0100 Subject: [PATCH] mcd, make audio/binary track type handling more locally --- pico/cd/cd_image.c | 12 ++++-------- pico/cd/cdd.c | 7 +++++-- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/pico/cd/cd_image.c b/pico/cd/cd_image.c index afe9dff0..d2210a6f 100644 --- a/pico/cd/cd_image.c +++ b/pico/cd/cd_image.c @@ -49,7 +49,7 @@ static int handle_mp3(const char *fname, int index) return -1; } - track->type = CT_AUDIO; + track->type = CT_MP3; track->fd = tmp_file; track->offset = 0; @@ -93,8 +93,6 @@ int load_cd_image(const char *cd_img_name, int *type) if (PicoCDLoadProgressCB != NULL) PicoCDLoadProgressCB(cd_img_name, 1); - Pico_mcd->cdda_type = CT_UNKNOWN; - /* is this a .cue? */ cue_data = cue_parse(cd_img_name); if (cue_data != NULL) { @@ -115,7 +113,7 @@ int load_cd_image(const char *cd_img_name, int *type) } tracks[0].fd = pmf; tracks[0].fname = strdup(cd_img_name); - tracks[0].type = *type & CT_AUDIO; + tracks[0].type = *type; if (*type == CT_ISO) cd_img_sectors = pmf->size >> 11; // size in sectors @@ -186,8 +184,7 @@ int load_cd_image(const char *cd_img_name, int *type) // overriden by custom cue command length = cue_data->tracks[n].sector_xlength; - Pico_mcd->cdda_type = cue_data->tracks[n].type; - tracks[index].type = cue_data->tracks[n].type & CT_AUDIO; + tracks[index].type = cue_data->tracks[n].type; tracks[index].start = lba; lba += length; @@ -253,8 +250,7 @@ int load_cd_image(const char *cd_img_name, int *type) lba += length; tracks[index].end = lba; - Pico_mcd->cdda_type = CT_MP3; - tracks[index].type = CT_AUDIO; + tracks[index].type = CT_MP3; sprintf_lba(tmp_ext, sizeof(tmp_ext), tracks[index].start); elprintf(EL_STATUS, "Track %2i: %s %9i AUDIO - %s", diff --git a/pico/cd/cdd.c b/pico/cd/cdd.c index 2e95a89a..0030b16c 100644 --- a/pico/cd/cdd.c +++ b/pico/cd/cdd.c @@ -188,9 +188,12 @@ void cdd_play_audio(int index, int lba) for (i = index; i >= 0; i--) if (cdd.toc.tracks[i].fd != NULL) break; + // TODO: this doesn't cover all tracks being in a single bin file properly: + // in that case, fd should be duplicated to work properly with this MD+ shit. if (! is_audio(i)) return; Pico_mcd->cdda_stream = cdd.toc.tracks[i].fd; + Pico_mcd->cdda_type = cdd.toc.tracks[i].type; base = cdd.toc.tracks[index].offset; lba_offset = lba - cdd.toc.tracks[index].start; lb_len = cdd.toc.tracks[index].end - cdd.toc.tracks[index].start; @@ -467,7 +470,7 @@ int cdd_unload(void) int i; /* stop audio streaming */ - Pico_mcd->cdda_stream = NULL; + if (Pico_mcd) Pico_mcd->cdda_stream = NULL; /* close CD tracks */ if (cdd.toc.tracks[0].fd) @@ -492,7 +495,7 @@ int cdd_unload(void) if (cdd.toc.tracks[i].fd) { /* close file */ - if (Pico_mcd->cdda_type == CT_MP3) + if (cdd.toc.tracks[i].type == CT_MP3) fclose(cdd.toc.tracks[i].fd); else pm_close(cdd.toc.tracks[i].fd); -- 2.39.5