annotate escape124.c @ 12530:63edd10ad4bc libavcodec tip

Try to fix crashes introduced by r25218 r25218 made assumptions about the existence of past reference frames that weren't necessarily true.
author darkshikari
date Tue, 28 Sep 2010 09:06:22 +0000
parents 9cfc564bc3e6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
1 /*
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
2 * Escape 124 Video Decoder
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
3 * Copyright (C) 2008 Eli Friedman (eli.friedman@gmail.com)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
4 *
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
5 * This file is part of FFmpeg.
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
6 *
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
11 *
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
15 * Lesser General Public License for more details.
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
16 *
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
20 */
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
21
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
22 #include "avcodec.h"
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
23
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
24 #define ALT_BITSTREAM_READER_LE
9428
0dce4fe6e6f3 Rename bitstream.h to get_bits.h.
stefano
parents: 9355
diff changeset
25 #include "get_bits.h"
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
26
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
27 typedef union MacroBlock {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
28 uint16_t pixels[4];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
29 uint32_t pixels32[2];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
30 } MacroBlock;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
31
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
32 typedef union SuperBlock {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
33 uint16_t pixels[64];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
34 uint32_t pixels32[32];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
35 } SuperBlock;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
36
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
37 typedef struct CodeBook {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
38 unsigned depth;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
39 unsigned size;
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
40 MacroBlock* blocks;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
41 } CodeBook;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
42
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
43 typedef struct Escape124Context {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
44 AVFrame frame;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
45
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
46 unsigned num_superblocks;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
47
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
48 CodeBook codebooks[3];
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
49 } Escape124Context;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
50
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
51 static int can_safely_read(GetBitContext* gb, int bits) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
52 return get_bits_count(gb) + bits <= gb->size_in_bits;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
53 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
54
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
55 /**
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
56 * Initialize the decoder
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
57 * @param avctx decoder context
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
58 * @return 0 success, negative on error
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
59 */
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
60 static av_cold int escape124_decode_init(AVCodecContext *avctx)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
61 {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
62 Escape124Context *s = avctx->priv_data;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
63
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
64 avctx->pix_fmt = PIX_FMT_RGB555;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
65
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
66 s->num_superblocks = ((unsigned)avctx->width / 8) *
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
67 ((unsigned)avctx->height / 8);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
68
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
69 return 0;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
70 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
71
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
72 static av_cold int escape124_decode_close(AVCodecContext *avctx)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
73 {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
74 unsigned i;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
75 Escape124Context *s = avctx->priv_data;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
76
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
77 for (i = 0; i < 3; i++)
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
78 av_free(s->codebooks[i].blocks);
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
79
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
80 if (s->frame.data[0])
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
81 avctx->release_buffer(avctx, &s->frame);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
82
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
83 return 0;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
84 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
85
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
86 static CodeBook unpack_codebook(GetBitContext* gb, unsigned depth,
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
87 unsigned size)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
88 {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
89 unsigned i, j;
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
90 CodeBook cb = { 0 };
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
91
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
92 if (!can_safely_read(gb, size * 34))
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
93 return cb;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
94
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
95 if (size >= INT_MAX / sizeof(MacroBlock))
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
96 return cb;
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
97 cb.blocks = av_malloc(size ? size * sizeof(MacroBlock) : 1);
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
98 if (!cb.blocks)
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
99 return cb;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
100
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
101 cb.depth = depth;
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
102 cb.size = size;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
103 for (i = 0; i < size; i++) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
104 unsigned mask_bits = get_bits(gb, 4);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
105 unsigned color0 = get_bits(gb, 15);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
106 unsigned color1 = get_bits(gb, 15);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
107
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
108 for (j = 0; j < 4; j++) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
109 if (mask_bits & (1 << j))
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
110 cb.blocks[i].pixels[j] = color1;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
111 else
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
112 cb.blocks[i].pixels[j] = color0;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
113 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
114 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
115 return cb;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
116 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
117
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
118 static unsigned decode_skip_count(GetBitContext* gb)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
119 {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
120 unsigned value;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
121 // This function reads a maximum of 23 bits,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
122 // which is within the padding space
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
123 if (!can_safely_read(gb, 1))
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
124 return -1;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
125 value = get_bits1(gb);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
126 if (!value)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
127 return value;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
128
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
129 value += get_bits(gb, 3);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
130 if (value != (1 + ((1 << 3) - 1)))
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
131 return value;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
132
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
133 value += get_bits(gb, 7);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
134 if (value != (1 + ((1 << 3) - 1)) + ((1 << 7) - 1))
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
135 return value;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
136
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
137 return value + get_bits(gb, 12);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
138 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
139
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
140 static MacroBlock decode_macroblock(Escape124Context* s, GetBitContext* gb,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
141 int* codebook_index, int superblock_index)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
142 {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
143 // This function reads a maximum of 22 bits; the callers
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
144 // guard this function appropriately
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
145 unsigned block_index, depth;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
146
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
147 if (get_bits1(gb)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
148 static const char transitions[3][2] = { {2, 1}, {0, 2}, {1, 0} };
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
149 *codebook_index = transitions[*codebook_index][get_bits1(gb)];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
150 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
151
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
152 depth = s->codebooks[*codebook_index].depth;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
153
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
154 // depth = 0 means that this shouldn't read any bits;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
155 // in theory, this is the same as get_bits(gb, 0), but
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
156 // that doesn't actually work.
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
157 block_index = depth ? get_bits(gb, depth) : 0;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
158
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
159 if (*codebook_index == 1) {
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
160 block_index += superblock_index << s->codebooks[1].depth;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
161 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
162
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
163 // This condition can occur with invalid bitstreams and
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
164 // *codebook_index == 2
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
165 if (block_index >= s->codebooks[*codebook_index].size)
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
166 return (MacroBlock) { { 0 } };
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
167
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
168 return s->codebooks[*codebook_index].blocks[block_index];
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
169 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
170
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
171 static void insert_mb_into_sb(SuperBlock* sb, MacroBlock mb, unsigned index) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
172 // Formula: ((index / 4) * 16 + (index % 4) * 2) / 2
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
173 uint32_t *dst = sb->pixels32 + index + (index & -4);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
174
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
175 // This technically violates C99 aliasing rules, but it should be safe.
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
176 dst[0] = mb.pixels32[0];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
177 dst[4] = mb.pixels32[1];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
178 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
179
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
180 static void copy_superblock(uint16_t* dest, unsigned dest_stride,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
181 uint16_t* src, unsigned src_stride)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
182 {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
183 unsigned y;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
184 if (src)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
185 for (y = 0; y < 8; y++)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
186 memcpy(dest + y * dest_stride, src + y * src_stride,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
187 sizeof(uint16_t) * 8);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
188 else
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
189 for (y = 0; y < 8; y++)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
190 memset(dest + y * dest_stride, 0, sizeof(uint16_t) * 8);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
191 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
192
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
193 static const uint16_t mask_matrix[] = {0x1, 0x2, 0x10, 0x20,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
194 0x4, 0x8, 0x40, 0x80,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
195 0x100, 0x200, 0x1000, 0x2000,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
196 0x400, 0x800, 0x4000, 0x8000};
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
197
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
198 static int escape124_decode_frame(AVCodecContext *avctx,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
199 void *data, int *data_size,
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 7040
diff changeset
200 AVPacket *avpkt)
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
201 {
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 7040
diff changeset
202 const uint8_t *buf = avpkt->data;
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 7040
diff changeset
203 int buf_size = avpkt->size;
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
204 Escape124Context *s = avctx->priv_data;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
205
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
206 GetBitContext gb;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
207 unsigned frame_flags, frame_size;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
208 unsigned i;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
209
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
210 unsigned superblock_index, cb_index = 1,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
211 superblock_col_index = 0,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
212 superblocks_per_row = avctx->width / 8, skip = -1;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
213
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
214 uint16_t* old_frame_data, *new_frame_data;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
215 unsigned old_stride, new_stride;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
216
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
217 AVFrame new_frame = { { 0 } };
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
218
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
219 init_get_bits(&gb, buf, buf_size * 8);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
220
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
221 // This call also guards the potential depth reads for the
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
222 // codebook unpacking.
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
223 if (!can_safely_read(&gb, 64))
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
224 return -1;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
225
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
226 frame_flags = get_bits_long(&gb, 32);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
227 frame_size = get_bits_long(&gb, 32);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
228
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
229 // Leave last frame unchanged
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
230 // FIXME: Is this necessary? I haven't seen it in any real samples
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
231 if (!(frame_flags & 0x114) || !(frame_flags & 0x7800000)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
232 av_log(NULL, AV_LOG_DEBUG, "Skipping frame\n");
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
233
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
234 *data_size = sizeof(AVFrame);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
235 *(AVFrame*)data = s->frame;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
236
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
237 return frame_size;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
238 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
239
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
240 for (i = 0; i < 3; i++) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
241 if (frame_flags & (1 << (17 + i))) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
242 unsigned cb_depth, cb_size;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
243 if (i == 2) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
244 // This codebook can be cut off at places other than
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
245 // powers of 2, leaving some of the entries undefined.
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
246 cb_size = get_bits_long(&gb, 20);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
247 cb_depth = av_log2(cb_size - 1) + 1;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
248 } else {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
249 cb_depth = get_bits(&gb, 4);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
250 if (i == 0) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
251 // This is the most basic codebook: pow(2,depth) entries
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
252 // for a depth-length key
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
253 cb_size = 1 << cb_depth;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
254 } else {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
255 // This codebook varies per superblock
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
256 // FIXME: I don't think this handles integer overflow
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
257 // properly
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
258 cb_size = s->num_superblocks << cb_depth;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
259 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
260 }
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
261 av_free(s->codebooks[i].blocks);
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
262 s->codebooks[i] = unpack_codebook(&gb, cb_depth, cb_size);
6556
8300baeb2b5f Remove flexible array member from Escape 124
superdump
parents: 6550
diff changeset
263 if (!s->codebooks[i].blocks)
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
264 return -1;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
265 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
266 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
267
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
268 new_frame.reference = 3;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
269 if (avctx->get_buffer(avctx, &new_frame)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
270 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
271 return -1;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
272 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
273
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
274 new_frame_data = (uint16_t*)new_frame.data[0];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
275 new_stride = new_frame.linesize[0] / 2;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
276 old_frame_data = (uint16_t*)s->frame.data[0];
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
277 old_stride = s->frame.linesize[0] / 2;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
278
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
279 for (superblock_index = 0; superblock_index < s->num_superblocks;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
280 superblock_index++) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
281 MacroBlock mb;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
282 SuperBlock sb;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
283 unsigned multi_mask = 0;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
284
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
285 if (skip == -1) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
286 // Note that this call will make us skip the rest of the blocks
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
287 // if the frame prematurely ends
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
288 skip = decode_skip_count(&gb);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
289 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
290
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
291 if (skip) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
292 copy_superblock(new_frame_data, new_stride,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
293 old_frame_data, old_stride);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
294 } else {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
295 copy_superblock(sb.pixels, 8,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
296 old_frame_data, old_stride);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
297
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
298 while (can_safely_read(&gb, 1) && !get_bits1(&gb)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
299 unsigned mask;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
300 mb = decode_macroblock(s, &gb, &cb_index, superblock_index);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
301 mask = get_bits(&gb, 16);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
302 multi_mask |= mask;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
303 for (i = 0; i < 16; i++) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
304 if (mask & mask_matrix[i]) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
305 insert_mb_into_sb(&sb, mb, i);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
306 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
307 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
308 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
309
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
310 if (can_safely_read(&gb, 1) && !get_bits1(&gb)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
311 unsigned inv_mask = get_bits(&gb, 4);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
312 for (i = 0; i < 4; i++) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
313 if (inv_mask & (1 << i)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
314 multi_mask ^= 0xF << i*4;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
315 } else {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
316 multi_mask ^= get_bits(&gb, 4) << i*4;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
317 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
318 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
319
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
320 for (i = 0; i < 16; i++) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
321 if (multi_mask & mask_matrix[i]) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
322 if (!can_safely_read(&gb, 1))
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
323 break;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
324 mb = decode_macroblock(s, &gb, &cb_index,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
325 superblock_index);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
326 insert_mb_into_sb(&sb, mb, i);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
327 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
328 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
329 } else if (frame_flags & (1 << 16)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
330 while (can_safely_read(&gb, 1) && !get_bits1(&gb)) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
331 mb = decode_macroblock(s, &gb, &cb_index, superblock_index);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
332 insert_mb_into_sb(&sb, mb, get_bits(&gb, 4));
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
333 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
334 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
335
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
336 copy_superblock(new_frame_data, new_stride, sb.pixels, 8);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
337 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
338
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
339 superblock_col_index++;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
340 new_frame_data += 8;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
341 if (old_frame_data)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
342 old_frame_data += 8;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
343 if (superblock_col_index == superblocks_per_row) {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
344 new_frame_data += new_stride * 8 - superblocks_per_row * 8;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
345 if (old_frame_data)
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
346 old_frame_data += old_stride * 8 - superblocks_per_row * 8;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
347 superblock_col_index = 0;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
348 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
349 skip--;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
350 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
351
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
352 av_log(NULL, AV_LOG_DEBUG,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
353 "Escape sizes: %i, %i, %i\n",
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
354 frame_size, buf_size, get_bits_count(&gb) / 8);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
355
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
356 if (s->frame.data[0])
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
357 avctx->release_buffer(avctx, &s->frame);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
358
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
359 *(AVFrame*)data = s->frame = new_frame;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
360 *data_size = sizeof(AVFrame);
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
361
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
362 return frame_size;
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
363 }
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
364
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
365
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
366 AVCodec escape124_decoder = {
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
367 "escape124",
11560
8a4984c5cacc Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 9428
diff changeset
368 AVMEDIA_TYPE_VIDEO,
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
369 CODEC_ID_ESCAPE124,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
370 sizeof(Escape124Context),
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
371 escape124_decode_init,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
372 NULL,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
373 escape124_decode_close,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
374 escape124_decode_frame,
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
375 CODEC_CAP_DR1,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6710
diff changeset
376 .long_name = NULL_IF_CONFIG_SMALL("Escape 124"),
6549
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
377 };
6b07b4eeabb9 Escape 124 (RPL) decoder
superdump
parents:
diff changeset
378