Browse code

Mimic decoder.

Originally committed as revision 12491 to svn://svn.ffmpeg.org/ffmpeg/trunk

Ramiro Polla authored on 2008/03/19 04:51:34
Showing 6 changed files
... ...
@@ -113,6 +113,7 @@ version <next>
113 113
 - QT variant of IMA ADPCM encoder
114 114
 - VFW grabber
115 115
 - Ipod/Iphone compatible mp4 muxer
116
+- Mimic decoder
116 117
 
117 118
 version 0.4.9-pre1:
118 119
 
... ...
@@ -145,6 +145,7 @@ Codecs:
145 145
   loco.c                                Kostya Shishkov
146 146
   lzo.h, lzo.c                          Reimar Doeffinger
147 147
   mdec.c                                Michael Niedermayer
148
+  mimic.c                               Ramiro Polla
148 149
   mjpeg.c                               Michael Niedermayer
149 150
   mpc*                                  Kostya Shishkov
150 151
   mpeg12.c, mpeg12data.h                Michael Niedermayer
... ...
@@ -103,6 +103,7 @@ OBJS-$(CONFIG_LJPEG_ENCODER)           += ljpegenc.o mjpegenc.o mjpeg.o mpegvide
103 103
 OBJS-$(CONFIG_LOCO_DECODER)            += loco.o golomb.o
104 104
 OBJS-$(CONFIG_MACE3_DECODER)           += mace.o
105 105
 OBJS-$(CONFIG_MACE6_DECODER)           += mace.o
106
+OBJS-$(CONFIG_MIMIC_DECODER)           += mimic.o
106 107
 OBJS-$(CONFIG_MJPEG_DECODER)           += mjpegdec.o mjpeg.o
107 108
 OBJS-$(CONFIG_MJPEG_ENCODER)           += mjpegenc.o mjpeg.o mpegvideo_enc.o motion_est.o ratecontrol.o mpeg12data.o mpegvideo.o
108 109
 OBJS-$(CONFIG_MJPEGB_DECODER)          += mjpegbdec.o mjpegdec.o mjpeg.o
... ...
@@ -101,6 +101,7 @@ void avcodec_register_all(void)
101 101
     REGISTER_ENCODER (LJPEG, ljpeg);
102 102
     REGISTER_DECODER (LOCO, loco);
103 103
     REGISTER_DECODER (MDEC, mdec);
104
+    REGISTER_DECODER (MIMIC, mimic);
104 105
     REGISTER_ENCDEC  (MJPEG, mjpeg);
105 106
     REGISTER_DECODER (MJPEGB, mjpegb);
106 107
     REGISTER_DECODER (MMVIDEO, mmvideo);
... ...
@@ -30,7 +30,7 @@
30 30
 #include "libavutil/avutil.h"
31 31
 
32 32
 #define LIBAVCODEC_VERSION_MAJOR 51
33
-#define LIBAVCODEC_VERSION_MINOR 51
33
+#define LIBAVCODEC_VERSION_MINOR 52
34 34
 #define LIBAVCODEC_VERSION_MICRO  0
35 35
 
36 36
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
... ...
@@ -177,6 +177,7 @@ enum CodecID {
177 177
     CODEC_ID_SUNRAST,
178 178
     CODEC_ID_INDEO4,
179 179
     CODEC_ID_INDEO5,
180
+    CODEC_ID_MIMIC,
180 181
 
181 182
     /* various PCM "codecs" */
182 183
     CODEC_ID_PCM_S16LE= 0x10000,
183 184
new file mode 100644
... ...
@@ -0,0 +1,398 @@
0
+/*
1

                
2
+ * Copyright (C) 2008  Ramiro Polla <ramiro@lisha.ufsc.br>
3
+ *
4
+ * This file is part of FFmpeg.
5
+ *
6
+ * FFmpeg is free software; you can redistribute it and/or
7
+ * modify it under the terms of the GNU Lesser General Public
8
+ * License as published by the Free Software Foundation; either
9
+ * version 2.1 of the License, or (at your option) any later version.
10
+ *
11
+ * FFmpeg is distributed in the hope that it will be useful,
12
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
+ * Lesser General Public License for more details.
15
+ *
16
+ * You should have received a copy of the GNU Lesser General Public
17
+ * License along with FFmpeg; if not, write to the Free Software
18
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
+ */
20
+
21
+#include <stdlib.h>
22
+#include <string.h>
23
+#include <stdint.h>
24
+
25
+#include "avcodec.h"
26
+#include "bitstream.h"
27
+#include "dsputil.h"
28
+
29
+#define MIMIC_HEADER_SIZE   20
30
+
31
+typedef struct {
32
+    AVCodecContext *avctx;
33
+
34
+    int             num_vblocks[3];
35
+    int             num_hblocks[3];
36
+
37
+    uint8_t        *swap_buf;
38
+    int             swap_buf_size;
39
+
40
+    int             cur_index;
41
+    int             prev_index;
42
+
43
+    AVFrame         buf_ptrs    [16];
44
+    AVPicture       flipped_ptrs[16];
45
+
46
+    DECLARE_ALIGNED_16(DCTELEM, dct_block[64]);
47
+
48
+    GetBitContext   gb;
49
+    ScanTable       scantable;
50
+    DSPContext      dsp;
51
+    VLC             vlc1;
52
+} MimicContext;
53
+
54
+static const uint32_t huffcodes[] = {
55
+    0x0000000a, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
56
+    0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
57
+    0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0000000b,
58
+    0x0000001b, 0x00000038, 0x00000078, 0x00000079, 0x0000007a, 0x000000f9,
59
+    0x000000fa, 0x000003fb, 0x000007f8, 0x000007f9, 0x000007fa, 0x000007fb,
60
+    0x00000ff8, 0x00000ff9, 0x00000001, 0x00000039, 0x0000007b, 0x000000fb,
61
+    0x000001f8, 0x000001f9, 0x00000ffa, 0x00000ffb, 0x00001ff8, 0x00001ff9,
62
+    0x00001ffa, 0x00001ffb, 0x00003ff8, 0x00003ff9, 0x00003ffa, 0x00000000,
63
+    0x00000004, 0x0000003a, 0x000001fa, 0x00003ffb, 0x00007ff8, 0x00007ff9,
64
+    0x00007ffa, 0x00007ffb, 0x0000fff8, 0x0000fff9, 0x0000fffa, 0x0000fffb,
65
+    0x0001fff8, 0x0001fff9, 0x0001fffa, 0x00000000, 0x0000000c, 0x000000f8,
66
+    0x000001fb, 0x0001fffb, 0x0003fff8, 0x0003fff9, 0x0003fffa, 0x0003fffb,
67
+    0x0007fff8, 0x0007fff9, 0x0007fffa, 0x0007fffb, 0x000ffff8, 0x000ffff9,
68
+    0x000ffffa, 0x00000000, 0x0000001a, 0x000003f8, 0x000ffffb, 0x001ffff8,
69
+    0x001ffff9, 0x001ffffa, 0x001ffffb, 0x003ffff8, 0x003ffff9, 0x003ffffa,
70
+    0x003ffffb, 0x007ffff8, 0x007ffff9, 0x007ffffa, 0x007ffffb, 0x00000000,
71
+    0x0000003b, 0x000003f9, 0x00fffff8, 0x00fffff9, 0x00fffffa, 0x00fffffb,
72
+    0x01fffff8, 0x01fffff9, 0x01fffffa, 0x01fffffb, 0x03fffff8, 0x03fffff9,
73
+    0x03fffffa, 0x03fffffb, 0x07fffff8, 0x00000000, 0x000003fa, 0x07fffff9,
74
+    0x07fffffa, 0x07fffffb, 0x0ffffff8, 0x0ffffff9, 0x0ffffffa, 0x0ffffffb,
75
+    0x1ffffff8, 0x1ffffff9, 0x1ffffffa, 0x1ffffffb, 0x3ffffff8, 0x3ffffff9,
76
+    0x3ffffffa,
77
+};
78
+
79
+static const uint8_t huffbits[] = {
80
+     4,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
81
+     0,  0,  0,  0,  2,  4,  5,  6,  7,  7,  7,  8,
82
+     8, 10, 11, 11, 11, 11, 12, 12,  2,  6,  7,  8,
83
+     9,  9, 12, 12, 13, 13, 13, 13, 14, 14, 14,  0,
84
+     3,  6,  9, 14, 15, 15, 15, 15, 16, 16, 16, 16,
85
+    17, 17, 17,  0,  4,  8,  9, 17, 18, 18, 18, 18,
86
+    19, 19, 19, 19, 20, 20, 20,  0,  5, 10, 20, 21,
87
+    21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23,  0,
88
+     6, 10, 24, 24, 24, 24, 25, 25, 25, 25, 26, 26,
89
+    26, 26, 27,  0, 10, 27, 27, 27, 28, 28, 28, 28,
90
+    29, 29, 29, 29, 30, 30, 30,
91
+};
92
+
93
+static const uint8_t col_zag[64] = {
94
+     0,  8,  1,  2,  9, 16, 24, 17,
95
+    10,  3,  4, 11, 18, 25, 32, 40,
96
+    33, 26, 19, 12,  5,  6, 13, 20,
97
+    27, 34, 41, 48, 56, 49, 42, 35,
98
+    28, 21, 14,  7, 15, 22, 29, 36,
99
+    43, 50, 57, 58, 51, 44, 37, 30,
100
+    23, 31, 38, 45, 52, 59, 39, 46,
101
+    53, 60, 61, 54, 47, 55, 62, 63
102
+};
103
+
104
+static int mimic_decode_init(AVCodecContext *avctx)
105
+{
106
+    MimicContext *ctx = avctx->priv_data;
107
+
108
+    ctx->prev_index = 0;
109
+    ctx->cur_index = 15;
110
+
111
+    if(init_vlc(&ctx->vlc1, 8, sizeof(huffbits)/sizeof(huffbits[0]),
112
+                 huffbits, 1, 1, huffcodes, 4, 4, 0)) {
113
+        av_log(avctx, AV_LOG_ERROR, "error initializing vlc table\n");
114
+        return -1;
115
+    }
116
+    dsputil_init(&ctx->dsp, avctx);
117
+    ff_init_scantable(ctx->dsp.idct_permutation, &ctx->scantable, col_zag);
118
+
119
+    return 0;
120
+}
121
+
122
+const static int8_t vlcdec_lookup[9][64] = {
123
+    {    0, },
124
+    {   -1,   1, },
125
+    {   -3,   3,   -2,   2, },
126
+    {   -7,   7,   -6,   6,   -5,   5,   -4,   4, },
127
+    {  -15,  15,  -14,  14,  -13,  13,  -12,  12,
128
+       -11,  11,  -10,  10,   -9,   9,   -8,   8, },
129
+    {  -31,  31,  -30,  30,  -29,  29,  -28,  28,
130
+       -27,  27,  -26,  26,  -25,  25,  -24,  24,
131
+       -23,  23,  -22,  22,  -21,  21,  -20,  20,
132
+       -19,  19,  -18,  18,  -17,  17,  -16,  16, },
133
+    {  -63,  63,  -62,  62,  -61,  61,  -60,  60,
134
+       -59,  59,  -58,  58,  -57,  57,  -56,  56,
135
+       -55,  55,  -54,  54,  -53,  53,  -52,  52,
136
+       -51,  51,  -50,  50,  -49,  49,  -48,  48,
137
+       -47,  47,  -46,  46,  -45,  45,  -44,  44,
138
+       -43,  43,  -42,  42,  -41,  41,  -40,  40,
139
+       -39,  39,  -38,  38,  -37,  37,  -36,  36,
140
+       -35,  35,  -34,  34,  -33,  33,  -32,  32, },
141
+    { -127, 127, -126, 126, -125, 125, -124, 124,
142
+      -123, 123, -122, 122, -121, 121, -120, 120,
143
+      -119, 119, -118, 118, -117, 117, -116, 116,
144
+      -115, 115, -114, 114, -113, 113, -112, 112,
145
+      -111, 111, -110, 110, -109, 109, -108, 108,
146
+      -107, 107, -106, 106, -105, 105, -104, 104,
147
+      -103, 103, -102, 102, -101, 101, -100, 100,
148
+       -99,  99,  -98,  98,  -97,  97,  -96,  96, },
149
+    {  -95,  95,  -94,  94,  -93,  93,  -92,  92,
150
+       -91,  91,  -90,  90,  -89,  89,  -88,  88,
151
+       -87,  87,  -86,  86,  -85,  85,  -84,  84,
152
+       -83,  83,  -82,  82,  -81,  81,  -80,  80,
153
+       -79,  79,  -78,  78,  -77,  77,  -76,  76,
154
+       -75,  75,  -74,  74,  -73,  73,  -72,  72,
155
+       -71,  71,  -70,  70,  -69,  69,  -68,  68,
156
+       -67,  67,  -66,  66,  -65,  65,  -64,  64, },
157
+};
158
+
159
+static int vlc_decode_block(MimicContext *ctx, DCTELEM *block, int num_coeffs,
160
+                            int qscale)
161
+{
162
+    unsigned int pos;
163
+
164
+    memset(block, 0, 64 * sizeof(DCTELEM));
165
+
166
+    block[0] = get_bits(&ctx->gb, 8) << 3;
167
+
168
+    for(pos = 1; pos < num_coeffs; pos++) {
169
+        uint32_t vlc, num_bits;
170
+        int value;
171
+        int coeff;
172
+
173
+        vlc = get_vlc2(&ctx->gb, ctx->vlc1.table, ctx->vlc1.bits, 4);
174
+        if(!vlc) /* end-of-block code */
175
+            return 1;
176
+        if(vlc == -1)
177
+            return 0;
178
+
179
+        /* pos_add and num_bits are coded in the vlc code */
180
+        pos +=     vlc&15; // pos_add
181
+        num_bits = vlc>>4; // num_bits
182
+
183
+        if(pos >= 64)
184
+            return 0;
185
+
186
+        value = get_bits(&ctx->gb, num_bits);
187
+
188
+        /* FFmpeg's IDCT behaves somewhat different from the original code, so
189
+         * a factor of 4 was added to the input */
190
+
191
+        coeff = vlcdec_lookup[num_bits][value];
192
+        if(pos<3)
193
+            coeff <<= 4;
194
+        else /* TODO Use >> 10 instead of / 1001 */
195
+            coeff = (coeff * qscale) / 1001;
196
+
197
+        block[ctx->scantable.permutated[pos]] = coeff;
198
+    }
199
+
200
+    return 1;
201
+}
202
+
203
+static int decode(MimicContext *ctx, int quality, int num_coeffs,
204
+                  int is_iframe)
205
+{
206
+    int y, x, plane;
207
+
208
+    for(plane = 0; plane < 3; plane++) {
209
+        const int is_chroma = !!plane;
210
+        const int qscale = av_clip(10000-quality,is_chroma?1000:2000,10000)<<2;
211
+        const int stride = ctx->flipped_ptrs[ctx->cur_index].linesize[plane];
212
+        const uint8_t *src = ctx->flipped_ptrs[ctx->prev_index].data[plane];
213
+        uint8_t       *dst = ctx->flipped_ptrs[ctx->cur_index ].data[plane];
214
+
215
+        for(y = 0 ; y < ctx->num_vblocks[plane] ; y++) {
216
+            for(x = 0; x < ctx->num_hblocks[plane]; x++) {
217
+
218
+                /* Check for a change condition in the current block.
219
+                 * - iframes always change.
220
+                 * - Luma plane changes on get_bits1 == 0
221
+                 * - Chroma planes change on get_bits1 == 1 */
222
+                if(is_iframe || get_bits1(&ctx->gb) == is_chroma) {
223
+
224
+                    /* Luma planes may use a backreference from the 15 last
225
+                     * frames preceding the previous. (get_bits1 == 1)
226
+                     * Chroma planes don't use backreferences. */
227
+                    if(is_chroma || is_iframe || !get_bits1(&ctx->gb)) {
228
+
229
+                        if(!vlc_decode_block(ctx, ctx->dct_block,
230
+                                             num_coeffs, qscale))
231
+                            return 0;
232
+                        ctx->dsp.idct_put(dst, stride, ctx->dct_block);
233
+                    } else {
234
+                        unsigned int backref = get_bits(&ctx->gb, 4);
235
+                        int index = (ctx->cur_index+backref)&15;
236
+                        uint8_t *p = ctx->flipped_ptrs[index].data[0];
237
+
238
+                        if(p) {
239
+                            p += src -
240
+                                ctx->flipped_ptrs[ctx->prev_index].data[plane];
241
+                            ctx->dsp.put_pixels_tab[1][0](dst, p, stride, 8);
242
+                        } else {
243
+                            av_log(ctx->avctx, AV_LOG_ERROR,
244
+                                     "No such backreference! Buggy sample.\n");
245
+                        }
246
+                    }
247
+                } else {
248
+                    ctx->dsp.put_pixels_tab[1][0](dst, src, stride, 8);
249
+                }
250
+                src += 8;
251
+                dst += 8;
252
+            }
253
+            src += (stride - ctx->num_hblocks[plane])<<3;
254
+            dst += (stride - ctx->num_hblocks[plane])<<3;
255
+        }
256
+    }
257
+
258
+    return 1;
259
+}
260
+
261
+/**
262
+ * Flip the buffer upside-down and put it in the YVU order to match the
263
+ * way Mimic encodes frames.
264
+ */
265
+static void prepare_avpic(MimicContext *ctx, AVPicture *dst, AVPicture *src)
266
+{
267
+    int i;
268
+    dst->data[0] = src->data[0]+( ctx->avctx->height    -1)*src->linesize[0];
269
+    dst->data[1] = src->data[2]+((ctx->avctx->height>>1)-1)*src->linesize[2];
270
+    dst->data[2] = src->data[1]+((ctx->avctx->height>>1)-1)*src->linesize[1];
271
+    for(i = 0 ; i < 3 ; i++)
272
+        dst->linesize[i] = -src->linesize[i];
273
+}
274
+
275
+static int mimic_decode_frame(AVCodecContext *avctx, void *data,
276
+                              int *data_size, const uint8_t *buf, int buf_size)
277
+{
278
+    MimicContext *ctx = avctx->priv_data;
279
+    int is_pframe;
280
+    int width, height;
281
+    int quality, num_coeffs;
282
+    int swap_buf_size = buf_size - MIMIC_HEADER_SIZE;
283
+
284
+    /*
285
+     * Header structure:
286
+     *  uint16_t    I_dont_remember;
287
+     *  uint16_t    quality;
288
+     *  uint16_t    width;
289
+     *  uint16_t    height;
290
+     *  uint32_t    some_constant;
291
+     *  uint32_t    is_pframe;
292
+     *  uint32_t    num_coeffs;
293
+     */
294
+
295
+    if(buf_size < MIMIC_HEADER_SIZE) {
296
+        av_log(avctx, AV_LOG_ERROR, "insufficient data\n");
297
+        return -1;
298
+    }
299
+
300
+    width  = AV_RL16(buf + 4);
301
+    height = AV_RL16(buf + 6);
302
+
303
+    if(!ctx->avctx) {
304
+        int i;
305
+
306
+        if(!(width == 160 && height == 120) &&
307
+           !(width == 320 && height == 240)) {
308
+            av_log(avctx, AV_LOG_ERROR, "invalid width/height!\n");
309
+            return -1;
310
+        }
311
+
312
+        ctx->avctx     = avctx;
313
+        avctx->width   = width;
314
+        avctx->height  = height;
315
+        avctx->pix_fmt = PIX_FMT_YUV420P;
316
+        for(i = 0 ; i < 3 ; i++) {
317
+            ctx->num_vblocks[i] = -((-height) >> (3 + !!i));
318
+            ctx->num_hblocks[i] =     width   >> (3 + !!i) ;
319
+        }
320
+    } else if(width != ctx->avctx->width || height != ctx->avctx->height) {
321
+        av_log(avctx, AV_LOG_ERROR, "resolution changing is not supported\n");
322
+        return -1;
323
+    }
324
+
325
+    quality    = AV_RL16(buf + 2);
326
+    is_pframe  = AV_RL32(buf + 12);
327
+    num_coeffs = buf[16];
328
+
329
+    if(is_pframe && !ctx->buf_ptrs[ctx->prev_index].data[0]) {
330
+        av_log(avctx, AV_LOG_ERROR, "decoding must start with keyframe\n");
331
+        return -1;
332
+    }
333
+
334
+    ctx->buf_ptrs[ctx->cur_index].reference = 1;
335
+    if(avctx->get_buffer(avctx, &ctx->buf_ptrs[ctx->cur_index])) {
336
+        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
337
+        return -1;
338
+    }
339
+
340
+    prepare_avpic(ctx, &ctx->flipped_ptrs[ctx->cur_index],
341
+                  (AVPicture*) &ctx->buf_ptrs[ctx->cur_index]);
342
+
343
+    ctx->swap_buf = av_fast_realloc(ctx->swap_buf, &ctx->swap_buf_size,
344
+                                 swap_buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
345
+    if(!ctx->swap_buf)
346
+        return AVERROR_NOMEM;
347
+
348
+    ctx->dsp.bswap_buf((uint32_t*)ctx->swap_buf,
349
+                        (const uint32_t*) (buf + MIMIC_HEADER_SIZE),
350
+                        swap_buf_size>>2);
351
+    init_get_bits(&ctx->gb, ctx->swap_buf, swap_buf_size << 3);
352
+
353
+    if(!decode(ctx, quality, num_coeffs, !is_pframe)) {
354
+        avctx->release_buffer(avctx, &ctx->buf_ptrs[ctx->cur_index]);
355
+        return -1;
356
+    }
357
+
358
+    ctx->buf_ptrs[ctx->cur_index].pict_type = is_pframe ? FF_P_TYPE:FF_I_TYPE;
359
+    *(AVFrame*)data = ctx->buf_ptrs[ctx->cur_index];
360
+    *data_size = sizeof(AVFrame);
361
+
362
+    ctx->prev_index = ctx->cur_index;
363
+    ctx->cur_index--;
364
+    ctx->cur_index &= 15;
365
+
366
+    /* Only release frames that aren't used for backreferences anymore */
367
+    if(ctx->buf_ptrs[ctx->cur_index].data[0])
368
+        avctx->release_buffer(avctx, &ctx->buf_ptrs[ctx->cur_index]);
369
+
370
+    return buf_size;
371
+}
372
+
373
+static int mimic_decode_end(AVCodecContext *avctx)
374
+{
375
+    MimicContext *ctx = avctx->priv_data;
376
+    int i;
377
+
378
+    av_free(ctx->swap_buf);
379
+    for(i = 0; i < 16; i++)
380
+        if(ctx->buf_ptrs[i].data[0])
381
+            avctx->release_buffer(avctx, &ctx->buf_ptrs[i]);
382
+    free_vlc(&ctx->vlc1);
383
+
384
+    return 0;
385
+}
386
+
387
+AVCodec mimic_decoder = {
388
+    "mimic",
389
+    CODEC_TYPE_VIDEO,
390
+    CODEC_ID_MIMIC,
391
+    sizeof(MimicContext),
392
+    mimic_decode_init,
393
+    NULL,
394
+    mimic_decode_end,
395
+    mimic_decode_frame,
396
+    CODEC_CAP_DR1,
397
+};