Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

lcd: Do not alias lcd_write_yuv420_lines_odither() to lcd_write_yuv420_lines()

Causes a warning with GCC8 as the protoypes are not the same.

Only affects targets that lack an asm-optimized version (eg mips)

Change-Id: I22e4657f3fb71ebbb915e4f290bf3670b1b87636

+7 -5
+7 -5
firmware/asm/lcd-as-memframe.c
··· 25 25 return val; 26 26 } 27 27 28 - extern void lcd_write_yuv420_lines(fb_data *dst, 29 - unsigned char const * const src[3], 30 - int width, 31 - int stride) 28 + void lcd_write_yuv420_lines(fb_data *dst, 29 + unsigned char const * const src[3], 30 + int width, 31 + int stride) 32 32 { 33 33 /* Draw a partial YUV colour bitmap - similiar behavior to lcd_blit_yuv 34 34 in the core */ ··· 176 176 unsigned char const * const src[3], 177 177 int width, int stride, 178 178 int x_screen, int y_screen) 179 - __attribute__((alias("lcd_write_yuv420_lines"))); 179 + { 180 + return lcd_write_yuv420_lines(dst, src, width, stride); 181 + }