]> git.sesse.net Git - ffmpeg/blob - libavcodec/rpza.c
avcodec/rpza: Move frame allocation to a later point
[ffmpeg] / libavcodec / rpza.c
1 /*
2  * Quicktime Video (RPZA) Video Decoder
3  * Copyright (C) 2003 The FFmpeg project
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  * QT RPZA Video Decoder by Roberto Togni
25  * For more information about the RPZA format, visit:
26  *   http://www.pcisys.net/~melanson/codecs/
27  *
28  * The RPZA decoder outputs RGB555 colorspace data.
29  *
30  * Note that this decoder reads big endian RGB555 pixel values from the
31  * bytestream, arranges them in the host's endian order, and outputs
32  * them to the final rendered map in the same host endian order. This is
33  * intended behavior as the libavcodec documentation states that RGB555
34  * pixels shall be stored in native CPU endianness.
35  */
36
37 #include <stdint.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41
42 #include "libavutil/internal.h"
43 #include "avcodec.h"
44 #include "bytestream.h"
45 #include "internal.h"
46
47 typedef struct RpzaContext {
48
49     AVCodecContext *avctx;
50     AVFrame *frame;
51
52     GetByteContext gb;
53 } RpzaContext;
54
55 #define CHECK_BLOCK()                                                         \
56     if (total_blocks < 1) {                                                    \
57         av_log(s->avctx, AV_LOG_ERROR,                                         \
58                "Block counter just went negative (this should not happen)\n"); \
59         return AVERROR_INVALIDDATA;                                            \
60     }                                                                          \
61
62 #define ADVANCE_BLOCK()             \
63     {                               \
64         pixel_ptr += 4;             \
65         if (pixel_ptr >= width)     \
66         {                           \
67             pixel_ptr = 0;          \
68             row_ptr  += stride * 4; \
69         }                           \
70         total_blocks--;             \
71     }
72
73 static int rpza_decode_stream(RpzaContext *s)
74 {
75     int width = s->avctx->width;
76     int stride, row_inc, ret;
77     int chunk_size;
78     uint16_t colorA = 0, colorB;
79     uint16_t color4[4];
80     uint16_t ta, tb;
81     uint16_t *pixels;
82
83     int row_ptr = 0;
84     int pixel_ptr = 0;
85     int block_ptr;
86     int pixel_x, pixel_y;
87     int total_blocks;
88
89     /* First byte is always 0xe1. Warn if it's different */
90     if (bytestream2_peek_byte(&s->gb) != 0xe1)
91         av_log(s->avctx, AV_LOG_ERROR, "First chunk byte is 0x%02x instead of 0xe1\n",
92                bytestream2_peek_byte(&s->gb));
93
94     /* Get chunk size, ignoring first byte */
95     chunk_size = bytestream2_get_be32(&s->gb) & 0x00FFFFFF;
96
97     /* If length mismatch use size from MOV file and try to decode anyway */
98     if (chunk_size != bytestream2_get_bytes_left(&s->gb) + 4)
99         av_log(s->avctx, AV_LOG_WARNING,
100                "MOV chunk size %d != encoded chunk size %d\n",
101                chunk_size,
102                bytestream2_get_bytes_left(&s->gb) + 4
103               );
104
105     /* Number of 4x4 blocks in frame. */
106     total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4);
107
108     if ((ret = ff_reget_buffer(s->avctx, s->frame)) < 0)
109         return ret;
110     pixels = (uint16_t *)s->frame->data[0];
111     stride = s->frame->linesize[0] / 2;
112     row_inc = stride - 4;
113
114     /* Process chunk data */
115     while (bytestream2_get_bytes_left(&s->gb)) {
116         uint8_t opcode = bytestream2_get_byte(&s->gb); /* Get opcode */
117
118         int n_blocks = (opcode & 0x1f) + 1; /* Extract block counter from opcode */
119
120         /* If opcode MSbit is 0, we need more data to decide what to do */
121         if ((opcode & 0x80) == 0) {
122             colorA = (opcode << 8) | bytestream2_get_byte(&s->gb);
123             opcode = 0;
124             if ((bytestream2_peek_byte(&s->gb) & 0x80) != 0) {
125                 /* Must behave as opcode 110xxxxx, using colorA computed
126                  * above. Use fake opcode 0x20 to enter switch block at
127                  * the right place */
128                 opcode = 0x20;
129                 n_blocks = 1;
130             }
131         }
132
133         n_blocks = FFMIN(n_blocks, total_blocks);
134
135         switch (opcode & 0xe0) {
136
137         /* Skip blocks */
138         case 0x80:
139             while (n_blocks--) {
140                 CHECK_BLOCK();
141                 ADVANCE_BLOCK();
142             }
143             break;
144
145         /* Fill blocks with one color */
146         case 0xa0:
147             colorA = bytestream2_get_be16(&s->gb);
148             while (n_blocks--) {
149                 CHECK_BLOCK();
150                 block_ptr = row_ptr + pixel_ptr;
151                 for (pixel_y = 0; pixel_y < 4; pixel_y++) {
152                     for (pixel_x = 0; pixel_x < 4; pixel_x++){
153                         pixels[block_ptr] = colorA;
154                         block_ptr++;
155                     }
156                     block_ptr += row_inc;
157                 }
158                 ADVANCE_BLOCK();
159             }
160             break;
161
162         /* Fill blocks with 4 colors */
163         case 0xc0:
164             colorA = bytestream2_get_be16(&s->gb);
165         case 0x20:
166             colorB = bytestream2_get_be16(&s->gb);
167
168             /* sort out the colors */
169             color4[0] = colorB;
170             color4[1] = 0;
171             color4[2] = 0;
172             color4[3] = colorA;
173
174             /* red components */
175             ta = (colorA >> 10) & 0x1F;
176             tb = (colorB >> 10) & 0x1F;
177             color4[1] |= ((11 * ta + 21 * tb) >> 5) << 10;
178             color4[2] |= ((21 * ta + 11 * tb) >> 5) << 10;
179
180             /* green components */
181             ta = (colorA >> 5) & 0x1F;
182             tb = (colorB >> 5) & 0x1F;
183             color4[1] |= ((11 * ta + 21 * tb) >> 5) << 5;
184             color4[2] |= ((21 * ta + 11 * tb) >> 5) << 5;
185
186             /* blue components */
187             ta = colorA & 0x1F;
188             tb = colorB & 0x1F;
189             color4[1] |= ((11 * ta + 21 * tb) >> 5);
190             color4[2] |= ((21 * ta + 11 * tb) >> 5);
191
192             if (bytestream2_get_bytes_left(&s->gb) < n_blocks * 4)
193                 return AVERROR_INVALIDDATA;
194             while (n_blocks--) {
195                 CHECK_BLOCK();
196                 block_ptr = row_ptr + pixel_ptr;
197                 for (pixel_y = 0; pixel_y < 4; pixel_y++) {
198                     uint8_t index = bytestream2_get_byteu(&s->gb);
199                     for (pixel_x = 0; pixel_x < 4; pixel_x++){
200                         uint8_t idx = (index >> (2 * (3 - pixel_x))) & 0x03;
201                         pixels[block_ptr] = color4[idx];
202                         block_ptr++;
203                     }
204                     block_ptr += row_inc;
205                 }
206                 ADVANCE_BLOCK();
207             }
208             break;
209
210         /* Fill block with 16 colors */
211         case 0x00:
212             if (bytestream2_get_bytes_left(&s->gb) < 30)
213                 return AVERROR_INVALIDDATA;
214             CHECK_BLOCK();
215             block_ptr = row_ptr + pixel_ptr;
216             for (pixel_y = 0; pixel_y < 4; pixel_y++) {
217                 for (pixel_x = 0; pixel_x < 4; pixel_x++){
218                     /* We already have color of upper left pixel */
219                     if ((pixel_y != 0) || (pixel_x != 0))
220                         colorA = bytestream2_get_be16u(&s->gb);
221                     pixels[block_ptr] = colorA;
222                     block_ptr++;
223                 }
224                 block_ptr += row_inc;
225             }
226             ADVANCE_BLOCK();
227             break;
228
229         /* Unknown opcode */
230         default:
231             av_log(s->avctx, AV_LOG_ERROR, "Unknown opcode %d in rpza chunk."
232                  " Skip remaining %d bytes of chunk data.\n", opcode,
233                  bytestream2_get_bytes_left(&s->gb));
234             return AVERROR_INVALIDDATA;
235         } /* Opcode switch */
236     }
237
238     return 0;
239 }
240
241 static av_cold int rpza_decode_init(AVCodecContext *avctx)
242 {
243     RpzaContext *s = avctx->priv_data;
244
245     s->avctx = avctx;
246     avctx->pix_fmt = AV_PIX_FMT_RGB555;
247
248     s->frame = av_frame_alloc();
249     if (!s->frame)
250         return AVERROR(ENOMEM);
251
252     return 0;
253 }
254
255 static int rpza_decode_frame(AVCodecContext *avctx,
256                              void *data, int *got_frame,
257                              AVPacket *avpkt)
258 {
259     RpzaContext *s = avctx->priv_data;
260     int ret;
261
262     bytestream2_init(&s->gb, avpkt->data, avpkt->size);
263
264     ret = rpza_decode_stream(s);
265     if (ret < 0)
266         return ret;
267
268     if ((ret = av_frame_ref(data, s->frame)) < 0)
269         return ret;
270
271     *got_frame      = 1;
272
273     /* always report that the buffer was completely consumed */
274     return avpkt->size;
275 }
276
277 static av_cold int rpza_decode_end(AVCodecContext *avctx)
278 {
279     RpzaContext *s = avctx->priv_data;
280
281     av_frame_free(&s->frame);
282
283     return 0;
284 }
285
286 AVCodec ff_rpza_decoder = {
287     .name           = "rpza",
288     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime video (RPZA)"),
289     .type           = AVMEDIA_TYPE_VIDEO,
290     .id             = AV_CODEC_ID_RPZA,
291     .priv_data_size = sizeof(RpzaContext),
292     .init           = rpza_decode_init,
293     .close          = rpza_decode_end,
294     .decode         = rpza_decode_frame,
295     .capabilities   = AV_CODEC_CAP_DR1,
296 };