]> git.sesse.net Git - ffmpeg/blob - libavcodec/qdrw.c
avformat/wavenc: Check umid length
[ffmpeg] / libavcodec / qdrw.c
1 /*
2  * QuickDraw (qdrw) codec
3  * Copyright (c) 2004 Konstantin Shishkov
4  * Copyright (c) 2015 Vittorio Giovara
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * Apple QuickDraw codec.
26  * https://developer.apple.com/legacy/library/documentation/mac/QuickDraw/QuickDraw-461.html
27  */
28
29 #include "libavutil/common.h"
30 #include "libavutil/intreadwrite.h"
31 #include "avcodec.h"
32 #include "bytestream.h"
33 #include "internal.h"
34
35 enum QuickdrawOpcodes {
36     PACKBITSRECT = 0x0098,
37     PACKBITSRGN,
38     DIRECTBITSRECT,
39     DIRECTBITSRGN,
40
41     EOP = 0x00FF,
42 };
43
44 static int parse_palette(AVCodecContext *avctx, GetByteContext *gbc,
45                          uint32_t *pal, int colors)
46 {
47     int i;
48
49     for (i = 0; i <= colors; i++) {
50         uint8_t r, g, b;
51         unsigned int idx = bytestream2_get_be16(gbc); /* color index */
52         if (idx > 255) {
53             av_log(avctx, AV_LOG_WARNING,
54                    "Palette index out of range: %u\n", idx);
55             bytestream2_skip(gbc, 6);
56             continue;
57         }
58         r = bytestream2_get_byte(gbc);
59         bytestream2_skip(gbc, 1);
60         g = bytestream2_get_byte(gbc);
61         bytestream2_skip(gbc, 1);
62         b = bytestream2_get_byte(gbc);
63         bytestream2_skip(gbc, 1);
64         pal[idx] = 0xFFU << 24 | r << 16 | g << 8 | b;
65     }
66     return 0;
67 }
68
69 static int decode_rle(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc,
70                       int step)
71 {
72     int i, j;
73     int offset = avctx->width * step;
74     uint8_t *outdata = p->data[0];
75
76     for (i = 0; i < avctx->height; i++) {
77         int size, left, code, pix;
78         uint8_t *out = outdata;
79         int pos = 0;
80
81         /* size of packed line */
82         size = left = bytestream2_get_be16(gbc);
83         if (bytestream2_get_bytes_left(gbc) < size)
84             return AVERROR_INVALIDDATA;
85
86         /* decode line */
87         while (left > 0) {
88             code = bytestream2_get_byte(gbc);
89             if (code & 0x80 ) { /* run */
90                 pix = bytestream2_get_byte(gbc);
91                 for (j = 0; j < 257 - code; j++) {
92                     out[pos] = pix;
93                     pos += step;
94                     if (pos >= offset) {
95                         pos -= offset;
96                         pos++;
97                     }
98                 }
99                 left  -= 2;
100             } else { /* copy */
101                 for (j = 0; j < code + 1; j++) {
102                     out[pos] = bytestream2_get_byte(gbc);
103                     pos += step;
104                     if (pos >= offset) {
105                         pos -= offset;
106                         pos++;
107                     }
108                 }
109                 left  -= 2 + code;
110             }
111         }
112         outdata += p->linesize[0];
113     }
114     return 0;
115 }
116
117 static int decode_frame(AVCodecContext *avctx,
118                         void *data, int *got_frame,
119                         AVPacket *avpkt)
120 {
121     AVFrame * const p      = data;
122     GetByteContext gbc;
123     int colors;
124     int w, h, ret;
125
126     bytestream2_init(&gbc, avpkt->data, avpkt->size);
127     if (   avpkt->size >= 552
128         && AV_RB32(&avpkt->data[ 10]) != 0x001102FF
129         && AV_RB32(&avpkt->data[522]) == 0x001102FF)
130         bytestream2_skip(&gbc, 512);
131
132     /* smallest PICT header */
133     if (bytestream2_get_bytes_left(&gbc) < 40) {
134         av_log(avctx, AV_LOG_ERROR, "Frame is too small %d\n",
135                bytestream2_get_bytes_left(&gbc));
136         return AVERROR_INVALIDDATA;
137     }
138
139     bytestream2_skip(&gbc, 6);
140     h = bytestream2_get_be16(&gbc);
141     w = bytestream2_get_be16(&gbc);
142
143     ret = ff_set_dimensions(avctx, w, h);
144     if (ret < 0)
145         return ret;
146
147     /* version 1 is identified by 0x1101
148      * it uses byte-aligned opcodes rather than word-aligned */
149     if (bytestream2_get_be32(&gbc) != 0x001102FF) {
150         avpriv_request_sample(avctx, "QuickDraw version 1");
151         return AVERROR_PATCHWELCOME;
152     }
153
154     bytestream2_skip(&gbc, 26);
155
156     while (bytestream2_get_bytes_left(&gbc) >= 4) {
157         int bppcnt, bpp;
158         int rowbytes, pack_type;
159         int opcode = bytestream2_get_be16(&gbc);
160
161         switch(opcode) {
162         case PACKBITSRECT:
163         case PACKBITSRGN:
164             av_log(avctx, AV_LOG_DEBUG, "Parsing Packbit opcode\n");
165
166             bytestream2_skip(&gbc, 30);
167             bppcnt = bytestream2_get_be16(&gbc); /* cmpCount */
168             bpp    = bytestream2_get_be16(&gbc); /* cmpSize */
169
170             av_log(avctx, AV_LOG_DEBUG, "bppcount %d bpp %d\n", bppcnt, bpp);
171             if (bppcnt == 1 && bpp == 8) {
172                 avctx->pix_fmt = AV_PIX_FMT_PAL8;
173             } else {
174                 av_log(avctx, AV_LOG_ERROR,
175                        "Invalid pixel format (bppcnt %d bpp %d) in Packbit\n",
176                        bppcnt, bpp);
177                 return AVERROR_INVALIDDATA;
178             }
179
180             /* jump to palette */
181             bytestream2_skip(&gbc, 18);
182             colors = bytestream2_get_be16(&gbc);
183
184             if (colors < 0 || colors > 256) {
185                 av_log(avctx, AV_LOG_ERROR,
186                        "Error color count - %i(0x%X)\n", colors, colors);
187                 return AVERROR_INVALIDDATA;
188             }
189             if (bytestream2_get_bytes_left(&gbc) < (colors + 1) * 8) {
190                 av_log(avctx, AV_LOG_ERROR, "Palette is too small %d\n",
191                        bytestream2_get_bytes_left(&gbc));
192                 return AVERROR_INVALIDDATA;
193             }
194             if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
195                 return ret;
196
197             parse_palette(avctx, &gbc, (uint32_t *)p->data[1], colors);
198             p->palette_has_changed = 1;
199
200             /* jump to image data */
201             bytestream2_skip(&gbc, 18);
202
203             if (opcode == PACKBITSRGN) {
204                 bytestream2_skip(&gbc, 2 + 8); /* size + rect */
205                 avpriv_report_missing_feature(avctx, "Packbit mask region");
206             }
207
208             ret = decode_rle(avctx, p, &gbc, bppcnt);
209             if (ret < 0)
210                 return ret;
211             *got_frame = 1;
212             break;
213         case DIRECTBITSRECT:
214         case DIRECTBITSRGN:
215             av_log(avctx, AV_LOG_DEBUG, "Parsing Directbit opcode\n");
216
217             bytestream2_skip(&gbc, 4);
218             rowbytes = bytestream2_get_be16(&gbc) & 0x3FFF;
219             if (rowbytes <= 250) {
220                 avpriv_report_missing_feature(avctx, "Short rowbytes");
221                 return AVERROR_PATCHWELCOME;
222             }
223
224             bytestream2_skip(&gbc, 10);
225             pack_type = bytestream2_get_be16(&gbc);
226
227             bytestream2_skip(&gbc, 16);
228             bppcnt = bytestream2_get_be16(&gbc); /* cmpCount */
229             bpp    = bytestream2_get_be16(&gbc); /* cmpSize */
230
231             av_log(avctx, AV_LOG_DEBUG, "bppcount %d bpp %d\n", bppcnt, bpp);
232             if (bppcnt == 3 && bpp == 8) {
233                 avctx->pix_fmt = AV_PIX_FMT_RGB24;
234             } else if (bppcnt == 4 && bpp == 8) {
235                 avctx->pix_fmt = AV_PIX_FMT_ARGB;
236             } else {
237                 av_log(avctx, AV_LOG_ERROR,
238                        "Invalid pixel format (bppcnt %d bpp %d) in Directbit\n",
239                        bppcnt, bpp);
240                 return AVERROR_INVALIDDATA;
241             }
242
243             /* set packing when default is selected */
244             if (pack_type == 0)
245                 pack_type = bppcnt;
246
247             if (pack_type != 3 && pack_type != 4) {
248                 avpriv_request_sample(avctx, "Pack type %d", pack_type);
249                 return AVERROR_PATCHWELCOME;
250             }
251             if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
252                 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
253                 return ret;
254             }
255
256             /* jump to data */
257             bytestream2_skip(&gbc, 30);
258
259             if (opcode == DIRECTBITSRGN) {
260                 bytestream2_skip(&gbc, 2 + 8); /* size + rect */
261                 avpriv_report_missing_feature(avctx, "DirectBit mask region");
262             }
263
264             ret = decode_rle(avctx, p, &gbc, bppcnt);
265             if (ret < 0)
266                 return ret;
267             *got_frame = 1;
268             break;
269         default:
270             av_log(avctx, AV_LOG_TRACE, "Unknown 0x%04X opcode\n", opcode);
271             break;
272         }
273         /* exit the loop when a known pixel block has been found */
274         if (*got_frame) {
275             int eop, trail;
276
277             /* re-align to a word */
278             bytestream2_skip(&gbc, bytestream2_get_bytes_left(&gbc) % 2);
279
280             eop = bytestream2_get_be16(&gbc);
281             trail = bytestream2_get_bytes_left(&gbc);
282             if (eop != EOP)
283                 av_log(avctx, AV_LOG_WARNING,
284                        "Missing end of picture opcode (found 0x%04X)\n", eop);
285             if (trail)
286                 av_log(avctx, AV_LOG_WARNING, "Got %d trailing bytes\n", trail);
287             break;
288         }
289     }
290
291     if (*got_frame) {
292         p->pict_type = AV_PICTURE_TYPE_I;
293         p->key_frame = 1;
294
295         return avpkt->size;
296     } else {
297         av_log(avctx, AV_LOG_ERROR, "Frame contained no usable data\n");
298
299         return AVERROR_INVALIDDATA;
300     }
301 }
302
303 AVCodec ff_qdraw_decoder = {
304     .name           = "qdraw",
305     .long_name      = NULL_IF_CONFIG_SMALL("Apple QuickDraw"),
306     .type           = AVMEDIA_TYPE_VIDEO,
307     .id             = AV_CODEC_ID_QDRAW,
308     .decode         = decode_frame,
309     .capabilities   = CODEC_CAP_DR1,
310 };