summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
-rw-r--r--apps/plugins/mpegplayer/mpeg_settings.c2
-rw-r--r--apps/plugins/mpegplayer/mpeg_settings.h3
4 files changed, 5 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index f079e849bd..7f362c8566 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -128,7 +128,7 @@ static const struct plugin_api rockbox_api = {
128 lcd_bitmap_transparent, 128 lcd_bitmap_transparent,
129 lcd_blit_yuv, 129 lcd_blit_yuv,
130#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \ 130#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
131 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) 131 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) || defined(SANSA_FUZE) || defined(SANSA_E200V2)
132 lcd_yuv_set_options, 132 lcd_yuv_set_options,
133#endif 133#endif
134#elif (LCD_DEPTH < 4) && !defined(SIMULATOR) 134#elif (LCD_DEPTH < 4) && !defined(SIMULATOR)
diff --git a/apps/plugin.h b/apps/plugin.h
index 5efe3fe00c..f48e7e23ee 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -210,7 +210,7 @@ struct plugin_api {
210 int src_x, int src_y, int stride, 210 int src_x, int src_y, int stride,
211 int x, int y, int width, int height); 211 int x, int y, int width, int height);
212#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \ 212#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
213 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) 213 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) || defined(SANSA_FUZE) || defined(SANSA_E200V2)
214 void (*lcd_yuv_set_options)(unsigned options); 214 void (*lcd_yuv_set_options)(unsigned options);
215#endif 215#endif
216#elif (LCD_DEPTH < 4) && !defined(SIMULATOR) 216#elif (LCD_DEPTH < 4) && !defined(SIMULATOR)
diff --git a/apps/plugins/mpegplayer/mpeg_settings.c b/apps/plugins/mpegplayer/mpeg_settings.c
index 3edb2987a1..189bdbcde7 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.c
+++ b/apps/plugins/mpegplayer/mpeg_settings.c
@@ -205,7 +205,7 @@ static struct configdata config[] =
205 NULL}, 205 NULL},
206 {TYPE_INT, 0, MPEG_RESUME_NUM_OPTIONS, 206 {TYPE_INT, 0, MPEG_RESUME_NUM_OPTIONS,
207 { .int_p = &settings.resume_options }, "Resume options", NULL}, 207 { .int_p = &settings.resume_options }, "Resume options", NULL},
208#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) 208#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) || defined(SANSA_FUZE) || defined(SANSA_E200V2)
209 {TYPE_INT, 0, INT_MAX, { .int_p = &settings.displayoptions }, 209 {TYPE_INT, 0, INT_MAX, { .int_p = &settings.displayoptions },
210 "Display options", NULL}, 210 "Display options", NULL},
211#endif 211#endif
diff --git a/apps/plugins/mpegplayer/mpeg_settings.h b/apps/plugins/mpegplayer/mpeg_settings.h
index 6de9e698b0..fc43db036b 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.h
+++ b/apps/plugins/mpegplayer/mpeg_settings.h
@@ -6,7 +6,8 @@
6#define SETTINGS_FILENAME "mpegplayer.cfg" 6#define SETTINGS_FILENAME "mpegplayer.cfg"
7 7
8#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \ 8#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
9 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) 9 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) \
10 || defined(SANSA_FUZE) || defined(SANSA_E200V2)
10#define MPEG_OPTION_DITHERING_ENABLED 1 11#define MPEG_OPTION_DITHERING_ENABLED 1
11#endif 12#endif
12 13