]> git.sesse.net Git - ffmpeg/blob - libavcodec/pictordec.c
avcodec/pictordec: avoid pointers in picmemset()
[ffmpeg] / libavcodec / pictordec.c
1 /*
2  * Pictor/PC Paint decoder
3  * Copyright (c) 2010 Peter Ross <pross@xvid.org>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Pictor/PC Paint decoder
25  */
26
27 #include "libavutil/imgutils.h"
28 #include "avcodec.h"
29 #include "bytestream.h"
30 #include "cga_data.h"
31 #include "internal.h"
32
33 typedef struct PicContext {
34     int width, height;
35     int nb_planes;
36     GetByteContext g;
37 } PicContext;
38
39 static void picmemset_8bpp(PicContext *s, AVFrame *frame, int value, int run,
40                            int *x, int *y)
41 {
42     while (run > 0) {
43         uint8_t *d = frame->data[0] + *y * frame->linesize[0];
44         if (*x + run >= s->width) {
45             int n = s->width - *x;
46             memset(d + *x, value, n);
47             run -= n;
48             *x = 0;
49             *y -= 1;
50             if (*y < 0)
51                 break;
52         } else {
53             memset(d + *x, value, run);
54             *x += run;
55             break;
56         }
57     }
58 }
59
60 static void picmemset(PicContext *s, AVFrame *frame, unsigned value, int run,
61                       int *x, int *y, int *plane, int bits_per_plane)
62 {
63     uint8_t *d;
64     int shift = *plane * bits_per_plane;
65     unsigned mask  = ((1U << bits_per_plane) - 1) << shift;
66     int xl = *x;
67     int yl = *y;
68     int planel = *plane;
69     value   <<= shift;
70
71     while (run > 0) {
72         int j;
73         for (j = 8-bits_per_plane; j >= 0; j -= bits_per_plane) {
74             d = frame->data[0] + yl * frame->linesize[0];
75             d[xl] |= (value >> j) & mask;
76             xl += 1;
77             if (xl == s->width) {
78                 yl -= 1;
79                 xl = 0;
80                 if (yl < 0) {
81                    yl = s->height - 1;
82                    planel += 1;
83                    if (planel >= s->nb_planes)
84                        goto end;
85                    value <<= bits_per_plane;
86                    mask  <<= bits_per_plane;
87                 }
88             }
89         }
90         run--;
91     }
92 end:
93     *x = xl;
94     *y = yl;
95     *plane = planel;
96 }
97
98 static const uint8_t cga_mode45_index[6][4] = {
99     [0] = { 0, 3,  5,   7 }, // mode4, palette#1, low intensity
100     [1] = { 0, 2,  4,   6 }, // mode4, palette#2, low intensity
101     [2] = { 0, 3,  4,   7 }, // mode5, low intensity
102     [3] = { 0, 11, 13, 15 }, // mode4, palette#1, high intensity
103     [4] = { 0, 10, 12, 14 }, // mode4, palette#2, high intensity
104     [5] = { 0, 11, 12, 15 }, // mode5, high intensity
105 };
106
107 static int decode_frame(AVCodecContext *avctx,
108                         void *data, int *got_frame,
109                         AVPacket *avpkt)
110 {
111     PicContext *s = avctx->priv_data;
112     AVFrame *frame = data;
113     uint32_t *palette;
114     int bits_per_plane, bpp, etype, esize, npal, pos_after_pal;
115     int i, x, y, plane, tmp, ret, val;
116
117     bytestream2_init(&s->g, avpkt->data, avpkt->size);
118
119     if (bytestream2_get_bytes_left(&s->g) < 11)
120         return AVERROR_INVALIDDATA;
121
122     if (bytestream2_get_le16u(&s->g) != 0x1234)
123         return AVERROR_INVALIDDATA;
124
125     s->width       = bytestream2_get_le16u(&s->g);
126     s->height      = bytestream2_get_le16u(&s->g);
127     bytestream2_skip(&s->g, 4);
128     tmp            = bytestream2_get_byteu(&s->g);
129     bits_per_plane = tmp & 0xF;
130     s->nb_planes   = (tmp >> 4) + 1;
131     bpp            = bits_per_plane * s->nb_planes;
132     if (bits_per_plane > 8 || bpp < 1 || bpp > 32) {
133         avpriv_request_sample(avctx, "Unsupported bit depth");
134         return AVERROR_PATCHWELCOME;
135     }
136
137     if (bytestream2_peek_byte(&s->g) == 0xFF || bpp == 1 || bpp == 4 || bpp == 8) {
138         bytestream2_skip(&s->g, 2);
139         etype = bytestream2_get_le16(&s->g);
140         esize = bytestream2_get_le16(&s->g);
141         if (bytestream2_get_bytes_left(&s->g) < esize)
142             return AVERROR_INVALIDDATA;
143     } else {
144         etype = -1;
145         esize = 0;
146     }
147
148     avctx->pix_fmt = AV_PIX_FMT_PAL8;
149
150     if (av_image_check_size(s->width, s->height, 0, avctx) < 0)
151         return -1;
152     if (s->width != avctx->width || s->height != avctx->height) {
153         ret = ff_set_dimensions(avctx, s->width, s->height);
154         if (ret < 0)
155             return ret;
156     }
157
158     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
159         return ret;
160     memset(frame->data[0], 0, s->height * frame->linesize[0]);
161     frame->pict_type           = AV_PICTURE_TYPE_I;
162     frame->palette_has_changed = 1;
163
164     pos_after_pal = bytestream2_tell(&s->g) + esize;
165     palette = (uint32_t*)frame->data[1];
166     if (etype == 1 && esize > 1 && bytestream2_peek_byte(&s->g) < 6) {
167         int idx = bytestream2_get_byte(&s->g);
168         npal = 4;
169         for (i = 0; i < npal; i++)
170             palette[i] = ff_cga_palette[ cga_mode45_index[idx][i] ];
171     } else if (etype == 2) {
172         npal = FFMIN(esize, 16);
173         for (i = 0; i < npal; i++) {
174             int pal_idx = bytestream2_get_byte(&s->g);
175             palette[i]  = ff_cga_palette[FFMIN(pal_idx, 15)];
176         }
177     } else if (etype == 3) {
178         npal = FFMIN(esize, 16);
179         for (i = 0; i < npal; i++) {
180             int pal_idx = bytestream2_get_byte(&s->g);
181             palette[i]  = ff_ega_palette[FFMIN(pal_idx, 63)];
182         }
183     } else if (etype == 4 || etype == 5) {
184         npal = FFMIN(esize / 3, 256);
185         for (i = 0; i < npal; i++) {
186             palette[i] = bytestream2_get_be24(&s->g) << 2;
187             palette[i] |= 0xFFU << 24 | palette[i] >> 6 & 0x30303;
188         }
189     } else {
190         if (bpp == 1) {
191             npal = 2;
192             palette[0] = 0xFF000000;
193             palette[1] = 0xFFFFFFFF;
194         } else if (bpp == 2) {
195             npal = 4;
196             for (i = 0; i < npal; i++)
197                 palette[i] = ff_cga_palette[ cga_mode45_index[0][i] ];
198         } else {
199             npal = 16;
200             memcpy(palette, ff_cga_palette, npal * 4);
201         }
202     }
203     // fill remaining palette entries
204     memset(palette + npal, 0, AVPALETTE_SIZE - npal * 4);
205     // skip remaining palette bytes
206     bytestream2_seek(&s->g, pos_after_pal, SEEK_SET);
207
208     val = 0;
209     y = s->height - 1;
210     if (bytestream2_get_le16(&s->g)) {
211         x = 0;
212         plane = 0;
213         while (bytestream2_get_bytes_left(&s->g) >= 6) {
214             int stop_size, marker, t1, t2;
215
216             t1        = bytestream2_get_bytes_left(&s->g);
217             t2        = bytestream2_get_le16(&s->g);
218             stop_size = t1 - FFMIN(t1, t2);
219             // ignore uncompressed block size
220             bytestream2_skip(&s->g, 2);
221             marker    = bytestream2_get_byte(&s->g);
222
223             while (plane < s->nb_planes &&
224                    bytestream2_get_bytes_left(&s->g) > stop_size) {
225                 int run = 1;
226                 val = bytestream2_get_byte(&s->g);
227                 if (val == marker) {
228                     run = bytestream2_get_byte(&s->g);
229                     if (run == 0)
230                         run = bytestream2_get_le16(&s->g);
231                     val = bytestream2_get_byte(&s->g);
232                 }
233                 if (!bytestream2_get_bytes_left(&s->g))
234                     break;
235
236                 if (bits_per_plane == 8) {
237                     picmemset_8bpp(s, frame, val, run, &x, &y);
238                     if (y < 0)
239                         goto finish;
240                 } else {
241                     picmemset(s, frame, val, run, &x, &y, &plane, bits_per_plane);
242                 }
243             }
244         }
245
246         if (s->nb_planes - plane > 1)
247             return AVERROR_INVALIDDATA;
248
249         if (plane < s->nb_planes && x < avctx->width) {
250             int run = (y + 1) * avctx->width - x;
251             if (bits_per_plane == 8)
252                 picmemset_8bpp(s, frame, val, run, &x, &y);
253             else
254                 picmemset(s, frame, val, run / (8 / bits_per_plane), &x, &y, &plane, bits_per_plane);
255         }
256     } else {
257         while (y >= 0 && bytestream2_get_bytes_left(&s->g) > 0) {
258             memcpy(frame->data[0] + y * frame->linesize[0], s->g.buffer, FFMIN(avctx->width, bytestream2_get_bytes_left(&s->g)));
259             bytestream2_skip(&s->g, avctx->width);
260             y--;
261         }
262     }
263 finish:
264
265     *got_frame      = 1;
266     return avpkt->size;
267 }
268
269 AVCodec ff_pictor_decoder = {
270     .name           = "pictor",
271     .long_name      = NULL_IF_CONFIG_SMALL("Pictor/PC Paint"),
272     .type           = AVMEDIA_TYPE_VIDEO,
273     .id             = AV_CODEC_ID_PICTOR,
274     .priv_data_size = sizeof(PicContext),
275     .decode         = decode_frame,
276     .capabilities   = AV_CODEC_CAP_DR1,
277 };