h261dec.c 19.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * H261 decoder
 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
 * Copyright (c) 2004 Maarten Daniels
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
24
 * @file
25 26 27
 * H.261 decoder.
 */

28
#include "libavutil/avassert.h"
29
#include "avcodec.h"
30
#include "mpeg_er.h"
31
#include "mpegutils.h"
32
#include "mpegvideo.h"
33
#include "h263.h"
34
#include "h261.h"
35
#include "internal.h"
36 37 38 39 40 41 42 43 44 45 46 47 48 49

#define H261_MBA_VLC_BITS 9
#define H261_MTYPE_VLC_BITS 6
#define H261_MV_VLC_BITS 7
#define H261_CBP_VLC_BITS 9
#define TCOEFF_VLC_BITS 9
#define MBA_STUFFING 33
#define MBA_STARTCODE 34

static VLC h261_mba_vlc;
static VLC h261_mtype_vlc;
static VLC h261_mv_vlc;
static VLC h261_cbp_vlc;

50 51
static av_cold void h261_decode_init_vlc(H261Context *h)
{
52 53
    static int done = 0;

54
    if (!done) {
55
        done = 1;
56
        INIT_VLC_STATIC(&h261_mba_vlc, H261_MBA_VLC_BITS, 35,
57 58
                        ff_h261_mba_bits, 1, 1,
                        ff_h261_mba_code, 1, 1, 662);
59
        INIT_VLC_STATIC(&h261_mtype_vlc, H261_MTYPE_VLC_BITS, 10,
60 61
                        ff_h261_mtype_bits, 1, 1,
                        ff_h261_mtype_code, 1, 1, 80);
62
        INIT_VLC_STATIC(&h261_mv_vlc, H261_MV_VLC_BITS, 17,
63 64
                        &ff_h261_mv_tab[0][1], 2, 1,
                        &ff_h261_mv_tab[0][0], 2, 1, 144);
65
        INIT_VLC_STATIC(&h261_cbp_vlc, H261_CBP_VLC_BITS, 63,
66 67
                        &ff_h261_cbp_tab[0][1], 2, 1,
                        &ff_h261_cbp_tab[0][0], 2, 1, 512);
68
        INIT_VLC_RL(ff_h261_rl_tcoeff, 552);
69 70 71
    }
}

72 73 74 75
static av_cold int h261_decode_init(AVCodecContext *avctx)
{
    H261Context *h          = avctx->priv_data;
    MpegEncContext *const s = &h->s;
76 77

    // set defaults
78
    ff_mpv_decode_defaults(s);
79 80
    ff_mpv_decode_init(s, avctx);

81 82 83
    s->out_format  = FMT_H261;
    s->low_delay   = 1;
    avctx->pix_fmt = AV_PIX_FMT_YUV420P;
84

85
    ff_h261_common_init();
86 87 88 89 90 91 92 93
    h261_decode_init_vlc(h);

    h->gob_start_code_skipped = 0;

    return 0;
}

/**
94
 * Decode the group of blocks header or slice header.
95
 * @return <0 if an error occurred
96
 */
97 98
static int h261_decode_gob_header(H261Context *h)
{
99
    unsigned int val;
100
    MpegEncContext *const s = &h->s;
101

102
    if (!h->gob_start_code_skipped) {
103 104
        /* Check for GOB Start Code */
        val = show_bits(&s->gb, 15);
105
        if (val)
106 107 108 109 110 111 112 113 114
            return -1;

        /* We have a GBSC */
        skip_bits(&s->gb, 16);
    }

    h->gob_start_code_skipped = 0;

    h->gob_number = get_bits(&s->gb, 4); /* GN */
115
    s->qscale     = get_bits(&s->gb, 5); /* GQUANT */
116 117

    /* Check if gob_number is valid */
118 119
    if (s->mb_height == 18) { // CIF
        if ((h->gob_number <= 0) || (h->gob_number > 12))
120
            return -1;
121 122 123
    } else { // QCIF
        if ((h->gob_number != 1) && (h->gob_number != 3) &&
            (h->gob_number != 5))
124 125 126 127
            return -1;
    }

    /* GEI */
128 129
    if (skip_1stop_8data_bits(&s->gb) < 0)
        return AVERROR_INVALIDDATA;
130

131
    if (s->qscale == 0) {
132
        av_log(s->avctx, AV_LOG_ERROR, "qscale has forbidden 0 value\n");
133
        if (s->avctx->err_recognition & (AV_EF_BITSTREAM | AV_EF_COMPLIANT))
134 135
            return -1;
    }
136

137 138 139 140
    /* For the first transmitted macroblock in a GOB, MBA is the absolute
     * address. For subsequent macroblocks, MBA is the difference between
     * the absolute addresses of the macroblock and the last transmitted
     * macroblock. */
141
    h->current_mba = 0;
142
    h->mba_diff    = 0;
143 144 145 146 147

    return 0;
}

/**
148
 * Decode the group of blocks / video packet header.
149 150
 * @return <0 if no resync found
 */
151
static int h261_resync(H261Context *h)
152 153
{
    MpegEncContext *const s = &h->s;
154 155
    int left, ret;

156 157 158
    if (h->gob_start_code_skipped) {
        ret = h261_decode_gob_header(h);
        if (ret >= 0)
159
            return 0;
160 161 162 163
    } else {
        if (show_bits(&s->gb, 15) == 0) {
            ret = h261_decode_gob_header(h);
            if (ret >= 0)
164 165
                return 0;
        }
166 167
        // OK, it is not where it is supposed to be ...
        s->gb = s->last_resync_gb;
168
        align_get_bits(&s->gb);
169
        left = get_bits_left(&s->gb);
170

171 172 173
        for (; left > 15 + 1 + 4 + 5; left -= 8) {
            if (show_bits(&s->gb, 15) == 0) {
                GetBitContext bak = s->gb;
174

175 176
                ret = h261_decode_gob_header(h);
                if (ret >= 0)
177 178
                    return 0;

179
                s->gb = bak;
180 181 182 183 184 185 186 187 188
            }
            skip_bits(&s->gb, 8);
        }
    }

    return -1;
}

/**
189
 * Decode skipped macroblocks.
190 191
 * @return 0
 */
192
static int h261_decode_mb_skipped(H261Context *h, int mba1, int mba2)
193
{
194
    MpegEncContext *const s = &h->s;
195 196 197 198
    int i;

    s->mb_intra = 0;

199
    for (i = mba1; i < mba2; i++) {
200 201
        int j, xy;

202 203 204
        s->mb_x = ((h->gob_number - 1) % 2) * 11 + i % 11;
        s->mb_y = ((h->gob_number - 1) / 2) * 3 + i / 11;
        xy      = s->mb_x + s->mb_y * s->mb_stride;
205 206 207
        ff_init_block_index(s);
        ff_update_block_index(s);

208
        for (j = 0; j < 6; j++)
209 210
            s->block_last_index[j] = -1;

211 212
        s->mv_dir                      = MV_DIR_FORWARD;
        s->mv_type                     = MV_TYPE_16X16;
213
        s->current_picture.mb_type[xy] = MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0;
214 215 216 217
        s->mv[0][0][0]                 = 0;
        s->mv[0][0][1]                 = 0;
        s->mb_skipped                  = 1;
        h->mtype                      &= ~MB_TYPE_H261_FIL;
218

219 220 221 222 223 224 225
        if (s->current_picture.motion_val[0]) {
            int b_stride = 2*s->mb_width + 1;
            int b_xy     = 2 * s->mb_x + (2 * s->mb_y) * b_stride;
            s->current_picture.motion_val[0][b_xy][0] = s->mv[0][0][0];
            s->current_picture.motion_val[0][b_xy][1] = s->mv[0][0][1];
        }

226
        ff_mpv_decode_mb(s, s->block);
227 228 229 230 231
    }

    return 0;
}

232 233 234 235
static const int mvmap[17] = {
    0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16
};

236 237
static int decode_mv_component(GetBitContext *gb, int v)
{
238 239 240
    int mv_diff = get_vlc2(gb, h261_mv_vlc.table, H261_MV_VLC_BITS, 2);

    /* check if mv_diff is valid */
241
    if (mv_diff < 0)
242 243 244 245
        return v;

    mv_diff = mvmap[mv_diff];

246 247
    if (mv_diff && !get_bits1(gb))
        mv_diff = -mv_diff;
248 249

    v += mv_diff;
250 251 252 253
    if (v <= -16)
        v += 32;
    else if (v >= 16)
        v -= 32;
254 255 256 257

    return v;
}

258 259 260 261 262 263 264
/**
 * Decode a macroblock.
 * @return <0 if an error occurred
 */
static int h261_decode_block(H261Context *h, int16_t *block, int n, int coded)
{
    MpegEncContext *const s = &h->s;
265
    int level, i, j, run;
266
    RLTable *rl = &ff_h261_rl_tcoeff;
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
    const uint8_t *scan_table;

    /* For the variable length encoding there are two code tables, one being
     * used for the first transmitted LEVEL in INTER, INTER + MC and
     * INTER + MC + FIL blocks, the second for all other LEVELs except the
     * first one in INTRA blocks which is fixed length coded with 8 bits.
     * NOTE: The two code tables only differ in one VLC so we handle that
     * manually. */
    scan_table = s->intra_scantable.permutated;
    if (s->mb_intra) {
        /* DC coef */
        level = get_bits(&s->gb, 8);
        // 0 (00000000b) and -128 (10000000b) are FORBIDDEN
        if ((level & 0x7F) == 0) {
            av_log(s->avctx, AV_LOG_ERROR, "illegal dc %d at %d %d\n",
                   level, s->mb_x, s->mb_y);
            return -1;
        }
        /* The code 1000 0000 is not used, the reconstruction level of 1024
         * being coded as 1111 1111. */
        if (level == 255)
            level = 128;
        block[0] = level;
        i        = 1;
    } else if (coded) {
        // Run  Level   Code
        // EOB          Not possible for first level when cbp is available (that's why the table is different)
        // 0    1       1s
        // *    *       0*
        int check = show_bits(&s->gb, 2);
        i = 0;
        if (check & 0x2) {
            skip_bits(&s->gb, 2);
            block[0] = (check & 0x1) ? -1 : 1;
            i        = 1;
        }
    } else {
        i = 0;
    }
    if (!coded) {
        s->block_last_index[n] = i - 1;
        return 0;
    }
310 311
    {
    OPEN_READER(re, &s->gb);
312
    i--; // offset by -1 to allow direct indexing of scan_table
313
    for (;;) {
314 315 316
        UPDATE_CACHE(re, &s->gb);
        GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TCOEFF_VLC_BITS, 2, 0);
        if (run == 66) {
317 318 319 320 321 322
            if (level) {
                CLOSE_READER(re, &s->gb);
                av_log(s->avctx, AV_LOG_ERROR, "illegal ac vlc code at %dx%d\n",
                       s->mb_x, s->mb_y);
                return -1;
            }
323 324 325 326
            /* escape */
            /* The remaining combinations of (run, level) are encoded with a
             * 20-bit word consisting of 6 bits escape, 6 bits run and 8 bits
             * level. */
327
            run   = SHOW_UBITS(re, &s->gb, 6) + 1;
328 329 330 331
            SKIP_CACHE(re, &s->gb, 6);
            level = SHOW_SBITS(re, &s->gb, 8);
            SKIP_COUNTER(re, &s->gb, 6 + 8);
        } else if (level == 0) {
332 333
            break;
        } else {
334
            if (SHOW_UBITS(re, &s->gb, 1))
335
                level = -level;
336
            SKIP_COUNTER(re, &s->gb, 1);
337 338
        }
        i += run;
339
        if (i >= 64) {
340
            CLOSE_READER(re, &s->gb);
341 342 343 344
            av_log(s->avctx, AV_LOG_ERROR, "run overflow at %dx%d\n",
                   s->mb_x, s->mb_y);
            return -1;
        }
345
        j        = scan_table[i];
346 347
        block[j] = level;
    }
348 349
    CLOSE_READER(re, &s->gb);
    }
350
    s->block_last_index[n] = i;
351 352 353
    return 0;
}

354 355 356
static int h261_decode_mb(H261Context *h)
{
    MpegEncContext *const s = &h->s;
357
    int i, cbp, xy;
358 359 360

    cbp = 63;
    // Read mba
361 362 363
    do {
        h->mba_diff = get_vlc2(&s->gb, h261_mba_vlc.table,
                               H261_MBA_VLC_BITS, 2);
364 365 366

        /* Check for slice end */
        /* NOTE: GOB can be empty (no MB data) or exist only of MBA_stuffing */
367
        if (h->mba_diff == MBA_STARTCODE) { // start code
368 369 370
            h->gob_start_code_skipped = 1;
            return SLICE_END;
        }
371
    } while (h->mba_diff == MBA_STUFFING); // stuffing
372

373
    if (h->mba_diff < 0) {
374
        if (get_bits_left(&s->gb) <= 7)
375 376 377 378 379 380
            return SLICE_END;

        av_log(s->avctx, AV_LOG_ERROR, "illegal mba at %d %d\n", s->mb_x, s->mb_y);
        return SLICE_ERROR;
    }

381
    h->mba_diff    += 1;
382 383
    h->current_mba += h->mba_diff;

384
    if (h->current_mba > MBA_STUFFING)
385 386
        return SLICE_ERROR;

387 388 389
    s->mb_x = ((h->gob_number - 1) % 2) * 11 + ((h->current_mba - 1) % 11);
    s->mb_y = ((h->gob_number - 1) / 2) * 3 + ((h->current_mba - 1) / 11);
    xy      = s->mb_x + s->mb_y * s->mb_stride;
390 391 392 393 394
    ff_init_block_index(s);
    ff_update_block_index(s);

    // Read mtype
    h->mtype = get_vlc2(&s->gb, h261_mtype_vlc.table, H261_MTYPE_VLC_BITS, 2);
Michael Niedermayer's avatar
Michael Niedermayer committed
395
    if (h->mtype < 0) {
396 397
        av_log(s->avctx, AV_LOG_ERROR, "Invalid mtype index %d\n",
               h->mtype);
Michael Niedermayer's avatar
Michael Niedermayer committed
398 399
        return SLICE_ERROR;
    }
400
    av_assert0(h->mtype < FF_ARRAY_ELEMS(ff_h261_mtype_map));
401
    h->mtype = ff_h261_mtype_map[h->mtype];
402 403

    // Read mquant
404
    if (IS_QUANT(h->mtype))
405 406 407 408 409
        ff_set_qscale(s, get_bits(&s->gb, 5));

    s->mb_intra = IS_INTRA4x4(h->mtype);

    // Read mv
410 411 412 413 414 415 416 417 418 419 420
    if (IS_16X16(h->mtype)) {
        /* Motion vector data is included for all MC macroblocks. MVD is
         * obtained from the macroblock vector by subtracting the vector
         * of the preceding macroblock. For this calculation the vector
         * of the preceding macroblock is regarded as zero in the
         * following three situations:
         * 1) evaluating MVD for macroblocks 1, 12 and 23;
         * 2) evaluating MVD for macroblocks in which MBA does not represent a difference of 1;
         * 3) MTYPE of the previous macroblock was not MC. */
        if ((h->current_mba ==  1) || (h->current_mba == 12) ||
            (h->current_mba == 23) || (h->mba_diff != 1)) {
421 422 423 424
            h->current_mv_x = 0;
            h->current_mv_y = 0;
        }

425 426 427
        h->current_mv_x = decode_mv_component(&s->gb, h->current_mv_x);
        h->current_mv_y = decode_mv_component(&s->gb, h->current_mv_y);
    } else {
428 429 430 431 432
        h->current_mv_x = 0;
        h->current_mv_y = 0;
    }

    // Read cbp
433
    if (HAS_CBP(h->mtype))
434 435
        cbp = get_vlc2(&s->gb, h261_cbp_vlc.table, H261_CBP_VLC_BITS, 2) + 1;

436
    if (s->mb_intra) {
437
        s->current_picture.mb_type[xy] = MB_TYPE_INTRA;
438 439 440 441
        goto intra;
    }

    //set motion vectors
442 443
    s->mv_dir                      = MV_DIR_FORWARD;
    s->mv_type                     = MV_TYPE_16X16;
444
    s->current_picture.mb_type[xy] = MB_TYPE_16x16 | MB_TYPE_L0;
445 446
    s->mv[0][0][0]                 = h->current_mv_x * 2; // gets divided by 2 in motion compensation
    s->mv[0][0][1]                 = h->current_mv_y * 2;
447

448
    if (s->current_picture.motion_val[0]) {
449 450
        int b_stride = 2*s->mb_width + 1;
        int b_xy     = 2 * s->mb_x + (2 * s->mb_y) * b_stride;
451 452 453 454
        s->current_picture.motion_val[0][b_xy][0] = s->mv[0][0][0];
        s->current_picture.motion_val[0][b_xy][1] = s->mv[0][0][1];
    }

455 456
intra:
    /* decode each block */
457
    if (s->mb_intra || HAS_CBP(h->mtype)) {
458
        s->bdsp.clear_blocks(s->block[0]);
459
        for (i = 0; i < 6; i++) {
460
            if (h261_decode_block(h, s->block[i], i, cbp & 32) < 0)
461
                return SLICE_ERROR;
462
            cbp += cbp;
463
        }
464
    } else {
465
        for (i = 0; i < 6; i++)
466
            s->block_last_index[i] = -1;
467 468
    }

469
    ff_mpv_decode_mb(s, s->block);
470 471 472 473 474

    return SLICE_OK;
}

/**
475
 * Decode the H.261 picture header.
476 477
 * @return <0 if no startcode found
 */
478 479 480
static int h261_decode_picture_header(H261Context *h)
{
    MpegEncContext *const s = &h->s;
481
    int format, i;
482
    uint32_t startcode = 0;
483

484
    for (i = get_bits_left(&s->gb); i > 24; i -= 1) {
485 486
        startcode = ((startcode << 1) | get_bits(&s->gb, 1)) & 0x000FFFFF;

487
        if (startcode == 0x10)
488 489 490
            break;
    }

491
    if (startcode != 0x10) {
492 493 494 495 496
        av_log(s->avctx, AV_LOG_ERROR, "Bad picture start code\n");
        return -1;
    }

    /* temporal reference */
497 498
    i = get_bits(&s->gb, 5); /* picture timestamp */
    if (i < (s->picture_number & 31))
499
        i += 32;
500
    s->picture_number = (s->picture_number & ~31) + i;
501

502
    s->avctx->framerate = (AVRational) { 30000, 1001 };
503 504 505 506 507 508 509 510

    /* PTYPE starts here */
    skip_bits1(&s->gb); /* split screen off */
    skip_bits1(&s->gb); /* camera  off */
    skip_bits1(&s->gb); /* freeze picture release off */

    format = get_bits1(&s->gb);

511 512 513 514 515
    // only 2 formats possible
    if (format == 0) { // QCIF
        s->width     = 176;
        s->height    = 144;
        s->mb_width  = 11;
516
        s->mb_height = 9;
517 518 519 520
    } else { // CIF
        s->width     = 352;
        s->height    = 288;
        s->mb_width  = 22;
521 522 523 524 525 526 527 528 529
        s->mb_height = 18;
    }

    s->mb_num = s->mb_width * s->mb_height;

    skip_bits1(&s->gb); /* still image mode off */
    skip_bits1(&s->gb); /* Reserved */

    /* PEI */
530 531
    if (skip_1stop_8data_bits(&s->gb) < 0)
        return AVERROR_INVALIDDATA;
532

533 534 535
    /* H.261 has no I-frames, but if we pass AV_PICTURE_TYPE_I for the first
     * frame, the codec crashes if it does not contain all I-blocks
     * (e.g. when a packet is lost). */
536
    s->pict_type = AV_PICTURE_TYPE_P;
537 538 539 540 541

    h->gob_number = 0;
    return 0;
}

542 543 544
static int h261_decode_gob(H261Context *h)
{
    MpegEncContext *const s = &h->s;
545 546 547 548

    ff_set_qscale(s, s->qscale);

    /* decode mb's */
549
    while (h->current_mba <= MBA_STUFFING) {
550 551
        int ret;
        /* DCT & quantize */
552 553 554
        ret = h261_decode_mb(h);
        if (ret < 0) {
            if (ret == SLICE_END) {
555 556 557
                h261_decode_mb_skipped(h, h->current_mba, 33);
                return 0;
            }
558 559
            av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n",
                   s->mb_x + s->mb_y * s->mb_stride);
560 561 562
            return -1;
        }

563 564 565
        h261_decode_mb_skipped(h,
                               h->current_mba - h->mba_diff,
                               h->current_mba - 1);
566 567 568 569 570 571 572 573
    }

    return -1;
}

/**
 * returns the number of bytes consumed for building the current frame
 */
574 575 576 577 578 579 580
static int get_consumed_bytes(MpegEncContext *s, int buf_size)
{
    int pos = get_bits_count(&s->gb) >> 3;
    if (pos == 0)
        pos = 1;      // avoid infinite loops (i doubt that is needed but ...)
    if (pos + 10 > buf_size)
        pos = buf_size;               // oops ;)
581 582 583 584

    return pos;
}

585 586
static int h261_decode_frame(AVCodecContext *avctx, void *data,
                             int *got_frame, AVPacket *avpkt)
587
{
588
    const uint8_t *buf = avpkt->data;
589 590 591
    int buf_size       = avpkt->size;
    H261Context *h     = avctx->priv_data;
    MpegEncContext *s  = &h->s;
592 593 594
    int ret;
    AVFrame *pict = data;

595 596
    ff_dlog(avctx, "*****frame %d size=%d\n", avctx->frame_number, buf_size);
    ff_dlog(avctx, "bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
597

598
    h->gob_start_code_skipped = 0;
599 600

retry:
601
    init_get_bits(&s->gb, buf, buf_size * 8);
602

603
    if (!s->context_initialized)
604
        // we need the IDCT permutaton for reading a custom matrix
605
        ff_mpv_idct_init(s);
606 607 608 609

    ret = h261_decode_picture_header(h);

    /* skip if the header was thrashed */
610
    if (ret < 0) {
611 612 613 614
        av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
        return -1;
    }

615 616 617
    if (s->width != avctx->coded_width || s->height != avctx->coded_height) {
        ParseContext pc = s->parse_context; // FIXME move this demuxing hack to libavformat
        s->parse_context.buffer = 0;
618
        ff_mpv_common_end(s);
619
        s->parse_context = pc;
620
    }
621

622
    if (!s->context_initialized) {
623
        if ((ret = ff_mpv_common_init(s)) < 0)
624 625
            return ret;

626 627 628
        ret = ff_set_dimensions(avctx, s->width, s->height);
        if (ret < 0)
            return ret;
629 630 631 632

        goto retry;
    }

633
    // for skipping the frame
634 635
    s->current_picture.f->pict_type = s->pict_type;
    s->current_picture.f->key_frame = s->pict_type == AV_PICTURE_TYPE_I;
636

637 638 639
    if ((avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B) ||
        (avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type != AV_PICTURE_TYPE_I) ||
         avctx->skip_frame >= AVDISCARD_ALL)
640 641
        return get_consumed_bytes(s, buf_size);

642
    if (ff_mpv_frame_start(s, avctx) < 0)
643 644
        return -1;

645
    ff_mpeg_er_frame_start(s);
646 647

    /* decode each macroblock */
648 649
    s->mb_x = 0;
    s->mb_y = 0;
650

651
    while (h->gob_number < (s->mb_height == 18 ? 12 : 5)) {
652
        if (h261_resync(h) < 0)
653 654 655
            break;
        h261_decode_gob(h);
    }
656
    ff_mpv_frame_end(s);
657

658 659
    av_assert0(s->current_picture.f->pict_type == s->current_picture_ptr->f->pict_type);
    av_assert0(s->current_picture.f->pict_type == s->pict_type);
660

661
    if ((ret = av_frame_ref(pict, s->current_picture_ptr->f)) < 0)
662
        return ret;
663
    ff_print_debug_info(s, s->current_picture_ptr, pict);
664

665
    *got_frame = 1;
666 667 668 669

    return get_consumed_bytes(s, buf_size);
}

670
static av_cold int h261_decode_end(AVCodecContext *avctx)
671
{
672
    H261Context *h    = avctx->priv_data;
673 674
    MpegEncContext *s = &h->s;

675
    ff_mpv_common_end(s);
676 677 678
    return 0;
}

679
AVCodec ff_h261_decoder = {
680
    .name           = "h261",
681
    .long_name      = NULL_IF_CONFIG_SMALL("H.261"),
682
    .type           = AVMEDIA_TYPE_VIDEO,
683
    .id             = AV_CODEC_ID_H261,
684 685 686 687
    .priv_data_size = sizeof(H261Context),
    .init           = h261_decode_init,
    .close          = h261_decode_end,
    .decode         = h261_decode_frame,
688
    .capabilities   = AV_CODEC_CAP_DR1,
689
    .max_lowres     = 3,
690
};