2 * PC Paintbrush PCX (.pcx) image decoder
3 * Copyright (c) 2007, 2008 Ivo van Poorten
5 * This decoder does not support CGA palettes. I am unable to find samples
6 * and Netpbm cannot generate them.
8 * This file is part of FFmpeg.
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.
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.
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
25 #include "libavutil/imgutils.h"
27 #include "bytestream.h"
31 #define PCX_HEADER_SIZE 128
33 static void pcx_rle_decode(GetByteContext *gb,
35 unsigned int bytes_per_scanline,
39 unsigned char run, value;
42 while (i < bytes_per_scanline && bytestream2_get_bytes_left(gb)>0) {
44 value = bytestream2_get_byte(gb);
45 if (value >= 0xc0 && bytestream2_get_bytes_left(gb)>0) {
47 value = bytestream2_get_byte(gb);
49 while (i < bytes_per_scanline && run--)
53 bytestream2_get_buffer(gb, dst, bytes_per_scanline);
57 static void pcx_palette(GetByteContext *gb, uint32_t *dst, int pallen)
61 pallen = FFMIN(pallen, bytestream2_get_bytes_left(gb) / 3);
62 for (i = 0; i < pallen; i++)
63 *dst++ = 0xFF000000 | bytestream2_get_be24u(gb);
65 memset(dst, 0, (256 - pallen) * sizeof(*dst));
68 static int pcx_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
72 AVFrame * const p = data;
73 int compressed, xmin, ymin, xmax, ymax;
75 unsigned int w, h, bits_per_pixel, bytes_per_line, nplanes, stride, y, x,
77 uint8_t *ptr, *scanline;
79 if (avpkt->size < PCX_HEADER_SIZE) {
80 av_log(avctx, AV_LOG_ERROR, "Packet too small\n");
81 return AVERROR_INVALIDDATA;
84 bytestream2_init(&gb, avpkt->data, avpkt->size);
86 if (bytestream2_get_byteu(&gb) != 0x0a || bytestream2_get_byteu(&gb) > 5) {
87 av_log(avctx, AV_LOG_ERROR, "this is not PCX encoded data\n");
88 return AVERROR_INVALIDDATA;
91 compressed = bytestream2_get_byteu(&gb);
92 bits_per_pixel = bytestream2_get_byteu(&gb);
93 xmin = bytestream2_get_le16u(&gb);
94 ymin = bytestream2_get_le16u(&gb);
95 xmax = bytestream2_get_le16u(&gb);
96 ymax = bytestream2_get_le16u(&gb);
97 avctx->sample_aspect_ratio.num = bytestream2_get_le16u(&gb);
98 avctx->sample_aspect_ratio.den = bytestream2_get_le16u(&gb);
100 if (xmax < xmin || ymax < ymin) {
101 av_log(avctx, AV_LOG_ERROR, "invalid image dimensions\n");
102 return AVERROR_INVALIDDATA;
108 bytestream2_skipu(&gb, 49);
109 nplanes = bytestream2_get_byteu(&gb);
110 bytes_per_line = bytestream2_get_le16u(&gb);
111 bytes_per_scanline = nplanes * bytes_per_line;
113 if (bytes_per_scanline < (w * bits_per_pixel * nplanes + 7) / 8 ||
114 (!compressed && bytes_per_scanline > bytestream2_get_bytes_left(&gb) / h)) {
115 av_log(avctx, AV_LOG_ERROR, "PCX data is corrupted\n");
116 return AVERROR_INVALIDDATA;
119 switch ((nplanes << 8) + bits_per_pixel) {
121 avctx->pix_fmt = AV_PIX_FMT_RGB24;
130 avctx->pix_fmt = AV_PIX_FMT_PAL8;
133 av_log(avctx, AV_LOG_ERROR, "invalid PCX file\n");
134 return AVERROR_INVALIDDATA;
137 bytestream2_skipu(&gb, 60);
139 if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
142 if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
145 p->pict_type = AV_PICTURE_TYPE_I;
148 stride = p->linesize[0];
150 scanline = av_malloc(bytes_per_scanline + AV_INPUT_BUFFER_PADDING_SIZE);
152 return AVERROR(ENOMEM);
154 if (nplanes == 3 && bits_per_pixel == 8) {
155 for (y = 0; y < h; y++) {
156 pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed);
158 for (x = 0; x < w; x++) {
159 ptr[3 * x] = scanline[x];
160 ptr[3 * x + 1] = scanline[x + bytes_per_line];
161 ptr[3 * x + 2] = scanline[x + (bytes_per_line << 1)];
166 } else if (nplanes == 1 && bits_per_pixel == 8) {
167 int palstart = avpkt->size - 769;
169 if (avpkt->size < 769) {
170 av_log(avctx, AV_LOG_ERROR, "File is too short\n");
171 ret = avctx->err_recognition & AV_EF_EXPLODE ?
172 AVERROR_INVALIDDATA : avpkt->size;
176 for (y = 0; y < h; y++, ptr += stride) {
177 pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed);
178 memcpy(ptr, scanline, w);
181 if (bytestream2_tell(&gb) != palstart) {
182 av_log(avctx, AV_LOG_WARNING, "image data possibly corrupted\n");
183 bytestream2_seek(&gb, palstart, SEEK_SET);
185 if (bytestream2_get_byte(&gb) != 12) {
186 av_log(avctx, AV_LOG_ERROR, "expected palette after image data\n");
187 ret = avctx->err_recognition & AV_EF_EXPLODE ?
188 AVERROR_INVALIDDATA : avpkt->size;
191 } else if (nplanes == 1) { /* all packed formats, max. 16 colors */
194 for (y = 0; y < h; y++) {
195 init_get_bits8(&s, scanline, bytes_per_scanline);
197 pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed);
199 for (x = 0; x < w; x++)
200 ptr[x] = get_bits(&s, bits_per_pixel);
203 } else { /* planar, 4, 8 or 16 colors */
206 for (y = 0; y < h; y++) {
207 pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed);
209 for (x = 0; x < w; x++) {
210 int m = 0x80 >> (x & 7), v = 0;
211 for (i = nplanes - 1; i >= 0; i--) {
213 v += !!(scanline[i * bytes_per_line + (x >> 3)] & m);
221 ret = bytestream2_tell(&gb);
222 if (nplanes == 1 && bits_per_pixel == 8) {
223 pcx_palette(&gb, (uint32_t *)p->data[1], 256);
225 } else if (bits_per_pixel * nplanes == 1) {
226 AV_WN32A(p->data[1] , 0xFF000000);
227 AV_WN32A(p->data[1]+4, 0xFFFFFFFF);
228 } else if (bits_per_pixel < 8) {
229 bytestream2_seek(&gb, 16, SEEK_SET);
230 pcx_palette(&gb, (uint32_t *)p->data[1], 16);
240 AVCodec ff_pcx_decoder = {
242 .long_name = NULL_IF_CONFIG_SMALL("PC Paintbrush PCX image"),
243 .type = AVMEDIA_TYPE_VIDEO,
244 .id = AV_CODEC_ID_PCX,
245 .decode = pcx_decode_frame,
246 .capabilities = AV_CODEC_CAP_DR1,