summaryrefslogtreecommitdiffstats
path: root/apps/plugins/pacbox/pacbox.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-03-15 02:00:34 +0000
committerDave Chapman <dave@dchapman.com>2006-03-15 02:00:34 +0000
commitbfd2b868174a2eba4deb51d9967d151b40173e72 (patch)
tree61178a10042dd8b5335e3d40e482c60ebd03cba6 /apps/plugins/pacbox/pacbox.h
parent67760ded3352839925c6ff39f922d3a801b6144a (diff)
downloadrockbox-bfd2b868174a2eba4deb51d9967d151b40173e72.tar.gz
rockbox-bfd2b868174a2eba4deb51d9967d151b40173e72.zip
Enable frame-rate control for all targets. Change the iPod Nano to display 30fps (the other targets are all aiming for 20fps, but are not yet achieving it)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9042 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pacbox/pacbox.h')
-rw-r--r--apps/plugins/pacbox/pacbox.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/plugins/pacbox/pacbox.h b/apps/plugins/pacbox/pacbox.h
index 84bd8a7be8..3e80754f76 100644
--- a/apps/plugins/pacbox/pacbox.h
+++ b/apps/plugins/pacbox/pacbox.h
@@ -88,4 +88,15 @@
#define YOFS ((LCD_HEIGHT-224/2)/2)
#endif
+/* How many video frames (out of a possible 60) we display each second.
+ NOTE: pacbox.c assumes this is an integer divisor of 60
+ */
+#ifdef APPLE_IPOD_NANO
+/* The Nano can manage full-speed at 30fps (1 in 2 frames) */
+#define FPS 30
+#else
+/* We aim for 20fps on the other targets (1 in 3 frames) */
+#define FPS 20
+#endif
+
#endif