-
Notifications
You must be signed in to change notification settings - Fork 21
/
fb.c
142 lines (124 loc) · 3.88 KB
/
fb.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
* -- http://android-fb2png.googlecode.com/svn/trunk/fb.c --
*
* Copyright 2011, Kyan He <[email protected]>
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include "log.h"
#include "fb.h"
#include "img_process.h"
// log fb info
void fb_dump(const struct fb* fb)
{
D("%13s : %d", "bpp", fb->bpp);
D("%13s : %d", "size", fb->size);
D("%13s : %d", "width", fb->width);
D("%13s : %d", "height", fb->height);
D("%13s : %d %d %d %d", "ARGB offset",
fb->alpha_offset, fb->red_offset,
fb->green_offset, fb->blue_offset);
D("%13s : %d %d %d %d", "ARGB length",
fb->alpha_length, fb->red_length,
fb->green_length, fb->blue_length);
}
/**
* Returns the format of fb.
*/
static int fb_get_format(const struct fb *fb)
{
int ao = fb->alpha_offset;
int ro = fb->red_offset;
int go = fb->green_offset;
int bo = fb->blue_offset;
#define FB_FORMAT_UNKNOWN 0
#define FB_FORMAT_RGB565 1
#define FB_FORMAT_ARGB8888 2
#define FB_FORMAT_RGBA8888 3
#define FB_FORMAT_ABGR8888 4
#define FB_FORMAT_BGRA8888 5
#define FB_FORMAT_RGBX8888 FB_FORMAT_RGBA8888
/* TODO: use offset */
if (fb->bpp == 16)
return FB_FORMAT_RGB565;
/* TODO: validate */
if (ao == 0 && ro == 8)
return FB_FORMAT_ARGB8888;
if (ao == 0 && ro == 24 && go == 16 && bo == 8)
return FB_FORMAT_RGBX8888;
if (ao == 0 && bo == 8)
return FB_FORMAT_ABGR8888;
if (ro == 0)
return FB_FORMAT_RGBA8888;
if (bo == 0)
return FB_FORMAT_BGRA8888;
/* fallback */
return FB_FORMAT_UNKNOWN;
}
int fb_save_png(const struct fb *fb, const char *path)
{
char *rgb_matrix;
int ret = -1;
/* Allocate RGB Matrix. */
rgb_matrix = malloc(fb->width * fb->height * 3);
if(!rgb_matrix) {
E("rgb_matrix: memory error");
return -1;
}
int fmt = fb_get_format(fb);
D("Framebuffer Pixel Format: %d", fmt);
switch(fmt) {
case FB_FORMAT_RGB565:
/* emulator use rgb565 */
ret = rgb565_to_rgb888(fb->data,
rgb_matrix, fb->width * fb->height);
break;
case FB_FORMAT_ARGB8888:
/* most devices use argb8888 */
ret = argb8888_to_rgb888(fb->data,
rgb_matrix, fb->width * fb->height);
break;
case FB_FORMAT_ABGR8888:
ret = abgr8888_to_rgb888(fb->data,
rgb_matrix, fb->width * fb->height);
break;
case FB_FORMAT_BGRA8888:
ret = bgra8888_to_rgb888(fb->data,
rgb_matrix, fb->width * fb->height);
break;
case FB_FORMAT_RGBA8888:
ret = rgba8888_to_rgb888(fb->data,
rgb_matrix, fb->width * fb->height);
break;
default:
E("Unsupported framebuffer type.");
break;
}
if (ret != 0) {
E("Error while processing input image.");
} else {
/* Save in PNG format. */
ret = save_png(path, rgb_matrix, fb->width, fb->height);
if (ret != 0)
E("Failed to save in PNG format.");
}
free(rgb_matrix);
free(fb->data);
return ret;
}