1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
21 2005-04-16 Tomas Salfischberger:
22 - New BMP loader function, based on the old one (borrowed a lot of
23 calculations and checks there.)
24 - Conversion part needs some optimization, doing unneeded calulations now.
25 2006-11-18 Jens Arnold: complete rework
26 - All canonical formats supported now (1, 4, 8, 15/16, 24 and 32 bit)
27 - better protection against malformed / non-standard BMPs
28 - code heavily optimised for both size and speed
29 - dithering for 2 bit targets
38 #ifdef HAVE_REMOTE_LCD
39 #include "lcd-remote.h"
48 #define STRUCT_PACKED __attribute__((packed))
51 #pragma pack (push, 2)
54 /* BMP header structure */
56 uint16_t type
; /* signature - 'BM' */
57 uint32_t size
; /* file size in bytes */
58 uint16_t reserved1
; /* 0 */
59 uint16_t reserved2
; /* 0 */
60 uint32_t off_bits
; /* offset to bitmap */
61 uint32_t struct_size
; /* size of this struct (40) */
62 uint32_t width
; /* bmap width in pixels */
63 uint32_t height
; /* bmap height in pixels */
64 uint16_t planes
; /* num planes - always 1 */
65 uint16_t bit_count
; /* bits per pixel */
66 uint32_t compression
; /* compression flag */
67 uint32_t size_image
; /* image size in bytes */
68 int32_t x_pels_per_meter
; /* horz resolution */
69 int32_t y_pels_per_meter
; /* vert resolution */
70 uint32_t clr_used
; /* 0 -> color table size */
71 uint32_t clr_important
; /* important color count */
75 struct { /* Little endian */
79 unsigned char reserved
;
84 /* masks for supported BI_BITFIELDS encodings (16/32 bit), little endian */
85 static const unsigned char bitfields
[3][12] = {
86 { 0x00,0x7c,0x00,0, 0xe0,0x03,0x00,0, 0x1f,0x00,0x00,0 }, /* 15 bit */
87 { 0x00,0xf8,0x00,0, 0xe0,0x07,0x00,0, 0x1f,0x00,0x00,0 }, /* 16 bit */
88 { 0x00,0x00,0xff,0, 0x00,0xff,0x00,0, 0xff,0x00,0x00,0 }, /* 32 bit */
91 #if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
92 /* canonical ordered dither matrix */
93 static const unsigned char dither_matrix
[16][16] = {
94 { 0,192, 48,240, 12,204, 60,252, 3,195, 51,243, 15,207, 63,255 },
95 { 128, 64,176,112,140, 76,188,124,131, 67,179,115,143, 79,191,127 },
96 { 32,224, 16,208, 44,236, 28,220, 35,227, 19,211, 47,239, 31,223 },
97 { 160, 96,144, 80,172,108,156, 92,163, 99,147, 83,175,111,159, 95 },
98 { 8,200, 56,248, 4,196, 52,244, 11,203, 59,251, 7,199, 55,247 },
99 { 136, 72,184,120,132, 68,180,116,139, 75,187,123,135, 71,183,119 },
100 { 40,232, 24,216, 36,228, 20,212, 43,235, 27,219, 39,231, 23,215 },
101 { 168,104,152, 88,164,100,148, 84,171,107,155, 91,167,103,151, 87 },
102 { 2,194, 50,242, 14,206, 62,254, 1,193, 49,241, 13,205, 61,253 },
103 { 130, 66,178,114,142, 78,190,126,129, 65,177,113,141, 77,189,125 },
104 { 34,226, 18,210, 46,238, 30,222, 33,225, 17,209, 45,237, 29,221 },
105 { 162, 98,146, 82,174,110,158, 94,161, 97,145, 81,173,109,157, 93 },
106 { 10,202, 58,250, 6,198, 54,246, 9,201, 57,249, 5,197, 53,245 },
107 { 138, 74,186,122,134, 70,182,118,137, 73,185,121,133, 69,181,117 },
108 { 42,234, 26,218, 38,230, 22,214, 41,233, 25,217, 37,229, 21,213 },
109 { 170,106,154, 90,166,102,150, 86,169,105,153, 89,165,101,149, 85 }
113 #if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH == 2) \
114 && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
115 static const fb_remote_data remote_pattern
[4] = {
116 0x0101, 0x0100, 0x0001, 0x0000
120 /* little endian functions */
121 static inline unsigned readshort(uint16_t *value
)
123 unsigned char* bytes
= (unsigned char*) value
;
124 return (unsigned)bytes
[0] | ((unsigned)bytes
[1] << 8);
127 static inline uint32_t readlong(uint32_t *value
)
129 unsigned char* bytes
= (unsigned char*) value
;
130 return (uint32_t)bytes
[0] | ((uint32_t)bytes
[1] << 8) |
131 ((uint32_t)bytes
[2] << 16) | ((uint32_t)bytes
[3] << 24);
134 static inline unsigned brightness(union rgb_union color
)
136 return (3 * (unsigned)color
.red
+ 6 * (unsigned)color
.green
137 + (unsigned)color
.blue
) / 10;
140 /******************************************************************************
143 * Reads a BMP file and puts the data in rockbox format in *bitmap.
145 *****************************************************************************/
146 int read_bmp_file(char* filename
,
151 struct bmp_header bmph
;
152 int width
, height
, padded_width
;
153 int dst_height
, dst_width
;
154 int fd
, row
, col
, ret
;
155 int depth
, numcolors
, compression
, totalsize
;
157 unsigned char *bitmap
= bm
->data
;
158 uint32_t bmpbuf
[LCD_WIDTH
]; /* Buffer for one line */
159 uint32_t palette
[256];
160 #if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
161 bool transparent
= false;
163 #ifdef HAVE_REMOTE_LCD
166 if (format
& FORMAT_REMOTE
) {
168 #if LCD_REMOTE_DEPTH == 1
169 format
= FORMAT_MONO
;
171 format
&= ~FORMAT_REMOTE
;
174 #endif /* HAVE_REMOTE_LCD */
175 if (format
& FORMAT_TRANSPARENT
) {
177 format
&= ~FORMAT_TRANSPARENT
;
179 if (format
& FORMAT_DITHER
) {
181 format
&= ~FORMAT_DITHER
;
186 #endif /* (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) */
188 fd
= open(filename
, O_RDONLY
);
190 /* Exit if file opening failed */
192 DEBUGF("read_bmp_file: can't open '%s', rc: %d\n", filename
, fd
);
196 /* read fileheader */
197 ret
= read(fd
, &bmph
, sizeof(struct bmp_header
));
203 if (ret
!= sizeof(struct bmp_header
)) {
204 DEBUGF("read_bmp_file: can't read BMP header.");
209 width
= readlong(&bmph
.width
);
210 if (width
> LCD_WIDTH
) {
211 DEBUGF("read_bmp_file: Bitmap too wide (%d pixels, max is %d)\n",
217 height
= readlong(&bmph
.height
);
218 depth
= readshort(&bmph
.bit_count
);
219 padded_width
= ((width
* depth
+ 31) >> 3) & ~3; /* 4-byte boundary aligned */
221 #if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
222 if (format
== FORMAT_ANY
) {
224 format
= FORMAT_MONO
;
226 format
= FORMAT_NATIVE
;
229 #endif /* (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) */
230 /* returning image size */
234 #if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
235 if (format
== FORMAT_NATIVE
) {
236 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
238 #if (LCD_REMOTE_DEPTH == 2) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
240 dst_height
= (height
+ 7) >> 3;
241 #endif /* LCD_REMOTE_DEPTH / LCD_REMOTE_PIXELFORMAT */
242 totalsize
= dst_width
* dst_height
* sizeof(fb_remote_data
);
244 #endif /* defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1 */
247 #if LCD_PIXELFORMAT == VERTICAL_PACKING
249 dst_height
= (height
+ 3) >> 2;
250 #else /* LCD_PIXELFORMAT == HORIZONTAL_PACKING */
251 dst_width
= (width
+ 3) >> 2;
253 #endif /* LCD_PIXELFORMAT */
254 #elif LCD_DEPTH == 16
257 #endif /* LCD_DEPTH */
258 totalsize
= dst_width
* dst_height
* sizeof(fb_data
);
261 #endif /* (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) */
264 dst_height
= (height
+ 7) >> 3;
265 totalsize
= dst_width
* dst_height
;
268 /* Check if this fits the buffer */
269 if (totalsize
> maxsize
) {
270 DEBUGF("read_bmp_file: Bitmap too large for buffer: "
271 "%d bytes.\n", totalsize
);
276 compression
= readlong(&bmph
.compression
);
278 numcolors
= readlong(&bmph
.clr_used
);
280 numcolors
= 1 << depth
;
282 numcolors
= (compression
== 3) ? 3 : 0;
284 if (numcolors
> 0 && numcolors
<= 256) {
285 if (read(fd
, palette
, numcolors
* sizeof(uint32_t))
286 != numcolors
* (int)sizeof(uint32_t))
288 DEBUGF("read_bmp_file: Can't read color palette\n");
297 /* don't dither 16 bit BMP to LCD with same or larger depth */
298 #ifdef HAVE_REMOTE_LCD
303 if (compression
== 0) { /* BI_RGB, i.e. 15 bit */
306 } /* else fall through */
309 if (compression
== 3) { /* BI_BITFIELDS */
310 if (!memcmp(palette
, bitfields
[0], 12)) { /* 15 bit */
314 if (!memcmp(palette
, bitfields
[1], 12) /* 16 bit */
315 || !memcmp(palette
, bitfields
[2], 12)) /* 32 bit */
319 } /* else fall through */
322 if (compression
!= 0) { /* not BI_RGB */
323 DEBUGF("read_bmp_file: Unsupported compression (type %d)\n",
331 /* Search to the beginning of the image data */
332 lseek(fd
, (off_t
)readlong(&bmph
.off_bits
), SEEK_SET
);
334 memset(bitmap
, 0, totalsize
);
336 /* loop to read rows and put them to buffer */
337 for (row
= height
- 1; row
>= 0; row
--) {
343 union rgb_union q0
, q1
;
346 ret
= read(fd
, bmpbuf
, padded_width
);
347 if (ret
!= padded_width
) {
348 DEBUGF("read_bmp_file: error reading image, read returned: %d "
349 "expected: %d\n", ret
, padded_width
);
354 /* convert whole line in-place to XRGB8888 (little endian) */
360 p
= (unsigned char*)bmpbuf
+ ((width
+ 7) >> 3);
361 mask
= 0x80 >> ((width
+ 7) & 7);
362 while (p
> (unsigned char*)bmpbuf
) {
364 for (; mask
<= 0x80; mask
<<= 1)
365 *(--rp
) = (data
& mask
) ? q1
.raw
: q0
.raw
;
373 p
= (unsigned char*)bmpbuf
+ ((width
+ 1) >> 1);
374 while (p
> (unsigned char*)bmpbuf
) {
376 *(--rp
) = palette
[data
& 0x0f];
377 *(--rp
) = palette
[data
>> 4];
382 p
= (unsigned char*)bmpbuf
+ width
;
383 while (p
> (unsigned char*)bmpbuf
)
384 *(--rp
) = palette
[*(--p
)];
389 p2
= (uint16_t *)bmpbuf
+ width
;
390 while (p2
> (uint16_t *)bmpbuf
) {
391 unsigned component
, rgb
;
393 data
= letoh16(*(--p2
));
395 component
= (data
<< 3) & 0xf8;
396 #ifdef ROCKBOX_BIG_ENDIAN
397 rgb
= (component
| (component
>> 5)) << 8;
401 component
= data
& 0xf8;
402 rgb
|= component
| (component
>> 5);
405 component
= data
& 0xfc;
406 rgb
|= component
| (component
>> 6);
410 component
= data
& 0xf8;
411 rgb
= (rgb
<< 8) | component
| (component
>> 5);
413 #else /* little endian */
414 rgb
= component
| (component
>> 5);
418 component
= data
& 0xf8;
419 rgb
|= (component
| (component
>> 5)) << 8;
422 component
= data
& 0xfc;
423 rgb
|= (component
| (component
>> 6)) << 8;
427 component
= data
& 0xf8;
428 rgb
|= (component
| (component
>> 5)) << 16;
435 p
= (unsigned char*)bmpbuf
+ 3 * width
;
436 while (p
> (unsigned char*)bmpbuf
) {
438 data
= (data
<< 8) | *(--p
);
439 data
= (data
<< 8) | *(--p
);
440 *(--rp
) = htole32(data
);
444 case 32: /* already in desired format */
448 /* Convert to destination format */
449 qp
= (union rgb_union
*)bmpbuf
;
450 #if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
451 if (format
== FORMAT_NATIVE
) {
452 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
454 #if (LCD_REMOTE_DEPTH == 2) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
455 fb_remote_data
*dest
= (fb_remote_data
*)bitmap
456 + dst_width
* (row
>> 3);
461 for (col
= 0; col
< width
; col
++) {
463 delta
= dither_matrix
[row
& 0xf][col
& 0xf];
464 bright
= brightness(*qp
++);
465 bright
= (3 * bright
+ (bright
>> 6) + delta
) >> 8;
466 *dest
++ |= remote_pattern
[bright
] << shift
;
468 #endif /* LCD_REMOTE_DEPTH / LCD_REMOTE_PIXELFORMAT */
470 #endif /* defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1 */
473 #if LCD_PIXELFORMAT == VERTICAL_PACKING
475 fb_data
*dest
= (fb_data
*)bitmap
+ dst_width
* (row
>> 2);
476 int shift
= 2 * (row
& 3);
480 for (col
= 0; col
< width
; col
++) {
482 delta
= dither_matrix
[row
& 0xf][col
& 0xf];
483 bright
= brightness(*qp
++);
484 bright
= (3 * bright
+ (bright
>> 6) + delta
) >> 8;
485 *dest
++ |= (~bright
& 3) << shift
;
487 #else /* LCD_PIXELFORMAT == HORIZONTAL_PACKING */
488 /* greyscale iPods */
489 fb_data
*dest
= (fb_data
*)bitmap
+ dst_width
* row
;
495 for (col
= 0; col
< width
; col
++) {
497 delta
= dither_matrix
[row
& 0xf][col
& 0xf];
498 bright
= brightness(*qp
++);
499 bright
= (3 * bright
+ (bright
>> 6) + delta
) >> 8;
500 data
|= (~bright
& 3) << shift
;
510 #endif /* LCD_PIXELFORMAT */
511 #elif LCD_DEPTH == 16
512 /* iriver h300, colour iPods, X5 */
513 fb_data
*dest
= (fb_data
*)bitmap
+ dst_width
* row
;
517 for (col
= 0; col
< width
; col
++) {
519 delta
= dither_matrix
[row
& 0xf][col
& 0xf];
521 r
= (31 * q0
.red
+ (q0
.red
>> 3) + delta
) >> 8;
522 g
= (63 * q0
.green
+ (q0
.green
>> 2) + delta
) >> 8;
523 b
= (31 * q0
.blue
+ (q0
.blue
>> 3) + delta
) >> 8;
524 *dest
++ = LCD_RGBPACK_LCD(r
, g
, b
);
526 #endif /* LCD_DEPTH */
529 #endif /* (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) */
531 p
= bitmap
+ dst_width
* (row
>> 3);
532 mask
= 1 << (row
& 7);
534 for (col
= 0; col
< width
; col
++, p
++)
535 if (brightness(*qp
++) < 128)
542 DEBUGF("totalsize: %d\n", totalsize
);
543 return totalsize
; /* return the used buffer size. */