Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

metadata: mp3: fix iTunSMPB info replacing comment

Data from the iTunes seamless playback data field
(support for which was introduced in f3e5ced)
prevents proper comments from being displayed.

Change-Id: Ifb00b1229e636a79a460ba6d706191fcf28b1502

+3 -1
+3 -1
lib/rbcodec/metadata/id3tags.c
··· 1123 1123 break; 1124 1124 1125 1125 tag[bytesread] = 0; 1126 - bufferpos += bytesread + 1; 1127 1126 1128 1127 /* parse the tag if it contains iTunes gapless info */ 1129 1128 if (itunes_gapless) ··· 1131 1130 itunes_gapless = false; 1132 1131 entry->lead_trim = get_itunes_int32(tag, 1); 1133 1132 entry->tail_trim = get_itunes_int32(tag, 2); 1133 + break; 1134 1134 } 1135 + 1136 + bufferpos += bytesread + 1; 1135 1137 1136 1138 /* Note that parser functions sometimes set *ptag to NULL, so 1137 1139 * the "!*ptag" check here doesn't always have the desired