diff options
author | Rani Hod <raenye@gmail.com> | 2006-08-11 14:10:34 +0000 |
---|---|---|
committer | Rani Hod <raenye@gmail.com> | 2006-08-11 14:10:34 +0000 |
commit | bcd94a9b01d19d87a437cd8158a758f206b30825 (patch) | |
tree | a98c155891484895a082763ea82c51fe76b89859 /apps/plugins/mpegplayer/video_out_rockbox.c | |
parent | d24ed9987b54c16fd73087cf01c27bafcf03dd1c (diff) |
Accepted FS #5786 by Michael Sevakis - lcd_yuv_blit() for X5.
hard coded to YUV4:2:0 for now, gives ~13.5 fps.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10528 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/video_out_rockbox.c')
-rw-r--r-- | apps/plugins/mpegplayer/video_out_rockbox.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/video_out_rockbox.c b/apps/plugins/mpegplayer/video_out_rockbox.c index 174921e837..cac5cf3d5c 100644 --- a/apps/plugins/mpegplayer/video_out_rockbox.c +++ b/apps/plugins/mpegplayer/video_out_rockbox.c @@ -201,7 +201,8 @@ static void rockbox_draw_frame (vo_instance_t * instance, (void)instance; #if (CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO \ - || CONFIG_LCD == LCD_H300 || CONFIG_LCD == LCD_IPODVIDEO) \ + || CONFIG_LCD == LCD_H300 || CONFIG_LCD == LCD_IPODVIDEO \ + || CONFIG_LCD == LCD_X5) \ && !defined(SIMULATOR) rb->lcd_yuv_blit(buf, 0,0,image_width, |