1
0
Fork 0
forked from len0rd/rockbox

mips: fix some compile warnings.

Change-Id: Ia5e83702313c1c184480290d3b0e6a66f01b7277
This commit is contained in:
Solomon Peachy 2018-10-09 22:29:28 -04:00
parent 53d72a8be1
commit d2cef81bba
5 changed files with 11 additions and 5 deletions

View file

@ -371,7 +371,9 @@ bool vo_draw_frame_thumb(uint8_t * const * buf, const struct vo_rect *rc)
uint8_t *yuv[3];
struct vo_rect thumb_rc;
int thumb_width, thumb_height;
#ifdef HAVE_LCD_COLOR
int thumb_uv_width, thumb_uv_height;
#endif
/* Obtain rectangle as clipped to the screen */
vo_rect_set_ext(&thumb_rc, 0, 0, LCD_WIDTH, LCD_HEIGHT);
@ -386,11 +388,15 @@ bool vo_draw_frame_thumb(uint8_t * const * buf, const struct vo_rect *rc)
thumb_width = rc->r - rc->l;
thumb_height = rc->b - rc->t;
#ifdef HAVE_LCD_COLOR
thumb_uv_width = thumb_width / 2;
thumb_uv_height = thumb_height / 2;
DEBUGF("thumb: w: %d h: %d uvw: %d uvh: %d\n", thumb_width,
thumb_height, thumb_uv_width, thumb_uv_height);
#else
DEBUGF("thumb: w: %d h: %d\n", thumb_width, thumb_height);
#endif
/* Use remaining mpeg2 buffer as temp space */
mem = mpeg2_get_buf(&bufsize);