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.

buflib: update BUFLIB_ALLOC_OVERHEAD

Allocation overhead should be 5 units, not 6.

Change-Id: I30aa0925aa49eb25d232f7de2bf8b8ce1509d862

+1 -1
+1 -1
firmware/include/buflib.h
··· 65 65 * BUFLIB_ALLOC_OVERHEAD + requested bytes + strlen(<name passed to 66 66 * buflib_alloc_ex()) + pad to pointer size 67 67 */ 68 - #define BUFLIB_ALLOC_OVERHEAD (6*sizeof(union buflib_data)) 68 + #define BUFLIB_ALLOC_OVERHEAD (5*sizeof(union buflib_data)) 69 69 70 70 /** 71 71 * Callbacks used by the buflib to inform allocation that compaction