FFmpeg
Loading...
Searching...
No Matches
qdrw.c
Go to the documentation of this file.
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"
31#include "avcodec.h"
32#include "bytestream.h"
33#include "codec_internal.h"
34#include "decode.h"
35
47
49 uint32_t *pal, int colors, int pixmap)
50{
51 int i;
52
53 for (i = 0; i <= colors; i++) {
54 uint8_t r, g, b;
55 unsigned int idx = bytestream2_get_be16(gbc); /* color index */
56 if (idx > 255 && !pixmap) {
58 "Palette index out of range: %u\n", idx);
59 bytestream2_skip(gbc, 6);
60 continue;
61 }
62 if (avctx->pix_fmt != AV_PIX_FMT_PAL8)
64 r = bytestream2_get_byte(gbc);
65 bytestream2_skip(gbc, 1);
66 g = bytestream2_get_byte(gbc);
67 bytestream2_skip(gbc, 1);
68 b = bytestream2_get_byte(gbc);
69 bytestream2_skip(gbc, 1);
70 pal[pixmap ? i : idx] = (0xFFU << 24) | (r << 16) | (g << 8) | b;
71 }
72 return 0;
73}
74
76{
77 int offset = avctx->width;
78 uint8_t *outdata = p->data[0];
79 int i, j;
80
81 for (i = 0; i < avctx->height; i++) {
82 int size, left, code, pix;
83 uint8_t *out = outdata;
84 int pos = 0;
85
86 /* size of packed line */
87 if (offset / 4 > 200)
88 size = left = bytestream2_get_be16(gbc);
89 else
90 size = left = bytestream2_get_byte(gbc);
93
94 /* decode line */
95 while (left > 0) {
96 code = bytestream2_get_byte(gbc);
97 if (code & 0x80 ) { /* run */
98 pix = bytestream2_get_byte(gbc);
99 for (j = 0; j < 257 - code; j++) {
100 if (pos < offset)
101 out[pos++] = (pix & 0xC0) >> 6;
102 if (pos < offset)
103 out[pos++] = (pix & 0x30) >> 4;
104 if (pos < offset)
105 out[pos++] = (pix & 0x0C) >> 2;
106 if (pos < offset)
107 out[pos++] = (pix & 0x03);
108 }
109 left -= 2;
110 } else { /* copy */
111 for (j = 0; j < code + 1; j++) {
112 pix = bytestream2_get_byte(gbc);
113 if (pos < offset)
114 out[pos++] = (pix & 0xC0) >> 6;
115 if (pos < offset)
116 out[pos++] = (pix & 0x30) >> 4;
117 if (pos < offset)
118 out[pos++] = (pix & 0x0C) >> 2;
119 if (pos < offset)
120 out[pos++] = (pix & 0x03);
121 }
122 left -= 1 + (code + 1);
123 }
124 }
125 outdata += p->linesize[0];
126 }
127 return 0;
128}
129
131{
132 int offset = avctx->width;
133 uint8_t *outdata = p->data[0];
134 int i, j;
135
136 for (i = 0; i < avctx->height; i++) {
137 int size, left, code, pix;
138 uint8_t *out = outdata;
139 int pos = 0;
140
141 /* size of packed line */
142 size = left = bytestream2_get_be16(gbc);
144 return AVERROR_INVALIDDATA;
145
146 /* decode line */
147 while (left > 0) {
148 code = bytestream2_get_byte(gbc);
149 if (code & 0x80 ) { /* run */
150 pix = bytestream2_get_byte(gbc);
151 for (j = 0; j < 257 - code; j++) {
152 if (pos < offset)
153 out[pos++] = (pix & 0xF0) >> 4;
154 if (pos < offset)
155 out[pos++] = pix & 0xF;
156 }
157 left -= 2;
158 } else { /* copy */
159 for (j = 0; j < code + 1; j++) {
160 pix = bytestream2_get_byte(gbc);
161 if (pos < offset)
162 out[pos++] = (pix & 0xF0) >> 4;
163 if (pos < offset)
164 out[pos++] = pix & 0xF;
165 }
166 left -= 1 + (code + 1);
167 }
168 }
169 outdata += p->linesize[0];
170 }
171 return 0;
172}
173
175{
176 int offset = avctx->width;
177 uint8_t *outdata = p->data[0];
178 int i, j;
179
180 for (i = 0; i < avctx->height; i++) {
181 int size, left, code, pix;
182 uint16_t *out = (uint16_t *)outdata;
183 int pos = 0;
184
185 /* size of packed line */
186 size = left = bytestream2_get_be16(gbc);
188 return AVERROR_INVALIDDATA;
189
190 /* decode line */
191 while (left > 0) {
192 code = bytestream2_get_byte(gbc);
193 if (code & 0x80 ) { /* run */
194 pix = bytestream2_get_be16(gbc);
195 for (j = 0; j < 257 - code; j++) {
196 if (pos < offset) {
197 out[pos++] = pix;
198 }
199 }
200 left -= 3;
201 } else { /* copy */
202 for (j = 0; j < code + 1; j++) {
203 if (pos < offset) {
204 out[pos++] = bytestream2_get_be16(gbc);
205 } else {
206 bytestream2_skip(gbc, 2);
207 }
208 }
209 left -= 1 + (code + 1) * 2;
210 }
211 }
212 outdata += p->linesize[0];
213 }
214 return 0;
215}
216
218 int step)
219{
220 int i, j;
221 int offset = avctx->width * step;
222 uint8_t *outdata = p->data[0];
223
224 for (i = 0; i < avctx->height; i++) {
225 int size, left, code, pix;
226 uint8_t *out = outdata;
227 int pos = 0;
228
229 /* size of packed line */
230 size = left = bytestream2_get_be16(gbc);
232 return AVERROR_INVALIDDATA;
233
234 /* decode line */
235 while (left > 0) {
236 code = bytestream2_get_byte(gbc);
237 if (code & 0x80 ) { /* run */
238 pix = bytestream2_get_byte(gbc);
239 for (j = 0; j < 257 - code; j++) {
240 if (pos < offset)
241 out[pos] = pix;
242 pos += step;
243 if (pos >= offset && step > 1) {
244 pos -= offset;
245 pos++;
246 }
247 }
248 left -= 2;
249 } else { /* copy */
250 for (j = 0; j < code + 1; j++) {
251 pix = bytestream2_get_byte(gbc);
252 if (pos < offset)
253 out[pos] = pix;
254 pos += step;
255 if (pos >= offset && step > 1) {
256 pos -= offset;
257 pos++;
258 }
259 }
260 left -= 2 + code;
261 }
262 }
263 outdata += p->linesize[0];
264 }
265 return 0;
266}
267
268static int check_header(const char *buf, int buf_size)
269{
270 unsigned w, h, v0, v1;
271
272 if (buf_size < 40)
273 return 0;
274
275 w = AV_RB16(buf+6);
276 h = AV_RB16(buf+8);
277 v0 = AV_RB16(buf+10);
278 v1 = AV_RB16(buf+12);
279
280 if (!w || !h)
281 return 0;
282
283 if (v0 == 0x1101)
284 return 1;
285 if (v0 == 0x0011 && v1 == 0x02FF)
286 return 2;
287 return 0;
288}
289
290
291static int decode_frame(AVCodecContext *avctx, AVFrame *p,
292 int *got_frame, AVPacket *avpkt)
293{
294 GetByteContext gbc;
295 int colors;
296 int w, h, ret;
297 int ver;
298
299 bytestream2_init(&gbc, avpkt->data, avpkt->size);
300 if ( bytestream2_get_bytes_left(&gbc) >= 552
301 && check_header(gbc.buffer + 512, bytestream2_get_bytes_left(&gbc) - 512)
302 )
303 bytestream2_skip(&gbc, 512);
304
306
307 /* smallest PICT header */
308 if (bytestream2_get_bytes_left(&gbc) < 40) {
309 av_log(avctx, AV_LOG_ERROR, "Frame is too small %d\n",
311 return AVERROR_INVALIDDATA;
312 }
313
314 bytestream2_skip(&gbc, 6);
315 h = bytestream2_get_be16(&gbc);
316 w = bytestream2_get_be16(&gbc);
317
318 ret = ff_set_dimensions(avctx, w, h);
319 if (ret < 0)
320 return ret;
321
322 /* version 1 is identified by 0x1101
323 * it uses byte-aligned opcodes rather than word-aligned */
324 if (ver == 1) {
325 avpriv_request_sample(avctx, "QuickDraw version 1");
327 } else if (ver != 2) {
328 avpriv_request_sample(avctx, "QuickDraw version unknown (%X)", bytestream2_get_be32(&gbc));
330 }
331
332 bytestream2_skip(&gbc, 4+26);
333
334 while (bytestream2_get_bytes_left(&gbc) >= 4) {
335 int bppcnt, bpp;
336 int rowbytes, pack_type;
337 int flags;
338 int opcode = bytestream2_get_be16(&gbc);
339
340 switch(opcode) {
341 case CLIP:
342 bytestream2_skip(&gbc, 10);
343 break;
344 case PACKBITSRECT:
345 case PACKBITSRGN:
346 av_log(avctx, AV_LOG_DEBUG, "Parsing Packbit opcode\n");
347
348 flags = bytestream2_get_be16(&gbc) & 0xC000;
349 bytestream2_skip(&gbc, 28);
350 bppcnt = bytestream2_get_be16(&gbc); /* cmpCount */
351 bpp = bytestream2_get_be16(&gbc); /* cmpSize */
352
353 av_log(avctx, AV_LOG_DEBUG, "bppcount %d bpp %d\n", bppcnt, bpp);
354 if (bppcnt == 1 && bpp == 8) {
355 avctx->pix_fmt = AV_PIX_FMT_PAL8;
356 } else if (bppcnt == 1 && (bpp == 4 || bpp == 2)) {
357 avctx->pix_fmt = AV_PIX_FMT_PAL8;
358 } else if (bppcnt == 3 && bpp == 5) {
359 avctx->pix_fmt = AV_PIX_FMT_RGB555;
360 } else {
361 av_log(avctx, AV_LOG_ERROR,
362 "Invalid pixel format (bppcnt %d bpp %d) in Packbit\n",
363 bppcnt, bpp);
364 return AVERROR_INVALIDDATA;
365 }
366
367 /* jump to palette */
368 bytestream2_skip(&gbc, 18);
369 colors = bytestream2_get_be16(&gbc);
370
371 if (colors < 0 || colors > 255) {
372 av_log(avctx, AV_LOG_ERROR,
373 "Error color count - %i(0x%X)\n", colors, colors);
374 return AVERROR_INVALIDDATA;
375 }
376 if (bytestream2_get_bytes_left(&gbc) < (colors + 1) * 8) {
377 av_log(avctx, AV_LOG_ERROR, "Palette is too small %d\n",
379 return AVERROR_INVALIDDATA;
380 }
381 if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
382 return ret;
383
384 ret = parse_palette(avctx, &gbc, (uint32_t *)p->data[1], colors, flags & 0x8000);
385 if (ret < 0)
386 return ret;
387
388 /* jump to image data */
389 bytestream2_skip(&gbc, 18);
390
391 if (opcode == PACKBITSRGN) {
392 bytestream2_skip(&gbc, 2 + 8); /* size + rect */
393 avpriv_report_missing_feature(avctx, "Packbit mask region");
394 }
395
396 if (avctx->pix_fmt == AV_PIX_FMT_RGB555)
397 ret = decode_rle16(avctx, p, &gbc);
398 else if (bpp == 2)
399 ret = decode_rle_bpp2(avctx, p, &gbc);
400 else if (bpp == 4)
401 ret = decode_rle_bpp4(avctx, p, &gbc);
402 else
403 ret = decode_rle(avctx, p, &gbc, bppcnt);
404 if (ret < 0)
405 return ret;
406 *got_frame = 1;
407 break;
408 case DIRECTBITSRECT:
409 case DIRECTBITSRGN:
410 av_log(avctx, AV_LOG_DEBUG, "Parsing Directbit opcode\n");
411
412 bytestream2_skip(&gbc, 4);
413 rowbytes = bytestream2_get_be16(&gbc) & 0x3FFF;
414 if (rowbytes <= 250) {
415 avpriv_report_missing_feature(avctx, "Short rowbytes");
417 }
418
419 bytestream2_skip(&gbc, 4);
420 h = bytestream2_get_be16(&gbc);
421 w = bytestream2_get_be16(&gbc);
422 bytestream2_skip(&gbc, 2);
423
424 ret = ff_set_dimensions(avctx, w, h);
425 if (ret < 0)
426 return ret;
427
428 pack_type = bytestream2_get_be16(&gbc);
429
430 bytestream2_skip(&gbc, 16);
431 bppcnt = bytestream2_get_be16(&gbc); /* cmpCount */
432 bpp = bytestream2_get_be16(&gbc); /* cmpSize */
433
434 av_log(avctx, AV_LOG_DEBUG, "bppcount %d bpp %d\n", bppcnt, bpp);
435 if (bppcnt == 3 && bpp == 8) {
436 avctx->pix_fmt = AV_PIX_FMT_RGB24;
437 } else if (bppcnt == 3 && bpp == 5 || bppcnt == 2 && bpp == 8) {
438 avctx->pix_fmt = AV_PIX_FMT_RGB555;
439 } else if (bppcnt == 4 && bpp == 8) {
440 avctx->pix_fmt = AV_PIX_FMT_ARGB;
441 } else {
442 av_log(avctx, AV_LOG_ERROR,
443 "Invalid pixel format (bppcnt %d bpp %d) in Directbit\n",
444 bppcnt, bpp);
445 return AVERROR_INVALIDDATA;
446 }
447
448 /* set packing when default is selected */
449 if (pack_type == 0)
450 pack_type = bppcnt;
451
452 if (pack_type != 3 && pack_type != 4) {
453 avpriv_request_sample(avctx, "Pack type %d", pack_type);
455 }
456 if (bytestream2_get_bytes_left(&gbc) < 30)
457 return AVERROR_INVALIDDATA;
458 if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
459 return ret;
460
461 /* jump to data */
462 bytestream2_skip(&gbc, 30);
463
464 if (opcode == DIRECTBITSRGN) {
465 bytestream2_skip(&gbc, 2 + 8); /* size + rect */
466 avpriv_report_missing_feature(avctx, "DirectBit mask region");
467 }
468
469 if (avctx->pix_fmt == AV_PIX_FMT_RGB555)
470 ret = decode_rle16(avctx, p, &gbc);
471 else
472 ret = decode_rle(avctx, p, &gbc, bppcnt);
473 if (ret < 0)
474 return ret;
475 *got_frame = 1;
476 break;
477 case LONGCOMMENT:
478 bytestream2_get_be16(&gbc);
479 bytestream2_skip(&gbc, bytestream2_get_be16(&gbc));
480 break;
481 default:
482 av_log(avctx, AV_LOG_TRACE, "Unknown 0x%04X opcode\n", opcode);
483 break;
484 }
485 /* exit the loop when a known pixel block has been found */
486 if (*got_frame) {
487 int eop, trail;
488
489 /* re-align to a word */
491
492 eop = bytestream2_get_be16(&gbc);
493 trail = bytestream2_get_bytes_left(&gbc);
494 if (eop != EOP)
495 av_log(avctx, AV_LOG_WARNING,
496 "Missing end of picture opcode (found 0x%04X)\n", eop);
497 if (trail)
498 av_log(avctx, AV_LOG_WARNING, "Got %d trailing bytes\n", trail);
499 break;
500 }
501 }
502
503 if (*got_frame) {
504 return avpkt->size;
505 } else {
506 av_log(avctx, AV_LOG_ERROR, "Frame contained no usable data\n");
507
508 return AVERROR_INVALIDDATA;
509 }
510}
511
513 .p.name = "qdraw",
514 CODEC_LONG_NAME("Apple QuickDraw"),
515 .p.type = AVMEDIA_TYPE_VIDEO,
516 .p.id = AV_CODEC_ID_QDRAW,
517 .p.capabilities = AV_CODEC_CAP_DR1,
519};
const FFCodec ff_qdraw_decoder
Definition qdrw.c:512
Libavcodec external API header.
#define CLIP(a)
static int BS_FUNC left(const BSCTX *bc)
Return the number of the bits left in a buffer.
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition bytestream.h:158
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition bytestream.h:168
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
common internal and external API header
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Definition utils.c:91
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_QDRAW
Definition codec_id.h:108
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
Definition log.h:236
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define r
Definition input.c:42
#define b
Definition input.c:43
#define AV_RB16(p)
unsigned offset
Definition libaomenc.c:763
static int decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_frame, AVPacket *avpkt)
Definition 4xm.c:837
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t w
Definition llvidencdsp.c:39
enum AVPixelFormat pix
Definition ohcodec.c:55
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition pixfmt.h:99
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
#define AV_PIX_FMT_RGB555
Definition pixfmt.h:533
static int decode_rle_bpp4(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc)
Definition qdrw.c:130
static int decode_rle16(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc)
Definition qdrw.c:174
QuickdrawOpcodes
Definition qdrw.c:36
@ DIRECTBITSRGN
Definition qdrw.c:41
@ PACKBITSRGN
Definition qdrw.c:39
@ SHORTCOMMENT
Definition qdrw.c:42
@ DIRECTBITSRECT
Definition qdrw.c:40
@ PACKBITSRECT
Definition qdrw.c:38
@ EOP
Definition qdrw.c:45
@ LONGCOMMENT
Definition qdrw.c:43
static int decode_rle_bpp2(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc)
Definition qdrw.c:75
static int parse_palette(AVCodecContext *avctx, GetByteContext *gbc, uint32_t *pal, int colors, int pixmap)
Definition qdrw.c:48
static int decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *avpkt)
Definition qdrw.c:291
static int check_header(const char *buf, int buf_size)
Definition qdrw.c:268
static int decode_rle(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc, int step)
Definition qdrw.c:217
const uint8_t * code
Definition spdifenc.c:433
unsigned int pos
Definition spdifenc.c:431
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
const uint8_t * buffer
Definition bytestream.h:34
#define avpriv_request_sample(...)
#define av_log(a,...)
static FILE * out
Definition movenc.c:55
int size
const char * g
Definition vf_curves.c:128