]> git.sesse.net Git - ffmpeg/blob - libavcodec/escape124.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / escape124.c
1 /*
2  * Escape 124 Video Decoder
3  * Copyright (C) 2008 Eli Friedman (eli.friedman@gmail.com)
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 #include "avcodec.h"
23 #include "internal.h"
24
25 #define BITSTREAM_READER_LE
26 #include "get_bits.h"
27
28 typedef union MacroBlock {
29     uint16_t pixels[4];
30     uint32_t pixels32[2];
31 } MacroBlock;
32
33 typedef union SuperBlock {
34     uint16_t pixels[64];
35     uint32_t pixels32[32];
36 } SuperBlock;
37
38 typedef struct CodeBook {
39     unsigned depth;
40     unsigned size;
41     MacroBlock* blocks;
42 } CodeBook;
43
44 typedef struct Escape124Context {
45     AVFrame frame;
46
47     unsigned num_superblocks;
48
49     CodeBook codebooks[3];
50 } Escape124Context;
51
52 static int can_safely_read(GetBitContext* gb, uint64_t bits) {
53     return get_bits_left(gb) >= bits;
54 }
55
56 /**
57  * Initialize the decoder
58  * @param avctx decoder context
59  * @return 0 success, negative on error
60  */
61 static av_cold int escape124_decode_init(AVCodecContext *avctx)
62 {
63     Escape124Context *s = avctx->priv_data;
64
65     avcodec_get_frame_defaults(&s->frame);
66     avctx->pix_fmt = AV_PIX_FMT_RGB555;
67
68     s->num_superblocks = ((unsigned)avctx->width / 8) *
69                          ((unsigned)avctx->height / 8);
70
71     return 0;
72 }
73
74 static av_cold int escape124_decode_close(AVCodecContext *avctx)
75 {
76     unsigned i;
77     Escape124Context *s = avctx->priv_data;
78
79     for (i = 0; i < 3; i++)
80         av_free(s->codebooks[i].blocks);
81
82     if (s->frame.data[0])
83         avctx->release_buffer(avctx, &s->frame);
84
85     return 0;
86 }
87
88 static CodeBook unpack_codebook(GetBitContext* gb, unsigned depth,
89                                  unsigned size)
90 {
91     unsigned i, j;
92     CodeBook cb = { 0 };
93
94     if (!can_safely_read(gb, (uint64_t)size * 34))
95         return cb;
96
97     if (size >= INT_MAX / sizeof(MacroBlock))
98         return cb;
99     cb.blocks = av_malloc(size ? size * sizeof(MacroBlock) : 1);
100     if (!cb.blocks)
101         return cb;
102
103     cb.depth = depth;
104     cb.size = size;
105     for (i = 0; i < size; i++) {
106         unsigned mask_bits = get_bits(gb, 4);
107         unsigned color0 = get_bits(gb, 15);
108         unsigned color1 = get_bits(gb, 15);
109
110         for (j = 0; j < 4; j++) {
111             if (mask_bits & (1 << j))
112                 cb.blocks[i].pixels[j] = color1;
113             else
114                 cb.blocks[i].pixels[j] = color0;
115         }
116     }
117     return cb;
118 }
119
120 static unsigned decode_skip_count(GetBitContext* gb)
121 {
122     unsigned value;
123     // This function reads a maximum of 23 bits,
124     // which is within the padding space
125     if (!can_safely_read(gb, 1))
126         return -1;
127     value = get_bits1(gb);
128     if (!value)
129         return value;
130
131     value += get_bits(gb, 3);
132     if (value != (1 + ((1 << 3) - 1)))
133         return value;
134
135     value += get_bits(gb, 7);
136     if (value != (1 + ((1 << 3) - 1)) + ((1 << 7) - 1))
137         return value;
138
139     return value + get_bits(gb, 12);
140 }
141
142 static MacroBlock decode_macroblock(Escape124Context* s, GetBitContext* gb,
143                                     int* codebook_index, int superblock_index)
144 {
145     // This function reads a maximum of 22 bits; the callers
146     // guard this function appropriately
147     unsigned block_index, depth;
148
149     if (get_bits1(gb)) {
150         static const char transitions[3][2] = { {2, 1}, {0, 2}, {1, 0} };
151         *codebook_index = transitions[*codebook_index][get_bits1(gb)];
152     }
153
154     depth = s->codebooks[*codebook_index].depth;
155
156     // depth = 0 means that this shouldn't read any bits;
157     // in theory, this is the same as get_bits(gb, 0), but
158     // that doesn't actually work.
159     block_index = depth ? get_bits(gb, depth) : 0;
160
161     if (*codebook_index == 1) {
162         block_index += superblock_index << s->codebooks[1].depth;
163     }
164
165     // This condition can occur with invalid bitstreams and
166     // *codebook_index == 2
167     if (block_index >= s->codebooks[*codebook_index].size)
168         return (MacroBlock) { { 0 } };
169
170     return s->codebooks[*codebook_index].blocks[block_index];
171 }
172
173 static void insert_mb_into_sb(SuperBlock* sb, MacroBlock mb, unsigned index) {
174    // Formula: ((index / 4) * 16 + (index % 4) * 2) / 2
175    uint32_t *dst = sb->pixels32 + index + (index & -4);
176
177    // This technically violates C99 aliasing rules, but it should be safe.
178    dst[0] = mb.pixels32[0];
179    dst[4] = mb.pixels32[1];
180 }
181
182 static void copy_superblock(uint16_t* dest, unsigned dest_stride,
183                             uint16_t* src, unsigned src_stride)
184 {
185     unsigned y;
186     if (src)
187         for (y = 0; y < 8; y++)
188             memcpy(dest + y * dest_stride, src + y * src_stride,
189                    sizeof(uint16_t) * 8);
190     else
191         for (y = 0; y < 8; y++)
192             memset(dest + y * dest_stride, 0, sizeof(uint16_t) * 8);
193 }
194
195 static const uint16_t mask_matrix[] = {0x1,   0x2,   0x10,   0x20,
196                                        0x4,   0x8,   0x40,   0x80,
197                                        0x100, 0x200, 0x1000, 0x2000,
198                                        0x400, 0x800, 0x4000, 0x8000};
199
200 static int escape124_decode_frame(AVCodecContext *avctx,
201                                   void *data, int *got_frame,
202                                   AVPacket *avpkt)
203 {
204     const uint8_t *buf = avpkt->data;
205     int buf_size = avpkt->size;
206     Escape124Context *s = avctx->priv_data;
207
208     GetBitContext gb;
209     unsigned frame_flags, frame_size;
210     unsigned i;
211
212     unsigned superblock_index, cb_index = 1,
213              superblock_col_index = 0,
214              superblocks_per_row = avctx->width / 8, skip = -1;
215
216     uint16_t* old_frame_data, *new_frame_data;
217     unsigned old_stride, new_stride;
218
219     AVFrame new_frame;
220     avcodec_get_frame_defaults(&new_frame);
221
222     init_get_bits(&gb, buf, buf_size * 8);
223
224     // This call also guards the potential depth reads for the
225     // codebook unpacking.
226     if (!can_safely_read(&gb, 64))
227         return -1;
228
229     frame_flags = get_bits_long(&gb, 32);
230     frame_size  = get_bits_long(&gb, 32);
231
232     // Leave last frame unchanged
233     // FIXME: Is this necessary?  I haven't seen it in any real samples
234     if (!(frame_flags & 0x114) || !(frame_flags & 0x7800000)) {
235         av_log(NULL, AV_LOG_DEBUG, "Skipping frame\n");
236
237         *got_frame = 1;
238         *(AVFrame*)data = s->frame;
239
240         return frame_size;
241     }
242
243     for (i = 0; i < 3; i++) {
244         if (frame_flags & (1 << (17 + i))) {
245             unsigned cb_depth, cb_size;
246             if (i == 2) {
247                 // This codebook can be cut off at places other than
248                 // powers of 2, leaving some of the entries undefined.
249                 cb_size = get_bits_long(&gb, 20);
250                 cb_depth = av_log2(cb_size - 1) + 1;
251             } else {
252                 cb_depth = get_bits(&gb, 4);
253                 if (i == 0) {
254                     // This is the most basic codebook: pow(2,depth) entries
255                     // for a depth-length key
256                     cb_size = 1 << cb_depth;
257                 } else {
258                     // This codebook varies per superblock
259                     // FIXME: I don't think this handles integer overflow
260                     // properly
261                     cb_size = s->num_superblocks << cb_depth;
262                 }
263             }
264             av_free(s->codebooks[i].blocks);
265             s->codebooks[i] = unpack_codebook(&gb, cb_depth, cb_size);
266             if (!s->codebooks[i].blocks)
267                 return -1;
268         }
269     }
270
271     new_frame.reference = 3;
272     if (ff_get_buffer(avctx, &new_frame)) {
273         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
274         return -1;
275     }
276
277     new_frame_data = (uint16_t*)new_frame.data[0];
278     new_stride = new_frame.linesize[0] / 2;
279     old_frame_data = (uint16_t*)s->frame.data[0];
280     old_stride = s->frame.linesize[0] / 2;
281
282     for (superblock_index = 0; superblock_index < s->num_superblocks;
283          superblock_index++) {
284         MacroBlock mb;
285         SuperBlock sb;
286         unsigned multi_mask = 0;
287
288         if (skip == -1) {
289             // Note that this call will make us skip the rest of the blocks
290             // if the frame prematurely ends
291             skip = decode_skip_count(&gb);
292         }
293
294         if (skip) {
295             copy_superblock(new_frame_data, new_stride,
296                             old_frame_data, old_stride);
297         } else {
298             copy_superblock(sb.pixels, 8,
299                             old_frame_data, old_stride);
300
301             while (can_safely_read(&gb, 1) && !get_bits1(&gb)) {
302                 unsigned mask;
303                 mb = decode_macroblock(s, &gb, &cb_index, superblock_index);
304                 mask = get_bits(&gb, 16);
305                 multi_mask |= mask;
306                 for (i = 0; i < 16; i++) {
307                     if (mask & mask_matrix[i]) {
308                         insert_mb_into_sb(&sb, mb, i);
309                     }
310                 }
311             }
312
313             if (can_safely_read(&gb, 1) && !get_bits1(&gb)) {
314                 unsigned inv_mask = get_bits(&gb, 4);
315                 for (i = 0; i < 4; i++) {
316                     if (inv_mask & (1 << i)) {
317                         multi_mask ^= 0xF << i*4;
318                     } else {
319                         multi_mask ^= get_bits(&gb, 4) << i*4;
320                     }
321                 }
322
323                 for (i = 0; i < 16; i++) {
324                     if (multi_mask & mask_matrix[i]) {
325                         if (!can_safely_read(&gb, 1))
326                             break;
327                         mb = decode_macroblock(s, &gb, &cb_index,
328                                                superblock_index);
329                         insert_mb_into_sb(&sb, mb, i);
330                     }
331                 }
332             } else if (frame_flags & (1 << 16)) {
333                 while (can_safely_read(&gb, 1) && !get_bits1(&gb)) {
334                     mb = decode_macroblock(s, &gb, &cb_index, superblock_index);
335                     insert_mb_into_sb(&sb, mb, get_bits(&gb, 4));
336                 }
337             }
338
339             copy_superblock(new_frame_data, new_stride, sb.pixels, 8);
340         }
341
342         superblock_col_index++;
343         new_frame_data += 8;
344         if (old_frame_data)
345             old_frame_data += 8;
346         if (superblock_col_index == superblocks_per_row) {
347             new_frame_data += new_stride * 8 - superblocks_per_row * 8;
348             if (old_frame_data)
349                 old_frame_data += old_stride * 8 - superblocks_per_row * 8;
350             superblock_col_index = 0;
351         }
352         skip--;
353     }
354
355     av_log(NULL, AV_LOG_DEBUG,
356            "Escape sizes: %i, %i, %i\n",
357            frame_size, buf_size, get_bits_count(&gb) / 8);
358
359     if (s->frame.data[0])
360         avctx->release_buffer(avctx, &s->frame);
361
362     *(AVFrame*)data = s->frame = new_frame;
363     *got_frame = 1;
364
365     return frame_size;
366 }
367
368
369 AVCodec ff_escape124_decoder = {
370     .name           = "escape124",
371     .type           = AVMEDIA_TYPE_VIDEO,
372     .id             = AV_CODEC_ID_ESCAPE124,
373     .priv_data_size = sizeof(Escape124Context),
374     .init           = escape124_decode_init,
375     .close          = escape124_decode_close,
376     .decode         = escape124_decode_frame,
377     .capabilities   = CODEC_CAP_DR1,
378     .long_name      = NULL_IF_CONFIG_SMALL("Escape 124"),
379 };