1 /*
2 * PC Paintbrush PCX (.pcx) image decoder
3 * Copyright (c) 2007, 2008 Ivo van Poorten
4 *
5 * This decoder does not support CGA palettes. I am unable to find samples
6 * and Netpbm cannot generate them.
7 *
8 * This file is part of FFmpeg.
9 *
10 * FFmpeg is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 * FFmpeg is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with FFmpeg; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
30
31 #define PCX_HEADER_SIZE 128
32
34 uint8_t *dst,
35 unsigned int bytes_per_scanline,
36 int compressed)
37 {
40
43
44 if (compressed) {
47 value = bytestream2_get_byte(gb);
50 value = bytestream2_get_byte(gb);
51 }
52 while (
i < bytes_per_scanline &&
run--)
54 }
55 } else {
57 }
58 return 0;
59 }
60
62 {
64
66 for (
i = 0;
i < pallen;
i++)
67 *dst++ = 0xFF000000 | bytestream2_get_be24u(gb);
68 if (pallen < 256)
69 memset(dst, 0, (256 - pallen) * sizeof(*dst));
70 }
71
74 {
77 int compressed, xmin, ymin, xmax, ymax;
79 unsigned int w,
h, bits_per_pixel, bytes_per_line, nplanes,
stride, y, x,
80 bytes_per_scanline;
81 uint8_t *ptr, *scanline;
82
86 }
87
89
90 if (bytestream2_get_byteu(&gb) != 0x0a || bytestream2_get_byteu(&gb) > 5) {
93 }
94
95 compressed = bytestream2_get_byteu(&gb);
96 bits_per_pixel = bytestream2_get_byteu(&gb);
97 xmin = bytestream2_get_le16u(&gb);
98 ymin = bytestream2_get_le16u(&gb);
99 xmax = bytestream2_get_le16u(&gb);
100 ymax = bytestream2_get_le16u(&gb);
103
104 if (xmax < xmin || ymax < ymin) {
107 }
108
111
113 nplanes = bytestream2_get_byteu(&gb);
114 bytes_per_line = bytestream2_get_le16u(&gb);
115 bytes_per_scanline = nplanes * bytes_per_line;
116
117 if (bytes_per_scanline < (
w * bits_per_pixel * nplanes + 7) / 8 ||
121 }
122
123 switch ((nplanes << 8) + bits_per_pixel) {
124 case 0x0308:
126 break;
127 case 0x0108:
128 case 0x0104:
129 case 0x0102:
130 case 0x0101:
131 case 0x0401:
132 case 0x0301:
133 case 0x0201:
135 break;
136 default:
139 }
140
142
145
148
150
153
155 if (!scanline)
157
158 if (nplanes == 3 && bits_per_pixel == 8) {
159 for (y = 0; y <
h; y++) {
162 goto end;
163
164 for (x = 0; x <
w; x++) {
165 ptr[3 * x] = scanline[x];
166 ptr[3 * x + 1] = scanline[x + bytes_per_line];
167 ptr[3 * x + 2] = scanline[x + (bytes_per_line << 1)];
168 }
169
171 }
172 } else if (nplanes == 1 && bits_per_pixel == 8) {
173 int palstart = avpkt->
size - 769;
174
175 if (avpkt->
size < 769) {
179 goto end;
180 }
181
182 for (y = 0; y <
h; y++, ptr +=
stride) {
185 goto end;
186 memcpy(ptr, scanline,
w);
187 }
188
192 }
193 if (bytestream2_get_byte(&gb) != 12) {
197 goto end;
198 }
199 } else if (nplanes == 1) { /* all packed formats, max. 16 colors */
201
202 for (y = 0; y <
h; y++) {
204
207 goto end;
208
209 for (x = 0; x <
w; x++)
212 }
213 } else { /* planar, 4, 8 or 16 colors */
215
216 for (y = 0; y <
h; y++) {
219 goto end;
220
221 for (x = 0; x <
w; x++) {
222 int m = 0x80 >> (x & 7), v = 0;
223 for (
i = nplanes - 1;
i >= 0;
i--) {
224 v <<= 1;
225 v += !!(scanline[
i * bytes_per_line + (x >> 3)] & m);
226 }
227 ptr[x] = v;
228 }
230 }
231 }
232
234 if (nplanes == 1 && bits_per_pixel == 8) {
237 } else if (bits_per_pixel * nplanes == 1) {
240 } else if (bits_per_pixel < 8) {
243 }
244
245 *got_frame = 1;
246
247 end:
250 }
251
259 };