diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-10-21 13:46:26 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-10-21 13:46:26 +0000 |
commit | c1051549b93d1905602ba25409cbd8f4a607c3b5 (patch) | |
tree | 303c0129884c3c32c6ca1e425b8edd4c9caf3ebc /apps/plugin.h | |
parent | e1a91b9138148bd33ee0bae72a7367b6282aca7f (diff) | |
download | rockbox-c1051549b93d1905602ba25409cbd8f4a607c3b5.tar.gz rockbox-c1051549b93d1905602ba25409cbd8f4a607c3b5.zip |
Implement YUV dithering for c200, and enable the option in mpegplayer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15246 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r-- | apps/plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index ee58687bf0..27ab2ce166 100644 --- a/apps/plugin.h +++ b/apps/plugin.h | |||
@@ -112,12 +112,12 @@ | |||
112 | #define PLUGIN_MAGIC 0x526F634B /* RocK */ | 112 | #define PLUGIN_MAGIC 0x526F634B /* RocK */ |
113 | 113 | ||
114 | /* increase this every time the api struct changes */ | 114 | /* increase this every time the api struct changes */ |
115 | #define PLUGIN_API_VERSION 84 | 115 | #define PLUGIN_API_VERSION 85 |
116 | 116 | ||
117 | /* update this to latest version if a change to the api struct breaks | 117 | /* update this to latest version if a change to the api struct breaks |
118 | backwards compatibility (and please take the opportunity to sort in any | 118 | backwards compatibility (and please take the opportunity to sort in any |
119 | new function which are "waiting" at the end of the function table) */ | 119 | new function which are "waiting" at the end of the function table) */ |
120 | #define PLUGIN_MIN_API_VERSION 84 | 120 | #define PLUGIN_MIN_API_VERSION 85 |
121 | 121 | ||
122 | /* plugin return codes */ | 122 | /* plugin return codes */ |
123 | enum plugin_status { | 123 | enum plugin_status { |
@@ -266,7 +266,7 @@ struct plugin_api { | |||
266 | int x, int y, int width, int height); | 266 | int x, int y, int width, int height); |
267 | #endif | 267 | #endif |
268 | 268 | ||
269 | #if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) | 269 | #if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) |
270 | void (*lcd_yuv_set_options)(unsigned options); | 270 | void (*lcd_yuv_set_options)(unsigned options); |
271 | #endif | 271 | #endif |
272 | 272 | ||