zmbv.c 19.3 KB
Newer Older
1 2 3 4
/*
 * Zip Motion Blocks Video (ZMBV) decoder
 * Copyright (c) 2006 Konstantin Shishkov
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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 20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
23
 * @file
24 25 26 27 28 29
 * Zip Motion Blocks Video decoder
 */

#include <stdio.h>
#include <stdlib.h>

30
#include "libavutil/intreadwrite.h"
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
#include "avcodec.h"

#include <zlib.h>

#define ZMBV_KEYFRAME 1
#define ZMBV_DELTAPAL 2

enum ZmbvFormat {
    ZMBV_FMT_NONE  = 0,
    ZMBV_FMT_1BPP  = 1,
    ZMBV_FMT_2BPP  = 2,
    ZMBV_FMT_4BPP  = 3,
    ZMBV_FMT_8BPP  = 4,
    ZMBV_FMT_15BPP = 5,
    ZMBV_FMT_16BPP = 6,
    ZMBV_FMT_24BPP = 7,
    ZMBV_FMT_32BPP = 8
};

/*
 * Decoder context
 */
typedef struct ZmbvContext {
    AVCodecContext *avctx;
    AVFrame pic;

    int bpp;
    unsigned int decomp_size;
    uint8_t* decomp_buf;
    uint8_t pal[768];
    uint8_t *prev, *cur;
    int width, height;
    int fmt;
    int comp;
    int flags;
    int bw, bh, bx, by;
    int decomp_len;
    z_stream zstream;
    int (*decode_intra)(struct ZmbvContext *c);
    int (*decode_xor)(struct ZmbvContext *c);
} ZmbvContext;

/**
 * Decode XOR'ed frame - 8bpp version
 */

static int zmbv_decode_xor_8(ZmbvContext *c)
{
    uint8_t *src = c->decomp_buf;
    uint8_t *output, *prev;
    int8_t *mvec;
    int x, y;
    int d, dx, dy, bw2, bh2;
    int block;
    int i, j;
    int mx, my;

    output = c->cur;
    prev = c->prev;

91 92
    if (c->flags & ZMBV_DELTAPAL) {
        for (i = 0; i < 768; i++)
93 94 95 96 97 98 99
            c->pal[i] ^= *src++;
    }

    mvec = (int8_t*)src;
    src += ((c->bx * c->by * 2 + 3) & ~3);

    block = 0;
100
    for (y = 0; y < c->height; y += c->bh) {
101
        bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
102
        for (x = 0; x < c->width; x += c->bw) {
103 104 105 106 107 108 109 110 111 112 113 114 115 116
            uint8_t *out, *tprev;

            d = mvec[block] & 1;
            dx = mvec[block] >> 1;
            dy = mvec[block + 1] >> 1;
            block += 2;

            bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);

            /* copy block - motion vectors out of bounds are used to zero blocks */
            out = output + x;
            tprev = prev + x + dx + dy * c->width;
            mx = x + dx;
            my = y + dy;
117 118
            for (j = 0; j < bh2; j++) {
                if (my + j < 0 || my + j >= c->height) {
119 120
                    memset(out, 0, bw2);
                } else {
121 122
                    for (i = 0; i < bw2; i++) {
                        if (mx + i < 0 || mx + i >= c->width)
123 124 125 126 127 128 129 130 131
                            out[i] = 0;
                        else
                            out[i] = tprev[i];
                    }
                }
                out += c->width;
                tprev += c->width;
            }

132
            if (d) { /* apply XOR'ed difference */
133
                out = output + x;
134 135
                for (j = 0; j < bh2; j++) {
                    for (i = 0; i < bw2; i++)
136 137 138 139 140 141 142 143
                        out[i] ^= *src++;
                    out += c->width;
                }
            }
        }
        output += c->width * c->bh;
        prev += c->width * c->bh;
    }
144 145 146
    if (src - c->decomp_buf != c->decomp_len)
        av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n",
               src-c->decomp_buf, c->decomp_len);
147 148 149
    return 0;
}

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
/**
 * Decode XOR'ed frame - 15bpp and 16bpp version
 */

static int zmbv_decode_xor_16(ZmbvContext *c)
{
    uint8_t *src = c->decomp_buf;
    uint16_t *output, *prev;
    int8_t *mvec;
    int x, y;
    int d, dx, dy, bw2, bh2;
    int block;
    int i, j;
    int mx, my;

    output = (uint16_t*)c->cur;
    prev = (uint16_t*)c->prev;

    mvec = (int8_t*)src;
    src += ((c->bx * c->by * 2 + 3) & ~3);

    block = 0;
172
    for (y = 0; y < c->height; y += c->bh) {
173
        bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
174
        for (x = 0; x < c->width; x += c->bw) {
175 176 177 178 179 180 181 182 183 184 185 186 187 188
            uint16_t *out, *tprev;

            d = mvec[block] & 1;
            dx = mvec[block] >> 1;
            dy = mvec[block + 1] >> 1;
            block += 2;

            bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);

            /* copy block - motion vectors out of bounds are used to zero blocks */
            out = output + x;
            tprev = prev + x + dx + dy * c->width;
            mx = x + dx;
            my = y + dy;
189 190
            for (j = 0; j < bh2; j++) {
                if (my + j < 0 || my + j >= c->height) {
191 192
                    memset(out, 0, bw2 * 2);
                } else {
193 194
                    for (i = 0; i < bw2; i++) {
                        if (mx + i < 0 || mx + i >= c->width)
195 196 197 198 199 200 201 202 203
                            out[i] = 0;
                        else
                            out[i] = tprev[i];
                    }
                }
                out += c->width;
                tprev += c->width;
            }

204
            if (d) { /* apply XOR'ed difference */
205
                out = output + x;
206 207
                for (j = 0; j < bh2; j++){
                    for (i = 0; i < bw2; i++) {
208 209 210 211 212 213 214 215 216 217
                        out[i] ^= *((uint16_t*)src);
                        src += 2;
                    }
                    out += c->width;
                }
            }
        }
        output += c->width * c->bh;
        prev += c->width * c->bh;
    }
218 219 220
    if (src - c->decomp_buf != c->decomp_len)
        av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n",
               src-c->decomp_buf, c->decomp_len);
221 222 223 224
    return 0;
}

#ifdef ZMBV_ENABLE_24BPP
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
/**
 * Decode XOR'ed frame - 24bpp version
 */

static int zmbv_decode_xor_24(ZmbvContext *c)
{
    uint8_t *src = c->decomp_buf;
    uint8_t *output, *prev;
    int8_t *mvec;
    int x, y;
    int d, dx, dy, bw2, bh2;
    int block;
    int i, j;
    int mx, my;
    int stride;

    output = c->cur;
    prev = c->prev;

    stride = c->width * 3;
    mvec = (int8_t*)src;
    src += ((c->bx * c->by * 2 + 3) & ~3);

    block = 0;
249
    for (y = 0; y < c->height; y += c->bh) {
250
        bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
251
        for (x = 0; x < c->width; x += c->bw) {
252 253 254 255 256 257 258 259 260 261 262 263 264 265
            uint8_t *out, *tprev;

            d = mvec[block] & 1;
            dx = mvec[block] >> 1;
            dy = mvec[block + 1] >> 1;
            block += 2;

            bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);

            /* copy block - motion vectors out of bounds are used to zero blocks */
            out = output + x * 3;
            tprev = prev + (x + dx) * 3 + dy * stride;
            mx = x + dx;
            my = y + dy;
266 267
            for (j = 0; j < bh2; j++) {
                if (my + j < 0 || my + j >= c->height) {
268 269
                    memset(out, 0, bw2 * 3);
                } else {
270 271
                    for (i = 0; i < bw2; i++){
                        if (mx + i < 0 || mx + i >= c->width) {
272 273 274 275 276 277 278 279 280 281 282 283 284 285
                            out[i * 3 + 0] = 0;
                            out[i * 3 + 1] = 0;
                            out[i * 3 + 2] = 0;
                        } else {
                            out[i * 3 + 0] = tprev[i * 3 + 0];
                            out[i * 3 + 1] = tprev[i * 3 + 1];
                            out[i * 3 + 2] = tprev[i * 3 + 2];
                        }
                    }
                }
                out += stride;
                tprev += stride;
            }

286
            if (d) { /* apply XOR'ed difference */
287
                out = output + x * 3;
288 289
                for (j = 0; j < bh2; j++) {
                    for (i = 0; i < bw2; i++) {
290 291 292 293 294 295 296 297 298 299 300
                        out[i * 3 + 0] ^= *src++;
                        out[i * 3 + 1] ^= *src++;
                        out[i * 3 + 2] ^= *src++;
                    }
                    out += stride;
                }
            }
        }
        output += stride * c->bh;
        prev += stride * c->bh;
    }
301 302 303
    if (src - c->decomp_buf != c->decomp_len)
        av_log(c->avctx, AV_LOG_ERROR, "Used %i of %i bytes\n",
               src-c->decomp_buf, c->decomp_len);
304 305
    return 0;
}
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
#endif //ZMBV_ENABLE_24BPP

/**
 * Decode XOR'ed frame - 32bpp version
 */

static int zmbv_decode_xor_32(ZmbvContext *c)
{
    uint8_t *src = c->decomp_buf;
    uint32_t *output, *prev;
    int8_t *mvec;
    int x, y;
    int d, dx, dy, bw2, bh2;
    int block;
    int i, j;
    int mx, my;

    output = (uint32_t*)c->cur;
    prev = (uint32_t*)c->prev;

    mvec = (int8_t*)src;
    src += ((c->bx * c->by * 2 + 3) & ~3);

    block = 0;
330
    for (y = 0; y < c->height; y += c->bh) {
331
        bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
332
        for (x = 0; x < c->width; x += c->bw) {
333 334 335 336 337 338 339 340 341 342 343 344 345 346
            uint32_t *out, *tprev;

            d = mvec[block] & 1;
            dx = mvec[block] >> 1;
            dy = mvec[block + 1] >> 1;
            block += 2;

            bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);

            /* copy block - motion vectors out of bounds are used to zero blocks */
            out = output + x;
            tprev = prev + x + dx + dy * c->width;
            mx = x + dx;
            my = y + dy;
347 348
            for (j = 0; j < bh2; j++) {
                if (my + j < 0 || my + j >= c->height) {
349 350
                    memset(out, 0, bw2 * 4);
                } else {
351 352
                    for (i = 0; i < bw2; i++){
                        if (mx + i < 0 || mx + i >= c->width)
353 354 355 356 357 358 359 360 361
                            out[i] = 0;
                        else
                            out[i] = tprev[i];
                    }
                }
                out += c->width;
                tprev += c->width;
            }

362
            if (d) { /* apply XOR'ed difference */
363
                out = output + x;
364 365 366
                for (j = 0; j < bh2; j++){
                    for (i = 0; i < bw2; i++) {
                        out[i] ^= *((uint32_t *) src);
367 368 369 370 371 372 373
                        src += 4;
                    }
                    out += c->width;
                }
            }
        }
        output += c->width * c->bh;
374
        prev   += c->width * c->bh;
375
    }
376 377 378
    if (src - c->decomp_buf != c->decomp_len)
        av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n",
               src-c->decomp_buf, c->decomp_len);
379 380
    return 0;
}
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398

/**
 * Decode intraframe
 */
static int zmbv_decode_intra(ZmbvContext *c)
{
    uint8_t *src = c->decomp_buf;

    /* make the palette available on the way out */
    if (c->fmt == ZMBV_FMT_8BPP) {
        memcpy(c->pal, src, 768);
        src += 768;
    }

    memcpy(c->cur, src, c->width * c->height * (c->bpp / 8));
    return 0;
}

399
static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
400
{
401 402
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
403
    ZmbvContext * const c = avctx->priv_data;
404 405
    int zret = Z_OK; // Zlib return code
    int len = buf_size;
406
    int hi_ver, lo_ver, ret;
407

408
    if (c->pic.data[0])
409 410
            avctx->release_buffer(avctx, &c->pic);

411
    c->pic.reference = 3;
412
    c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
413
    if ((ret = avctx->get_buffer(avctx, &c->pic)) < 0) {
414
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
415
        return ret;
416 417 418 419 420
    }

    /* parse header */
    c->flags = buf[0];
    buf++; len--;
421
    if (c->flags & ZMBV_KEYFRAME) {
422 423
        void *decode_intra = NULL;
        c->decode_intra= NULL;
424 425 426 427 428 429 430 431 432
        hi_ver = buf[0];
        lo_ver = buf[1];
        c->comp = buf[2];
        c->fmt = buf[3];
        c->bw = buf[4];
        c->bh = buf[5];

        buf += 6;
        len -= 6;
433 434 435 436
        av_log(avctx, AV_LOG_DEBUG,
               "Flags=%X ver=%i.%i comp=%i fmt=%i blk=%ix%i\n",
               c->flags,hi_ver,lo_ver,c->comp,c->fmt,c->bw,c->bh);
        if (hi_ver != 0 || lo_ver != 1) {
437 438 439
            av_log_ask_for_sample(avctx, "Unsupported version %i.%i\n",
                                  hi_ver, lo_ver);
            return AVERROR_PATCHWELCOME;
440
        }
441
        if (c->bw == 0 || c->bh == 0) {
442 443 444
            av_log_ask_for_sample(avctx, "Unsupported block size %ix%i\n",
                                  c->bw, c->bh);
            return AVERROR_PATCHWELCOME;
445
        }
446
        if (c->comp != 0 && c->comp != 1) {
447 448 449
            av_log_ask_for_sample(avctx, "Unsupported compression type %i\n",
                                  c->comp);
            return AVERROR_PATCHWELCOME;
450
        }
451

452
        switch (c->fmt) {
453 454
        case ZMBV_FMT_8BPP:
            c->bpp = 8;
455
            decode_intra = zmbv_decode_intra;
456 457 458 459 460
            c->decode_xor = zmbv_decode_xor_8;
            break;
        case ZMBV_FMT_15BPP:
        case ZMBV_FMT_16BPP:
            c->bpp = 16;
461
            decode_intra = zmbv_decode_intra;
462 463 464 465 466
            c->decode_xor = zmbv_decode_xor_16;
            break;
#ifdef ZMBV_ENABLE_24BPP
        case ZMBV_FMT_24BPP:
            c->bpp = 24;
467
            decode_intra = zmbv_decode_intra;
468 469 470 471 472
            c->decode_xor = zmbv_decode_xor_24;
            break;
#endif //ZMBV_ENABLE_24BPP
        case ZMBV_FMT_32BPP:
            c->bpp = 32;
473
            decode_intra = zmbv_decode_intra;
474 475 476 477
            c->decode_xor = zmbv_decode_xor_32;
            break;
        default:
            c->decode_xor = NULL;
478 479 480
            av_log_ask_for_sample(avctx, "Unsupported (for now) format %i\n",
                                  c->fmt);
            return AVERROR_PATCHWELCOME;
481
        }
482

483 484 485 486 487
        zret = inflateReset(&c->zstream);
        if (zret != Z_OK) {
            av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
            return -1;
        }
488

489
        c->cur  = av_realloc_f(c->cur, avctx->width * avctx->height,  (c->bpp / 8));
490
        c->prev = av_realloc_f(c->prev, avctx->width * avctx->height,  (c->bpp / 8));
491 492
        c->bx = (c->width + c->bw - 1) / c->bw;
        c->by = (c->height+ c->bh - 1) / c->bh;
493
        if (!c->cur || !c->prev)
494 495
            return -1;
        c->decode_intra= decode_intra;
496 497
    }

498 499
     if (c->decode_intra == NULL) {
         av_log(avctx, AV_LOG_ERROR, "Error! Got no format or no keyframe!\n");
500
         return AVERROR_INVALIDDATA;
501
     }
502

503
    if (c->comp == 0) { //Uncompressed data
504 505 506 507 508 509 510 511 512 513 514
        memcpy(c->decomp_buf, buf, len);
        c->decomp_size = 1;
    } else { // ZLIB-compressed data
        c->zstream.total_in = c->zstream.total_out = 0;
        c->zstream.next_in = buf;
        c->zstream.avail_in = len;
        c->zstream.next_out = c->decomp_buf;
        c->zstream.avail_out = c->decomp_size;
        inflate(&c->zstream, Z_FINISH);
        c->decomp_len = c->zstream.total_out;
    }
515
    if (c->flags & ZMBV_KEYFRAME) {
516
        c->pic.key_frame = 1;
517
        c->pic.pict_type = AV_PICTURE_TYPE_I;
518 519 520
        c->decode_intra(c);
    } else {
        c->pic.key_frame = 0;
521
        c->pic.pict_type = AV_PICTURE_TYPE_P;
522
        if (c->decomp_len)
Kostya Shishkov's avatar
Kostya Shishkov committed
523
            c->decode_xor(c);
524 525 526 527 528 529 530 531 532
    }

    /* update frames */
    {
        uint8_t *out, *src;
        int i, j;

        out = c->pic.data[0];
        src = c->cur;
533
        switch (c->fmt) {
534
        case ZMBV_FMT_8BPP:
535 536
            for (j = 0; j < c->height; j++) {
                for (i = 0; i < c->width; i++) {
537 538 539
                    out[i * 3 + 0] = c->pal[(*src) * 3 + 0];
                    out[i * 3 + 1] = c->pal[(*src) * 3 + 1];
                    out[i * 3 + 2] = c->pal[(*src) * 3 + 2];
Måns Rullgård's avatar
Måns Rullgård committed
540
                    src++;
541 542 543 544 545
                }
                out += c->pic.linesize[0];
            }
            break;
        case ZMBV_FMT_15BPP:
546 547
            for (j = 0; j < c->height; j++) {
                for (i = 0; i < c->width; i++) {
548
                    uint16_t tmp = AV_RL16(src);
549 550 551 552 553 554 555 556 557
                    src += 2;
                    out[i * 3 + 0] = (tmp & 0x7C00) >> 7;
                    out[i * 3 + 1] = (tmp & 0x03E0) >> 2;
                    out[i * 3 + 2] = (tmp & 0x001F) << 3;
                }
                out += c->pic.linesize[0];
            }
            break;
        case ZMBV_FMT_16BPP:
558 559
            for (j = 0; j < c->height; j++) {
                for (i = 0; i < c->width; i++) {
560
                    uint16_t tmp = AV_RL16(src);
561 562 563 564 565 566 567 568 569 570
                    src += 2;
                    out[i * 3 + 0] = (tmp & 0xF800) >> 8;
                    out[i * 3 + 1] = (tmp & 0x07E0) >> 3;
                    out[i * 3 + 2] = (tmp & 0x001F) << 3;
                }
                out += c->pic.linesize[0];
            }
            break;
#ifdef ZMBV_ENABLE_24BPP
        case ZMBV_FMT_24BPP:
571
            for (j = 0; j < c->height; j++) {
572 573 574 575 576 577 578
                memcpy(out, src, c->width * 3);
                src += c->width * 3;
                out += c->pic.linesize[0];
            }
            break;
#endif //ZMBV_ENABLE_24BPP
        case ZMBV_FMT_32BPP:
579 580
            for (j = 0; j < c->height; j++) {
                for (i = 0; i < c->width; i++) {
581
                    uint32_t tmp = AV_RL32(src);
582
                    src += 4;
583
                    AV_WB24(out+(i*3), tmp);
584 585
                }
                out += c->pic.linesize[0];
586
            }
587 588 589
            break;
        default:
            av_log(avctx, AV_LOG_ERROR, "Cannot handle format %i\n", c->fmt);
590
        }
591
        FFSWAP(uint8_t *, c->cur, c->prev);
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
    }
    *data_size = sizeof(AVFrame);
    *(AVFrame*)data = c->pic;

    /* always report that the buffer was completely consumed */
    return buf_size;
}



/*
 *
 * Init zmbv decoder
 *
 */
607
static av_cold int decode_init(AVCodecContext *avctx)
608
{
609
    ZmbvContext * const c = avctx->priv_data;
610 611 612 613 614 615
    int zret; // Zlib return code

    c->avctx = avctx;

    c->width = avctx->width;
    c->height = avctx->height;
616
    avcodec_get_frame_defaults(&c->pic);
617

618
    c->bpp = avctx->bits_per_coded_sample;
619 620

    // Needed if zlib unused or init aborted before inflateInit
621
    memset(&c->zstream, 0, sizeof(z_stream));
622

623 624 625 626 627 628
    avctx->pix_fmt = PIX_FMT_RGB24;
    c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64);

    /* Allocate decompression buffer */
    if (c->decomp_size) {
        if ((c->decomp_buf = av_malloc(c->decomp_size)) == NULL) {
629 630
            av_log(avctx, AV_LOG_ERROR,
                   "Can't allocate decompression buffer.\n");
631
            return AVERROR(ENOMEM);
632 633 634 635 636 637
        }
    }

    c->zstream.zalloc = Z_NULL;
    c->zstream.zfree = Z_NULL;
    c->zstream.opaque = Z_NULL;
638
    zret = inflateInit(&c->zstream);
639 640
    if (zret != Z_OK) {
        av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
641
        return -1;
642 643 644 645 646 647 648 649 650 651 652 653
    }

    return 0;
}



/*
 *
 * Uninit zmbv decoder
 *
 */
654
static av_cold int decode_end(AVCodecContext *avctx)
655
{
656
    ZmbvContext * const c = avctx->priv_data;
657 658 659 660 661

    av_freep(&c->decomp_buf);

    if (c->pic.data[0])
        avctx->release_buffer(avctx, &c->pic);
662
    inflateEnd(&c->zstream);
663 664
    av_freep(&c->cur);
    av_freep(&c->prev);
665 666 667 668

    return 0;
}

669
AVCodec ff_zmbv_decoder = {
670 671 672 673 674 675 676 677
    .name           = "zmbv",
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = CODEC_ID_ZMBV,
    .priv_data_size = sizeof(ZmbvContext),
    .init           = decode_init,
    .close          = decode_end,
    .decode         = decode_frame,
    .capabilities   = CODEC_CAP_DR1,
678
    .long_name = NULL_IF_CONFIG_SMALL("Zip Motion Blocks Video"),
679
};