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.

test_codec: Fix crash due to missing strip_filesize function

Probably only affects mp3 files.

(Introduced in 38105860dca8ee4475dbaa4ef7e981a4e34d7d8d)

Change-Id: I1946e7be604784ec47ff21a47aab81e91d933a3d

+6
+6
apps/plugins/test_codec.c
··· 524 524 525 525 } 526 526 527 + static void strip_filesize(off_t size) 528 + { 529 + ci.filesize = size; 530 + } 531 + 527 532 static void init_ci(void) 528 533 { 529 534 /* --- Our "fake" implementations of the codec API functions. --- */ ··· 547 552 ci.configure = configure; 548 553 ci.get_command = get_command; 549 554 ci.loop_track = loop_track; 555 + ci.strip_filesize = strip_filesize; 550 556 551 557 /* --- "Core" functions --- */ 552 558