diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-09-25 02:59:42 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-09-25 02:59:42 +0000 |
commit | 287d6223d3e4f90043e5fd36cf49d7267b53023d (patch) | |
tree | 04771c28f2b826099805f5a5ad98b8c4e41091cc /apps/plugins/mpegplayer/mpeg_settings.h | |
parent | 24327ddf7ba62c873bd392fa5abe5c341b4a47b9 (diff) |
Dithering option for mpegplayer on gigabeat-f/x and e200. Assembly IDCT for ARm just to make it all work more nicely. Move UI simulator YUV code to its core to adapt it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/mpeg_settings.h')
-rw-r--r-- | apps/plugins/mpegplayer/mpeg_settings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_settings.h b/apps/plugins/mpegplayer/mpeg_settings.h index cd2dcd2343..7721c46f64 100644 --- a/apps/plugins/mpegplayer/mpeg_settings.h +++ b/apps/plugins/mpegplayer/mpeg_settings.h @@ -5,6 +5,9 @@ struct mpeg_settings { int showfps; int limitfps; int skipframes; +#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) + unsigned displayoptions; +#endif }; extern struct mpeg_settings settings; |