libavcodec/h261dec.c
d632239c
 /*
  * 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
  */
 
 /**
ba87f080
  * @file
d632239c
  * H.261 decoder.
  */
 
07732b4f
 #include "libavutil/avassert.h"
d632239c
 #include "avcodec.h"
7b9ef8d7
 #include "mpeg_er.h"
e0c16e4e
 #include "mpegutils.h"
d632239c
 #include "mpegvideo.h"
06e03fa0
 #include "h263.h"
d632239c
 #include "h261.h"
3b086317
 #include "internal.h"
d632239c
 
 #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;
 
b78f81c8
 static av_cold void h261_decode_init_vlc(H261Context *h)
 {
d632239c
     static int done = 0;
 
b78f81c8
     if (!done) {
d632239c
         done = 1;
78435e99
         INIT_VLC_STATIC(&h261_mba_vlc, H261_MBA_VLC_BITS, 35,
04b0fd7e
                         ff_h261_mba_bits, 1, 1,
                         ff_h261_mba_code, 1, 1, 662);
78435e99
         INIT_VLC_STATIC(&h261_mtype_vlc, H261_MTYPE_VLC_BITS, 10,
04b0fd7e
                         ff_h261_mtype_bits, 1, 1,
                         ff_h261_mtype_code, 1, 1, 80);
78435e99
         INIT_VLC_STATIC(&h261_mv_vlc, H261_MV_VLC_BITS, 17,
04b0fd7e
                         &ff_h261_mv_tab[0][1], 2, 1,
                         &ff_h261_mv_tab[0][0], 2, 1, 144);
78435e99
         INIT_VLC_STATIC(&h261_cbp_vlc, H261_CBP_VLC_BITS, 63,
04b0fd7e
                         &ff_h261_cbp_tab[0][1], 2, 1,
                         &ff_h261_cbp_tab[0][0], 2, 1, 512);
5735f768
         INIT_VLC_RL(ff_h261_rl_tcoeff, 552);
d632239c
     }
 }
 
b78f81c8
 static av_cold int h261_decode_init(AVCodecContext *avctx)
 {
     H261Context *h          = avctx->priv_data;
     MpegEncContext *const s = &h->s;
d632239c
 
     // set defaults
835f798c
     ff_mpv_decode_defaults(s);
4dee4a44
     ff_mpv_decode_init(s, avctx);
 
b78f81c8
     s->out_format  = FMT_H261;
     s->low_delay   = 1;
     avctx->pix_fmt = AV_PIX_FMT_YUV420P;
d632239c
 
20429ba9
     ff_h261_common_init();
d632239c
     h261_decode_init_vlc(h);
 
     h->gob_start_code_skipped = 0;
 
     return 0;
 }
 
 /**
58c42af7
  * Decode the group of blocks header or slice header.
d9526386
  * @return <0 if an error occurred
d632239c
  */
b78f81c8
 static int h261_decode_gob_header(H261Context *h)
 {
d632239c
     unsigned int val;
b78f81c8
     MpegEncContext *const s = &h->s;
d632239c
 
b78f81c8
     if (!h->gob_start_code_skipped) {
d632239c
         /* Check for GOB Start Code */
         val = show_bits(&s->gb, 15);
b78f81c8
         if (val)
d632239c
             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 */
b78f81c8
     s->qscale     = get_bits(&s->gb, 5); /* GQUANT */
d632239c
 
     /* Check if gob_number is valid */
b78f81c8
     if (s->mb_height == 18) { // CIF
         if ((h->gob_number <= 0) || (h->gob_number > 12))
d632239c
             return -1;
b78f81c8
     } else { // QCIF
         if ((h->gob_number != 1) && (h->gob_number != 3) &&
             (h->gob_number != 5))
d632239c
             return -1;
     }
 
     /* GEI */
711e9812
     if (skip_1stop_8data_bits(&s->gb) < 0)
         return AVERROR_INVALIDDATA;
d632239c
 
b78f81c8
     if (s->qscale == 0) {
ce98b0a4
         av_log(s->avctx, AV_LOG_ERROR, "qscale has forbidden 0 value\n");
0af8d207
         if (s->avctx->err_recognition & (AV_EF_BITSTREAM | AV_EF_COMPLIANT))
ce98b0a4
             return -1;
     }
d632239c
 
b78f81c8
     /* 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. */
d632239c
     h->current_mba = 0;
b78f81c8
     h->mba_diff    = 0;
d632239c
 
     return 0;
 }
 
 /**
58c42af7
  * Decode the group of blocks / video packet header.
d632239c
  * @return <0 if no resync found
  */
088f38a4
 static int h261_resync(H261Context *h)
b78f81c8
 {
     MpegEncContext *const s = &h->s;
d632239c
     int left, ret;
 
b78f81c8
     if (h->gob_start_code_skipped) {
         ret = h261_decode_gob_header(h);
         if (ret >= 0)
d632239c
             return 0;
b78f81c8
     } else {
         if (show_bits(&s->gb, 15) == 0) {
             ret = h261_decode_gob_header(h);
             if (ret >= 0)
d632239c
                 return 0;
         }
b78f81c8
         // OK, it is not where it is supposed to be ...
         s->gb = s->last_resync_gb;
d632239c
         align_get_bits(&s->gb);
b78f81c8
         left = get_bits_left(&s->gb);
d632239c
 
b78f81c8
         for (; left > 15 + 1 + 4 + 5; left -= 8) {
             if (show_bits(&s->gb, 15) == 0) {
                 GetBitContext bak = s->gb;
d632239c
 
b78f81c8
                 ret = h261_decode_gob_header(h);
                 if (ret >= 0)
d632239c
                     return 0;
 
b78f81c8
                 s->gb = bak;
d632239c
             }
             skip_bits(&s->gb, 8);
         }
     }
 
     return -1;
 }
 
 /**
58c42af7
  * Decode skipped macroblocks.
d632239c
  * @return 0
  */
b78f81c8
 static int h261_decode_mb_skipped(H261Context *h, int mba1, int mba2)
d632239c
 {
b78f81c8
     MpegEncContext *const s = &h->s;
d632239c
     int i;
 
     s->mb_intra = 0;
 
b78f81c8
     for (i = mba1; i < mba2; i++) {
d632239c
         int j, xy;
 
b78f81c8
         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;
d632239c
         ff_init_block_index(s);
         ff_update_block_index(s);
 
b78f81c8
         for (j = 0; j < 6; j++)
d632239c
             s->block_last_index[j] = -1;
 
b78f81c8
         s->mv_dir                      = MV_DIR_FORWARD;
         s->mv_type                     = MV_TYPE_16X16;
759001c5
         s->current_picture.mb_type[xy] = MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0;
b78f81c8
         s->mv[0][0][0]                 = 0;
         s->mv[0][0][1]                 = 0;
         s->mb_skipped                  = 1;
         h->mtype                      &= ~MB_TYPE_H261_FIL;
d632239c
 
61aca123
         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];
         }
 
835f798c
         ff_mpv_decode_mb(s, s->block);
d632239c
     }
 
     return 0;
 }
 
52cd84d4
 static const int mvmap[17] = {
     0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16
 };
 
b78f81c8
 static int decode_mv_component(GetBitContext *gb, int v)
 {
d632239c
     int mv_diff = get_vlc2(gb, h261_mv_vlc.table, H261_MV_VLC_BITS, 2);
 
     /* check if mv_diff is valid */
b78f81c8
     if (mv_diff < 0)
d632239c
         return v;
 
     mv_diff = mvmap[mv_diff];
 
b78f81c8
     if (mv_diff && !get_bits1(gb))
         mv_diff = -mv_diff;
d632239c
 
     v += mv_diff;
b78f81c8
     if (v <= -16)
         v += 32;
     else if (v >= 16)
         v -= 32;
d632239c
 
     return v;
 }
 
0404ec61
 /**
  * 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;
da0a670b
     int level, i, j, run;
473d1297
     RLTable *rl = &ff_h261_rl_tcoeff;
0404ec61
     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;
     }
da0a670b
     {
     OPEN_READER(re, &s->gb);
2a00812d
     i--; // offset by -1 to allow direct indexing of scan_table
0404ec61
     for (;;) {
da0a670b
         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) {
e8d0b84e
             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;
             }
0404ec61
             /* 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. */
c0d32686
             run   = SHOW_UBITS(re, &s->gb, 6) + 1;
da0a670b
             SKIP_CACHE(re, &s->gb, 6);
             level = SHOW_SBITS(re, &s->gb, 8);
             SKIP_COUNTER(re, &s->gb, 6 + 8);
         } else if (level == 0) {
0404ec61
             break;
         } else {
da0a670b
             if (SHOW_UBITS(re, &s->gb, 1))
0404ec61
                 level = -level;
da0a670b
             SKIP_COUNTER(re, &s->gb, 1);
0404ec61
         }
         i += run;
2a00812d
         if (i >= 64) {
36c00433
             CLOSE_READER(re, &s->gb);
0404ec61
             av_log(s->avctx, AV_LOG_ERROR, "run overflow at %dx%d\n",
                    s->mb_x, s->mb_y);
             return -1;
         }
2a00812d
         j        = scan_table[i];
0404ec61
         block[j] = level;
     }
da0a670b
     CLOSE_READER(re, &s->gb);
     }
2a00812d
     s->block_last_index[n] = i;
0404ec61
     return 0;
 }
 
b78f81c8
 static int h261_decode_mb(H261Context *h)
 {
     MpegEncContext *const s = &h->s;
c05065aa
     int i, cbp, xy;
d632239c
 
     cbp = 63;
     // Read mba
b78f81c8
     do {
         h->mba_diff = get_vlc2(&s->gb, h261_mba_vlc.table,
                                H261_MBA_VLC_BITS, 2);
d632239c
 
         /* Check for slice end */
         /* NOTE: GOB can be empty (no MB data) or exist only of MBA_stuffing */
b78f81c8
         if (h->mba_diff == MBA_STARTCODE) { // start code
d632239c
             h->gob_start_code_skipped = 1;
             return SLICE_END;
         }
b78f81c8
     } while (h->mba_diff == MBA_STUFFING); // stuffing
d632239c
 
b78f81c8
     if (h->mba_diff < 0) {
3574a85c
         if (get_bits_left(&s->gb) <= 7)
d632239c
             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;
     }
 
b78f81c8
     h->mba_diff    += 1;
d632239c
     h->current_mba += h->mba_diff;
 
b78f81c8
     if (h->current_mba > MBA_STUFFING)
d632239c
         return SLICE_ERROR;
 
b78f81c8
     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;
d632239c
     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);
ec3cd74f
     if (h->mtype < 0) {
c59967fa
         av_log(s->avctx, AV_LOG_ERROR, "Invalid mtype index %d\n",
                h->mtype);
ec3cd74f
         return SLICE_ERROR;
     }
bd710710
     av_assert0(h->mtype < FF_ARRAY_ELEMS(ff_h261_mtype_map));
5735f768
     h->mtype = ff_h261_mtype_map[h->mtype];
d632239c
 
     // Read mquant
b78f81c8
     if (IS_QUANT(h->mtype))
d632239c
         ff_set_qscale(s, get_bits(&s->gb, 5));
 
     s->mb_intra = IS_INTRA4x4(h->mtype);
 
     // Read mv
b78f81c8
     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)) {
d632239c
             h->current_mv_x = 0;
             h->current_mv_y = 0;
         }
 
b78f81c8
         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 {
d632239c
         h->current_mv_x = 0;
         h->current_mv_y = 0;
     }
 
     // Read cbp
b78f81c8
     if (HAS_CBP(h->mtype))
d632239c
         cbp = get_vlc2(&s->gb, h261_cbp_vlc.table, H261_CBP_VLC_BITS, 2) + 1;
 
b78f81c8
     if (s->mb_intra) {
759001c5
         s->current_picture.mb_type[xy] = MB_TYPE_INTRA;
d632239c
         goto intra;
     }
 
     //set motion vectors
b78f81c8
     s->mv_dir                      = MV_DIR_FORWARD;
     s->mv_type                     = MV_TYPE_16X16;
759001c5
     s->current_picture.mb_type[xy] = MB_TYPE_16x16 | MB_TYPE_L0;
b78f81c8
     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;
d632239c
 
4090d5ba
     if (s->current_picture.motion_val[0]) {
c05065aa
         int b_stride = 2*s->mb_width + 1;
         int b_xy     = 2 * s->mb_x + (2 * s->mb_y) * b_stride;
4090d5ba
         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];
     }
 
d632239c
 intra:
     /* decode each block */
b78f81c8
     if (s->mb_intra || HAS_CBP(h->mtype)) {
e74433a8
         s->bdsp.clear_blocks(s->block[0]);
d632239c
         for (i = 0; i < 6; i++) {
b78f81c8
             if (h261_decode_block(h, s->block[i], i, cbp & 32) < 0)
d632239c
                 return SLICE_ERROR;
b78f81c8
             cbp += cbp;
d632239c
         }
b78f81c8
     } else {
d632239c
         for (i = 0; i < 6; i++)
b78f81c8
             s->block_last_index[i] = -1;
d632239c
     }
 
835f798c
     ff_mpv_decode_mb(s, s->block);
d632239c
 
     return SLICE_OK;
 }
 
 /**
58c42af7
  * Decode the H.261 picture header.
d632239c
  * @return <0 if no startcode found
  */
b78f81c8
 static int h261_decode_picture_header(H261Context *h)
 {
     MpegEncContext *const s = &h->s;
d632239c
     int format, i;
b78f81c8
     uint32_t startcode = 0;
d632239c
 
b78f81c8
     for (i = get_bits_left(&s->gb); i > 24; i -= 1) {
d632239c
         startcode = ((startcode << 1) | get_bits(&s->gb, 1)) & 0x000FFFFF;
 
b78f81c8
         if (startcode == 0x10)
d632239c
             break;
     }
 
b78f81c8
     if (startcode != 0x10) {
d632239c
         av_log(s->avctx, AV_LOG_ERROR, "Bad picture start code\n");
         return -1;
     }
 
     /* temporal reference */
b78f81c8
     i = get_bits(&s->gb, 5); /* picture timestamp */
     if (i < (s->picture_number & 31))
d632239c
         i += 32;
b78f81c8
     s->picture_number = (s->picture_number & ~31) + i;
d632239c
 
7ea1b347
     s->avctx->framerate = (AVRational) { 30000, 1001 };
d632239c
 
     /* 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);
 
b78f81c8
     // only 2 formats possible
     if (format == 0) { // QCIF
         s->width     = 176;
         s->height    = 144;
         s->mb_width  = 11;
d632239c
         s->mb_height = 9;
b78f81c8
     } else { // CIF
         s->width     = 352;
         s->height    = 288;
         s->mb_width  = 22;
d632239c
         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 */
711e9812
     if (skip_1stop_8data_bits(&s->gb) < 0)
         return AVERROR_INVALIDDATA;
d632239c
 
b78f81c8
     /* 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). */
ce5e49b0
     s->pict_type = AV_PICTURE_TYPE_P;
d632239c
 
     h->gob_number = 0;
     return 0;
 }
 
b78f81c8
 static int h261_decode_gob(H261Context *h)
 {
     MpegEncContext *const s = &h->s;
d632239c
 
     ff_set_qscale(s, s->qscale);
 
     /* decode mb's */
b78f81c8
     while (h->current_mba <= MBA_STUFFING) {
d632239c
         int ret;
         /* DCT & quantize */
b78f81c8
         ret = h261_decode_mb(h);
         if (ret < 0) {
             if (ret == SLICE_END) {
d632239c
                 h261_decode_mb_skipped(h, h->current_mba, 33);
                 return 0;
             }
b78f81c8
             av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n",
                    s->mb_x + s->mb_y * s->mb_stride);
d632239c
             return -1;
         }
 
b78f81c8
         h261_decode_mb_skipped(h,
                                h->current_mba - h->mba_diff,
                                h->current_mba - 1);
d632239c
     }
 
     return -1;
 }
 
 /**
  * returns the number of bytes consumed for building the current frame
  */
b78f81c8
 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 ;)
d632239c
 
     return pos;
 }
 
b78f81c8
 static int h261_decode_frame(AVCodecContext *avctx, void *data,
                              int *got_frame, AVPacket *avpkt)
d632239c
 {
7a00bbad
     const uint8_t *buf = avpkt->data;
b78f81c8
     int buf_size       = avpkt->size;
     H261Context *h     = avctx->priv_data;
     MpegEncContext *s  = &h->s;
d632239c
     int ret;
     AVFrame *pict = data;
 
6a85dfc8
     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]);
d632239c
 
b78f81c8
     h->gob_start_code_skipped = 0;
d632239c
 
 retry:
b78f81c8
     init_get_bits(&s->gb, buf, buf_size * 8);
d632239c
 
552bc42d
     if (!s->context_initialized)
b78f81c8
         // we need the IDCT permutaton for reading a custom matrix
998c9f15
         ff_mpv_idct_init(s);
d632239c
 
     ret = h261_decode_picture_header(h);
 
     /* skip if the header was thrashed */
b78f81c8
     if (ret < 0) {
d632239c
         av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
         return -1;
     }
 
b78f81c8
     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;
835f798c
         ff_mpv_common_end(s);
b78f81c8
         s->parse_context = pc;
d632239c
     }
552bc42d
 
6c1ee1a1
     if (!s->context_initialized) {
835f798c
         if ((ret = ff_mpv_common_init(s)) < 0)
552bc42d
             return ret;
 
3b086317
         ret = ff_set_dimensions(avctx, s->width, s->height);
         if (ret < 0)
             return ret;
d632239c
 
         goto retry;
     }
 
8ed2ae09
     // for skipping the frame
f6774f90
     s->current_picture.f->pict_type = s->pict_type;
     s->current_picture.f->key_frame = s->pict_type == AV_PICTURE_TYPE_I;
d632239c
 
b78f81c8
     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)
d632239c
         return get_consumed_bytes(s, buf_size);
 
835f798c
     if (ff_mpv_frame_start(s, avctx) < 0)
d632239c
         return -1;
 
54974c62
     ff_mpeg_er_frame_start(s);
d632239c
 
     /* decode each macroblock */
b78f81c8
     s->mb_x = 0;
     s->mb_y = 0;
d632239c
 
b78f81c8
     while (h->gob_number < (s->mb_height == 18 ? 12 : 5)) {
088f38a4
         if (h261_resync(h) < 0)
d632239c
             break;
         h261_decode_gob(h);
     }
835f798c
     ff_mpv_frame_end(s);
d632239c
 
59a53842
     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);
324deaa2
 
f6774f90
     if ((ret = av_frame_ref(pict, s->current_picture_ptr->f)) < 0)
759001c5
         return ret;
53fd4f55
     ff_print_debug_info(s, s->current_picture_ptr, pict);
d632239c
 
df9b9567
     *got_frame = 1;
d632239c
 
     return get_consumed_bytes(s, buf_size);
 }
 
98a6fff9
 static av_cold int h261_decode_end(AVCodecContext *avctx)
d632239c
 {
b78f81c8
     H261Context *h    = avctx->priv_data;
d632239c
     MpegEncContext *s = &h->s;
 
835f798c
     ff_mpv_common_end(s);
d632239c
     return 0;
 }
 
e7e2df27
 AVCodec ff_h261_decoder = {
ec6402b7
     .name           = "h261",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("H.261"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_H261,
ec6402b7
     .priv_data_size = sizeof(H261Context),
     .init           = h261_decode_init,
     .close          = h261_decode_end,
     .decode         = h261_decode_frame,
     .capabilities   = CODEC_CAP_DR1,
5e50a572
     .max_lowres     = 3,
d632239c
 };