summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer')
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c2
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.h12
-rw-r--r--apps/plugins/mpegplayer/stream_mgr.c29
-rw-r--r--apps/plugins/mpegplayer/video_out_rockbox.c2
4 files changed, 21 insertions, 24 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 8ea4ee3..48bb730 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -868,7 +868,7 @@ static void wvs_refresh(int hint)
vo_unlock();
#else
- gray_deferred_lcd_update();
+ grey_deferred_lcd_update();
#endif
}
diff --git a/apps/plugins/mpegplayer/mpegplayer.h b/apps/plugins/mpegplayer/mpegplayer.h
index ae1234d..4ebf321 100644
--- a/apps/plugins/mpegplayer/mpegplayer.h
+++ b/apps/plugins/mpegplayer/mpegplayer.h
@@ -85,12 +85,12 @@ enum mpeg_malloc_reason_t
#define GRAY_VIDEO_FLUSH_ICACHE()
#define GRAY_VIDEO_INVALIDATE_ICACHE()
#else
-#include "gray.h"
-#define DRAW_BLACK GRAY_BLACK
-#define DRAW_DARKGRAY GRAY_DARKGRAY
-#define DRAW_LIGHTGRAY GRAY_LIGHTGRAY
-#define DRAW_WHITE GRAY_WHITE
-#define lcd_(fn) gray_##fn
+#include "grey.h"
+#define DRAW_BLACK GREY_BLACK
+#define DRAW_DARKGRAY GREY_DARKGRAY
+#define DRAW_LIGHTGRAY GREY_LIGHTGRAY
+#define DRAW_WHITE GREY_WHITE
+#define lcd_(fn) grey_##fn
#define GRAY_FLUSH_ICACHE() \
IF_COP(flush_icache())
diff --git a/apps/plugins/mpegplayer/stream_mgr.c b/apps/plugins/mpegplayer/stream_mgr.c
index 8d2e42f..c473db3 100644
--- a/apps/plugins/mpegplayer/stream_mgr.c
+++ b/apps/plugins/mpegplayer/stream_mgr.c
@@ -20,7 +20,7 @@
****************************************************************************/
#include "plugin.h"
#include "mpegplayer.h"
-#include "gray.h"
+#include "grey.h"
#include "mpeg_settings.h"
static struct event_queue stream_mgr_queue NOCACHEBSS_ATTR;
@@ -712,7 +712,7 @@ bool stream_show_vo(bool show)
GRAY_VIDEO_INVALIDATE_ICACHE();
GRAY_INVALIDATE_ICACHE();
- gray_show(show);
+ grey_show(show);
GRAY_FLUSH_ICACHE();
#endif
@@ -801,11 +801,10 @@ bool stream_set_gray_rect(const struct vo_rect *rc)
vo_lock();
- gray_init(rb, stream_mgr.graymem, stream_mgr.graysize,
- false, rc_gray.r - rc_gray.l, rc_gray.b - rc_gray.t,
- 32, 2<<8, NULL);
+ grey_init(rb, stream_mgr.graymem, stream_mgr.graysize, false,
+ rc_gray.r - rc_gray.l, rc_gray.b - rc_gray.t, NULL);
- gray_set_position(rc_gray.l, rc_gray.t);
+ grey_set_position(rc_gray.l, rc_gray.t);
vo_unlock();
@@ -818,7 +817,7 @@ bool stream_set_gray_rect(const struct vo_rect *rc)
if (vis)
{
- gray_show(true);
+ grey_show(true);
parser_send_video_msg(VIDEO_DISPLAY_SHOW, true);
}
}
@@ -836,7 +835,7 @@ void stream_gray_show(bool show)
GRAY_VIDEO_INVALIDATE_ICACHE();
GRAY_INVALIDATE_ICACHE();
- gray_show(show);
+ grey_show(show);
GRAY_FLUSH_ICACHE();
@@ -1095,16 +1094,14 @@ int stream_init(void)
/* Initialize non-allocator blocks first */
#ifndef HAVE_LCD_COLOR
- int grayscales;
+ bool success;
/* This can run on another processor - align data */
memsize = CACHEALIGN_BUFFER(&mem, memsize);
stream_mgr.graymem = mem;
- /* initialize the grayscale buffer: 32 bitplanes for 33 shades of gray. */
- grayscales = gray_init(rb, mem, memsize, false,
- LCD_WIDTH, LCD_HEIGHT,
- 32, 2<<8, &stream_mgr.graysize) + 1;
+ success = grey_init(rb, mem, memsize, false, LCD_WIDTH,
+ LCD_HEIGHT, &stream_mgr.graysize);
/* This can run on another processor - align size */
stream_mgr.graysize = CACHEALIGN_UP(stream_mgr.graysize);
@@ -1112,9 +1109,9 @@ int stream_init(void)
mem += stream_mgr.graysize;
memsize -= stream_mgr.graysize;
- if (grayscales < 33 || (ssize_t)memsize <= 0)
+ if (!success || (ssize_t)memsize <= 0)
{
- rb->splash(HZ, "graylib init failed!");
+ rb->splash(HZ, "greylib init failed!");
stream_mgr.graymem = NULL;
return STREAM_ERROR;
}
@@ -1188,6 +1185,6 @@ void stream_exit(void)
#ifndef HAVE_LCD_COLOR
if (stream_mgr.graymem != NULL)
- gray_release();
+ grey_release();
#endif
}
diff --git a/apps/plugins/mpegplayer/video_out_rockbox.c b/apps/plugins/mpegplayer/video_out_rockbox.c
index 39d0e82..12431be 100644
--- a/apps/plugins/mpegplayer/video_out_rockbox.c
+++ b/apps/plugins/mpegplayer/video_out_rockbox.c
@@ -107,7 +107,7 @@ static inline void yuv_blit(uint8_t * const * buf, int src_x, int src_y,
#ifdef HAVE_LCD_COLOR
rb->lcd_yuv_blit(buf, src_x, src_y, stride, x, y , width, height);
#else
- gray_ub_gray_bitmap_part(buf[0], src_x, src_y, stride, x, y, width, height);
+ grey_ub_gray_bitmap_part(buf[0], src_x, src_y, stride, x, y, width, height);
#endif
video_unlock();