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.

Fix FS#11858 which was introduced with r28937. Several *.rm were not played because the parser aborted with error for several files.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29015 a1c6a512-1295-4272-9138-f99709370657

+8 -1
+8 -1
apps/metadata/rm.c
··· 375 375 else 376 376 skipped += temp; 377 377 } 378 + else if (v == FOURCC('L','S','D',':')) 379 + { 380 + DEBUGF("Real audio lossless is not supported."); 381 + return -1; 382 + } 378 383 else 379 384 { 385 + /* We shall not abort with -1 here. *.rm file often seem 386 + * to have a second media properties header that contains 387 + * other metadata. */ 380 388 DEBUGF("Unknown header signature :\"%s\"\n", fourcc2str(v)); 381 - return -1; 382 389 } 383 390 384 391