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.

Gigabeat F can easily manage 60fps in pacbox.

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

+4 -4
+4 -4
apps/plugins/pacbox/pacbox.h
··· 299 299 /* How many video frames (out of a possible 60) we display each second. 300 300 NOTE: pacbox.c assumes this is an integer divisor of 60 301 301 */ 302 - #if defined(TOSHIBA_GIGABEAT_S) 303 - /* Gigabeat S can manage the full framerate (1 in 1 frames) */ 302 + #if defined(TOSHIBA_GIGABEAT_S) || defined (TOSHIBA_GIGABEAT_F) 303 + /* Gigabeat S,F can manage the full framerate (1 in 1 frames) */ 304 304 #define FPS 60 305 - #elif defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F) 306 - /* The Nano and Gigabeat F can manage full-speed at 30fps (1 in 2 frames) */ 305 + #elif defined(IPOD_NANO) 306 + /* The Nano can manage full-speed at 30fps (1 in 2 frames) */ 307 307 #define FPS 30 308 308 #else 309 309 /* We aim for 20fps on the other targets (1 in 3 frames) */