qdrw.c
Go to the documentation of this file.
1 /*
2  * QuickDraw (qdrw) codec
3  * Copyright (c) 2004 Konstantin Shishkov
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
27 #include "libavutil/intreadwrite.h"
28 #include "avcodec.h"
29 
30 typedef struct QdrawContext{
33 } QdrawContext;
34 
35 static int decode_frame(AVCodecContext *avctx,
36  void *data, int *data_size,
37  AVPacket *avpkt)
38 {
39  const uint8_t *buf = avpkt->data;
40  const uint8_t *buf_end = avpkt->data + avpkt->size;
41  int buf_size = avpkt->size;
42  QdrawContext * const a = avctx->priv_data;
43  AVFrame * const p= (AVFrame*)&a->pic;
44  uint8_t* outdata;
45  int colors;
46  int i;
47  uint32_t *pal;
48  int r, g, b;
49 
50  if(p->data[0])
51  avctx->release_buffer(avctx, p);
52 
53  p->reference= 0;
54  if(avctx->get_buffer(avctx, p) < 0){
55  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
56  return -1;
57  }
59  p->key_frame= 1;
60 
61  outdata = a->pic.data[0];
62 
63  if (buf_end - buf < 0x68 + 4)
64  return AVERROR_INVALIDDATA;
65  buf += 0x68; /* jump to palette */
66  colors = AV_RB32(buf);
67  buf += 4;
68 
69  if(colors < 0 || colors > 256) {
70  av_log(avctx, AV_LOG_ERROR, "Error color count - %i(0x%X)\n", colors, colors);
71  return -1;
72  }
73  if (buf_end - buf < (colors + 1) * 8)
74  return AVERROR_INVALIDDATA;
75 
76  pal = (uint32_t*)p->data[1];
77  for (i = 0; i <= colors; i++) {
78  unsigned int idx;
79  idx = AV_RB16(buf); /* color index */
80  buf += 2;
81 
82  if (idx > 255) {
83  av_log(avctx, AV_LOG_ERROR, "Palette index out of range: %u\n", idx);
84  buf += 6;
85  continue;
86  }
87  r = *buf++;
88  buf++;
89  g = *buf++;
90  buf++;
91  b = *buf++;
92  buf++;
93  pal[idx] = (r << 16) | (g << 8) | b;
94  }
95  p->palette_has_changed = 1;
96 
97  if (buf_end - buf < 18)
98  return AVERROR_INVALIDDATA;
99  buf += 18; /* skip unneeded data */
100  for (i = 0; i < avctx->height; i++) {
101  int size, left, code, pix;
102  const uint8_t *next;
103  uint8_t *out;
104  int tsize = 0;
105 
106  /* decode line */
107  out = outdata;
108  size = AV_RB16(buf); /* size of packed line */
109  buf += 2;
110  if (buf_end - buf < size)
111  return AVERROR_INVALIDDATA;
112 
113  left = size;
114  next = buf + size;
115  while (left > 0) {
116  code = *buf++;
117  if (code & 0x80 ) { /* run */
118  pix = *buf++;
119  if ((out + (257 - code)) > (outdata + a->pic.linesize[0]))
120  break;
121  memset(out, pix, 257 - code);
122  out += 257 - code;
123  tsize += 257 - code;
124  left -= 2;
125  } else { /* copy */
126  if ((out + code) > (outdata + a->pic.linesize[0]))
127  break;
128  if (buf_end - buf < code + 1)
129  return AVERROR_INVALIDDATA;
130  memcpy(out, buf, code + 1);
131  out += code + 1;
132  buf += code + 1;
133  left -= 2 + code;
134  tsize += code + 1;
135  }
136  }
137  buf = next;
138  outdata += a->pic.linesize[0];
139  }
140 
141  *data_size = sizeof(AVFrame);
142  *(AVFrame*)data = a->pic;
143 
144  return buf_size;
145 }
146 
147 static av_cold int decode_init(AVCodecContext *avctx){
148 // QdrawContext * const a = avctx->priv_data;
149 
150  avctx->pix_fmt= PIX_FMT_PAL8;
151 
152  return 0;
153 }
154 
155 static av_cold int decode_end(AVCodecContext *avctx){
156  QdrawContext * const a = avctx->priv_data;
157  AVFrame *pic = &a->pic;
158 
159  if (pic->data[0])
160  avctx->release_buffer(avctx, pic);
161 
162  return 0;
163 }
164 
166  .name = "qdraw",
167  .type = AVMEDIA_TYPE_VIDEO,
168  .id = CODEC_ID_QDRAW,
169  .priv_data_size = sizeof(QdrawContext),
170  .init = decode_init,
171  .close = decode_end,
172  .decode = decode_frame,
173  .capabilities = CODEC_CAP_DR1,
174  .long_name = NULL_IF_CONFIG_SMALL("Apple QuickDraw"),
175 };
int(* get_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called at the beginning of each frame to get a buffer for it.
Definition: avcodec.h:1726
enum PixelFormat pix_fmt
Pixel format, see PIX_FMT_xxx.
Definition: avcodec.h:1426
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
AV_WL32 AV_WL24 AV_WL16 AV_WB32 AV_WB24 AV_RB16
Definition: bytestream.h:89
int size
static av_cold int decode_init(AVCodecContext *avctx)
Definition: qdrw.c:147
Audio Video Frame.
Definition: avcodec.h:985
AV_WL32 AV_WL24 AV_WL16 AV_RB32
Definition: bytestream.h:89
void(* release_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called to release buffers which were allocated with get_buffer.
Definition: avcodec.h:1737
int size
Definition: avcodec.h:909
#define b
Definition: swscale.c:1335
AVCodec.
Definition: avcodec.h:3189
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:228
struct QdrawContext QdrawContext
#define av_cold
Definition: attributes.h:71
AVCodec ff_qdraw_decoder
Definition: qdrw.c:165
const char data[16]
Definition: mxf.c:60
uint8_t * data
Definition: avcodec.h:908
AVCodecContext * avctx
Definition: qdrw.c:31
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:336
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:719
int reference
is this picture used as reference The values for this are the same as the MpegEncContext.picture_structure variable, that is 1->top field, 2->bottom field, 3->frame/both fields.
Definition: avcodec.h:1074
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
g
Definition: yuv2rgb.c:481
static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
Definition: qdrw.c:35
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:140
const char * name
Name of the codec implementation.
Definition: avcodec.h:3196
enum AVPictureType pict_type
Picture type of the frame, see ?_TYPE below.
Definition: avcodec.h:1029
struct AVFrame AVFrame
Audio Video Frame.
external API header
int linesize[AV_NUM_DATA_POINTERS]
Size, in bytes, of the data for each picture/channel plane.
Definition: avcodec.h:1008
main external API structure.
Definition: avcodec.h:1329
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:327
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
int palette_has_changed
Tell user application that palette has changed from previous frame.
Definition: avcodec.h:1188
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
AVFrame pic
Definition: qdrw.c:32
#define r(n)
Definition: regs.h:32
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:75
void * priv_data
Definition: avcodec.h:1531
int key_frame
1 -> keyframe, 0-> not
Definition: avcodec.h:1022
static av_cold int decode_end(AVCodecContext *avctx)
Definition: qdrw.c:155
for(j=16;j >0;--j)