summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-08-12 09:27:26 +0000
committerDave Chapman <dave@dchapman.com>2006-08-12 09:27:26 +0000
commit7fe7427de8568f78acd447bd072377bdbf406127 (patch)
tree965268a575c7bc66a0620b61d25605c954400cb4 /apps/plugins
parent2c002d894d00d405b3f08994a95c079d8d108a19 (diff)
downloadrockbox-7fe7427de8568f78acd447bd072377bdbf406127.tar.gz
rockbox-7fe7427de8568f78acd447bd072377bdbf406127.zip
Clean up the #ifdefs surrounding the definition of lcd_yuv_blit() and add an initial (untested) implementation for the Gigabeat
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10541 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/mpegplayer/video_out_rockbox.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/plugins/mpegplayer/video_out_rockbox.c b/apps/plugins/mpegplayer/video_out_rockbox.c
index cac5cf3d5c..7bce6aadaa 100644
--- a/apps/plugins/mpegplayer/video_out_rockbox.c
+++ b/apps/plugins/mpegplayer/video_out_rockbox.c
@@ -200,10 +200,7 @@ static void rockbox_draw_frame (vo_instance_t * instance,
200 (void)id; 200 (void)id;
201 (void)instance; 201 (void)instance;
202 202
203#if (CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO \ 203#if defined(HAVE_LCD_COLOR) && !defined(SIMULATOR)
204 || CONFIG_LCD == LCD_H300 || CONFIG_LCD == LCD_IPODVIDEO \
205 || CONFIG_LCD == LCD_X5) \
206 && !defined(SIMULATOR)
207 rb->lcd_yuv_blit(buf, 204 rb->lcd_yuv_blit(buf,
208 0,0,image_width, 205 0,0,image_width,
209 output_x,output_y,output_width,output_height); 206 output_x,output_y,output_width,output_height);