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/plugin.h | |
| parent | 24327ddf7ba62c873bd392fa5abe5c341b4a47b9 (diff) | |
| download | rockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.zip rockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.tar.gz rockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.tar.bz2 rockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.tar.xz | |
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/plugin.h')
| -rw-r--r-- | apps/plugin.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index c7049c7..a2e24f8 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -112,7 +112,7 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 76 +#define PLUGIN_API_VERSION 77 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -259,7 +259,7 @@ struct plugin_api { void (*lcd_remote_bitmap)(const fb_remote_data *src, int x, int y, int width, int height); #endif -#if defined(HAVE_LCD_COLOR) && !defined(SIMULATOR) +#if defined(HAVE_LCD_COLOR) void (*lcd_yuv_blit)(unsigned char * const src[3], int src_x, int src_y, int stride, int x, int y, int width, int height); @@ -623,6 +623,10 @@ struct plugin_api { bool (*get_metadata)(struct mp3entry* id3, int fd, const char* trackname); #endif void (*led)(bool on); + +#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) + void (*lcd_yuv_set_options)(unsigned options); +#endif }; /* plugin header */ |