libavcodec/ituh263dec.c
fc53b6af
 /*
  * ITU H263 bitstream decoder
  * Copyright (c) 2000,2001 Fabrice Bellard
  * H263+ support.
  * Copyright (c) 2001 Juan J. Sierralta P
  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  *
  * 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
fc53b6af
  * h263 decoder.
  */
 
8e777603
 #define UNCHECKED_BITSTREAM_READER 1
fc53b6af
 #include <limits.h>
 
6fee1b90
 #include "libavutil/attributes.h"
0a49a62f
 #include "libavutil/imgutils.h"
218aefce
 #include "libavutil/internal.h"
0ebcdf5c
 #include "libavutil/mathematics.h"
fc53b6af
 #include "avcodec.h"
 #include "mpegvideo.h"
 #include "h263.h"
e3d0f49a
 #include "h263data.h"
6a85dfc8
 #include "internal.h"
fc53b6af
 #include "mathops.h"
e0c16e4e
 #include "mpegutils.h"
fc53b6af
 #include "unary.h"
 #include "flv.h"
e7af52a6
 #include "rv10.h"
fc53b6af
 #include "mpeg4video.h"
378a0008
 #include "mpegvideodata.h"
fc53b6af
 
 // The defines below define the number of bits that are read at once for
 // reading vlc values. Changing these may improve speed and data cache needs
 // be aware though that decreasing them may need the number of stages that is
 // passed to get_vlc* to be increased.
 #define MV_VLC_BITS 9
 #define H263_MBTYPE_B_VLC_BITS 6
 #define CBPC_B_VLC_BITS 3
 
 static const int h263_mb_type_b_map[15]= {
     MB_TYPE_DIRECT2 | MB_TYPE_L0L1,
     MB_TYPE_DIRECT2 | MB_TYPE_L0L1 | MB_TYPE_CBP,
     MB_TYPE_DIRECT2 | MB_TYPE_L0L1 | MB_TYPE_CBP | MB_TYPE_QUANT,
                       MB_TYPE_L0                                 | MB_TYPE_16x16,
                       MB_TYPE_L0   | MB_TYPE_CBP                 | MB_TYPE_16x16,
                       MB_TYPE_L0   | MB_TYPE_CBP | MB_TYPE_QUANT | MB_TYPE_16x16,
                       MB_TYPE_L1                                 | MB_TYPE_16x16,
                       MB_TYPE_L1   | MB_TYPE_CBP                 | MB_TYPE_16x16,
                       MB_TYPE_L1   | MB_TYPE_CBP | MB_TYPE_QUANT | MB_TYPE_16x16,
                       MB_TYPE_L0L1                               | MB_TYPE_16x16,
                       MB_TYPE_L0L1 | MB_TYPE_CBP                 | MB_TYPE_16x16,
                       MB_TYPE_L0L1 | MB_TYPE_CBP | MB_TYPE_QUANT | MB_TYPE_16x16,
     0, //stuffing
     MB_TYPE_INTRA4x4                | MB_TYPE_CBP,
     MB_TYPE_INTRA4x4                | MB_TYPE_CBP | MB_TYPE_QUANT,
 };
 
 void ff_h263_show_pict_info(MpegEncContext *s){
     if(s->avctx->debug&FF_DEBUG_PICT_INFO){
     av_log(s->avctx, AV_LOG_DEBUG, "qp:%d %c size:%d rnd:%d%s%s%s%s%s%s%s%s%s %d/%d\n",
301183d9
          s->qscale, av_get_picture_type_char(s->pict_type),
fc53b6af
          s->gb.size_in_bits, 1-s->no_rounding,
          s->obmc ? " AP" : "",
          s->umvplus ? " UMV" : "",
          s->h263_long_vectors ? " LONG" : "",
          s->h263_plus ? " +" : "",
          s->h263_aic ? " AIC" : "",
          s->alt_inter_vlc ? " AIV" : "",
          s->modified_quant ? " MQ" : "",
          s->loop_filter ? " LOOP" : "",
          s->h263_slice_structured ? " SS" : "",
7ea1b347
          s->avctx->framerate.num, s->avctx->framerate.den
fc53b6af
     );
     }
 }
 
 /***********************************************/
 /* decoding */
 
 VLC ff_h263_intra_MCBPC_vlc;
 VLC ff_h263_inter_MCBPC_vlc;
 VLC ff_h263_cbpy_vlc;
 static VLC mv_vlc;
 static VLC h263_mbtype_b_vlc;
 static VLC cbpc_b_vlc;
 
 /* init vlcs */
 
 /* XXX: find a better solution to handle static init */
6fee1b90
 av_cold void ff_h263_decode_init_vlc(void)
fc53b6af
 {
f44be0da
     static volatile int done = 0;
fc53b6af
 
     if (!done) {
         INIT_VLC_STATIC(&ff_h263_intra_MCBPC_vlc, INTRA_MCBPC_VLC_BITS, 9,
                  ff_h263_intra_MCBPC_bits, 1, 1,
                  ff_h263_intra_MCBPC_code, 1, 1, 72);
         INIT_VLC_STATIC(&ff_h263_inter_MCBPC_vlc, INTER_MCBPC_VLC_BITS, 28,
                  ff_h263_inter_MCBPC_bits, 1, 1,
                  ff_h263_inter_MCBPC_code, 1, 1, 198);
         INIT_VLC_STATIC(&ff_h263_cbpy_vlc, CBPY_VLC_BITS, 16,
                  &ff_h263_cbpy_tab[0][1], 2, 1,
                  &ff_h263_cbpy_tab[0][0], 2, 1, 64);
         INIT_VLC_STATIC(&mv_vlc, MV_VLC_BITS, 33,
ddce8953
                  &ff_mvtab[0][1], 2, 1,
                  &ff_mvtab[0][0], 2, 1, 538);
6f57375d
         ff_rl_init(&ff_h263_rl_inter, ff_h263_static_rl_table_store[0]);
         ff_rl_init(&ff_rl_intra_aic, ff_h263_static_rl_table_store[1]);
fc53b6af
         INIT_VLC_RL(ff_h263_rl_inter, 554);
ddce8953
         INIT_VLC_RL(ff_rl_intra_aic, 554);
fc53b6af
         INIT_VLC_STATIC(&h263_mbtype_b_vlc, H263_MBTYPE_B_VLC_BITS, 15,
ddce8953
                  &ff_h263_mbtype_b_tab[0][1], 2, 1,
                  &ff_h263_mbtype_b_tab[0][0], 2, 1, 80);
fc53b6af
         INIT_VLC_STATIC(&cbpc_b_vlc, CBPC_B_VLC_BITS, 4,
ddce8953
                  &ff_cbpc_b_tab[0][1], 2, 1,
                  &ff_cbpc_b_tab[0][0], 2, 1, 8);
f44be0da
         done = 1;
fc53b6af
     }
 }
 
 int ff_h263_decode_mba(MpegEncContext *s)
 {
     int i, mb_pos;
 
6f4cd33e
     for (i = 0; i < 6; i++)
         if (s->mb_num - 1 <= ff_mba_max[i])
             break;
     mb_pos  = get_bits(&s->gb, ff_mba_length[i]);
     s->mb_x = mb_pos % s->mb_width;
     s->mb_y = mb_pos / s->mb_width;
fc53b6af
 
     return mb_pos;
 }
 
 /**
58c42af7
  * Decode the group of blocks header or slice header.
fc53b6af
  * @return <0 if an error occurred
  */
 static int h263_decode_gob_header(MpegEncContext *s)
 {
e65ab9d9
     unsigned int val, gob_number;
fc53b6af
     int left;
 
     /* Check for GOB Start Code */
     val = show_bits(&s->gb, 16);
     if(val)
         return -1;
 
         /* We have a GBSC probably with GSTUFF */
     skip_bits(&s->gb, 16); /* Drop the zeros */
     left= get_bits_left(&s->gb);
     //MN: we must check the bits left or we might end in a infinite loop (or segfault)
     for(;left>13; left--){
         if(get_bits1(&s->gb)) break; /* Seek the '1' bit */
     }
     if(left<=13)
         return -1;
 
     if(s->h263_slice_structured){
fbdaebb2
         if(check_marker(&s->gb, "before MBA")==0)
fc53b6af
             return -1;
 
         ff_h263_decode_mba(s);
 
         if(s->mb_num > 1583)
fbdaebb2
             if(check_marker(&s->gb, "after MBA")==0)
fc53b6af
                 return -1;
 
         s->qscale = get_bits(&s->gb, 5); /* SQUANT */
fbdaebb2
         if(check_marker(&s->gb, "after SQUANT")==0)
fc53b6af
             return -1;
e65ab9d9
         skip_bits(&s->gb, 2); /* GFID */
fc53b6af
     }else{
         gob_number = get_bits(&s->gb, 5); /* GN */
         s->mb_x= 0;
         s->mb_y= s->gob_index* gob_number;
e65ab9d9
         skip_bits(&s->gb, 2); /* GFID */
fc53b6af
         s->qscale = get_bits(&s->gb, 5); /* GQUANT */
     }
 
     if(s->mb_y >= s->mb_height)
         return -1;
 
     if(s->qscale==0)
         return -1;
 
     return 0;
 }
 
 /**
58c42af7
  * Decode the group of blocks / video packet header.
fc53b6af
  * @return bit position of the resync_marker, or <0 if none was found
  */
 int ff_h263_resync(MpegEncContext *s){
     int left, pos, ret;
 
36ef5369
     if(s->codec_id==AV_CODEC_ID_MPEG4){
fc53b6af
         skip_bits1(&s->gb);
         align_get_bits(&s->gb);
     }
 
     if(show_bits(&s->gb, 16)==0){
         pos= get_bits_count(&s->gb);
36ef5369
         if(CONFIG_MPEG4_DECODER && s->codec_id==AV_CODEC_ID_MPEG4)
ee8af2dd
             ret= ff_mpeg4_decode_video_packet_header(s->avctx->priv_data);
fc53b6af
         else
             ret= h263_decode_gob_header(s);
         if(ret>=0)
             return pos;
     }
     //OK, it's not where it is supposed to be ...
     s->gb= s->last_resync_gb;
     align_get_bits(&s->gb);
     left= get_bits_left(&s->gb);
 
     for(;left>16+1+5+5; left-=8){
         if(show_bits(&s->gb, 16)==0){
             GetBitContext bak= s->gb;
 
             pos= get_bits_count(&s->gb);
36ef5369
             if(CONFIG_MPEG4_DECODER && s->codec_id==AV_CODEC_ID_MPEG4)
ee8af2dd
                 ret= ff_mpeg4_decode_video_packet_header(s->avctx->priv_data);
fc53b6af
             else
                 ret= h263_decode_gob_header(s);
             if(ret>=0)
                 return pos;
 
             s->gb= bak;
         }
         skip_bits(&s->gb, 8);
     }
 
     return -1;
 }
 
ddce8953
 int ff_h263_decode_motion(MpegEncContext * s, int pred, int f_code)
fc53b6af
 {
aa498fef
     int code, val, sign, shift;
fc53b6af
     code = get_vlc2(&s->gb, mv_vlc.table, MV_VLC_BITS, 2);
 
     if (code == 0)
         return pred;
     if (code < 0)
         return 0xffff;
 
     sign = get_bits1(&s->gb);
     shift = f_code - 1;
     val = code;
     if (shift) {
         val = (val - 1) << shift;
         val |= get_bits(&s->gb, shift);
         val++;
     }
     if (sign)
         val = -val;
     val += pred;
 
     /* modulo decoding */
     if (!s->h263_long_vectors) {
aa498fef
         val = sign_extend(val, 5 + f_code);
fc53b6af
     } else {
         /* horrible h263 long vector mode */
         if (pred < -31 && val < -63)
             val += 64;
         if (pred > 32 && val > 63)
             val -= 64;
 
     }
     return val;
 }
 
 
58c42af7
 /* Decode RVLC of H.263+ UMV */
fc53b6af
 static int h263p_decode_umotion(MpegEncContext * s, int pred)
 {
    int code = 0, sign;
 
    if (get_bits1(&s->gb)) /* Motion difference = 0 */
       return pred;
 
    code = 2 + get_bits1(&s->gb);
 
    while (get_bits1(&s->gb))
    {
       code <<= 1;
       code += get_bits1(&s->gb);
    }
    sign = code & 1;
    code >>= 1;
 
    code = (sign) ? (pred - code) : (pred + code);
7b94a2f4
    ff_tlog(s->avctx,"H.263+ UMV Motion = %d\n", code);
fc53b6af
    return code;
 
 }
 
 /**
  * read the next MVs for OBMC. yes this is a ugly hack, feel free to send a patch :)
  */
 static void preview_obmc(MpegEncContext *s){
     GetBitContext gb= s->gb;
 
     int cbpc, i, pred_x, pred_y, mx, my;
     int16_t *mot_val;
     const int xy= s->mb_x + 1 + s->mb_y * s->mb_stride;
     const int stride= s->b8_stride*2;
 
     for(i=0; i<4; i++)
         s->block_index[i]+= 2;
     for(i=4; i<6; i++)
         s->block_index[i]+= 1;
     s->mb_x++;
 
91ce7c21
     av_assert2(s->pict_type == AV_PICTURE_TYPE_P);
fc53b6af
 
     do{
         if (get_bits1(&s->gb)) {
             /* skip mb */
759001c5
             mot_val = s->current_picture.motion_val[0][s->block_index[0]];
fc53b6af
             mot_val[0       ]= mot_val[2       ]=
             mot_val[0+stride]= mot_val[2+stride]= 0;
             mot_val[1       ]= mot_val[3       ]=
             mot_val[1+stride]= mot_val[3+stride]= 0;
 
759001c5
             s->current_picture.mb_type[xy] = MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0;
fc53b6af
             goto end;
         }
         cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
     }while(cbpc == 20);
 
     if(cbpc & 4){
759001c5
         s->current_picture.mb_type[xy] = MB_TYPE_INTRA;
fc53b6af
     }else{
         get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
         if (cbpc & 8) {
             if(s->modified_quant){
                 if(get_bits1(&s->gb)) skip_bits(&s->gb, 1);
                 else                  skip_bits(&s->gb, 5);
             }else
                 skip_bits(&s->gb, 2);
         }
 
         if ((cbpc & 16) == 0) {
759001c5
                 s->current_picture.mb_type[xy] = MB_TYPE_16x16 | MB_TYPE_L0;
fc53b6af
                 /* 16x16 motion prediction */
ddce8953
                 mot_val= ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
fc53b6af
                 if (s->umvplus)
                    mx = h263p_decode_umotion(s, pred_x);
                 else
ddce8953
                    mx = ff_h263_decode_motion(s, pred_x, 1);
fc53b6af
 
                 if (s->umvplus)
                    my = h263p_decode_umotion(s, pred_y);
                 else
ddce8953
                    my = ff_h263_decode_motion(s, pred_y, 1);
fc53b6af
 
                 mot_val[0       ]= mot_val[2       ]=
                 mot_val[0+stride]= mot_val[2+stride]= mx;
                 mot_val[1       ]= mot_val[3       ]=
                 mot_val[1+stride]= mot_val[3+stride]= my;
         } else {
759001c5
             s->current_picture.mb_type[xy] = MB_TYPE_8x8 | MB_TYPE_L0;
fc53b6af
             for(i=0;i<4;i++) {
ddce8953
                 mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
fc53b6af
                 if (s->umvplus)
                   mx = h263p_decode_umotion(s, pred_x);
                 else
ddce8953
                   mx = ff_h263_decode_motion(s, pred_x, 1);
fc53b6af
 
                 if (s->umvplus)
                   my = h263p_decode_umotion(s, pred_y);
                 else
ddce8953
                   my = ff_h263_decode_motion(s, pred_y, 1);
fc53b6af
                 if (s->umvplus && (mx - pred_x) == 1 && (my - pred_y) == 1)
                   skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */
                 mot_val[0] = mx;
                 mot_val[1] = my;
             }
         }
     }
 end:
 
     for(i=0; i<4; i++)
         s->block_index[i]-= 2;
     for(i=4; i<6; i++)
         s->block_index[i]-= 1;
     s->mb_x--;
 
     s->gb= gb;
 }
 
 static void h263_decode_dquant(MpegEncContext *s){
     static const int8_t quant_tab[4] = { -1, -2, 1, 2 };
 
     if(s->modified_quant){
         if(get_bits1(&s->gb))
ddce8953
             s->qscale= ff_modified_quant_tab[get_bits1(&s->gb)][ s->qscale ];
fc53b6af
         else
             s->qscale= get_bits(&s->gb, 5);
     }else
         s->qscale += quant_tab[get_bits(&s->gb, 2)];
     ff_set_qscale(s, s->qscale);
 }
 
88bd7fdc
 static int h263_decode_block(MpegEncContext * s, int16_t * block,
fc53b6af
                              int n, int coded)
 {
93545310
     int level, i, j, run;
fc53b6af
     RLTable *rl = &ff_h263_rl_inter;
     const uint8_t *scan_table;
     GetBitContext gb= s->gb;
 
     scan_table = s->intra_scantable.permutated;
     if (s->h263_aic && s->mb_intra) {
ddce8953
         rl = &ff_rl_intra_aic;
fc53b6af
         i = 0;
         if (s->ac_pred) {
             if (s->h263_aic_dir)
                 scan_table = s->intra_v_scantable.permutated; /* left */
             else
                 scan_table = s->intra_h_scantable.permutated; /* top */
         }
     } else if (s->mb_intra) {
         /* DC coef */
c01ccccb
         if (CONFIG_RV10_DECODER && s->codec_id == AV_CODEC_ID_RV10) {
ce5e49b0
           if (s->rv10_version == 3 && s->pict_type == AV_PICTURE_TYPE_I) {
fc53b6af
             int component, diff;
             component = (n <= 3 ? 0 : n - 4 + 1);
             level = s->last_dc[component];
             if (s->rv10_first_dc_coded[component]) {
6c28d657
                 diff = ff_rv_decode_dc(s, n);
fc53b6af
                 if (diff == 0xffff)
                     return -1;
                 level += diff;
                 level = level & 0xff; /* handle wrap round */
                 s->last_dc[component] = level;
             } else {
                 s->rv10_first_dc_coded[component] = 1;
             }
           } else {
                 level = get_bits(&s->gb, 8);
                 if (level == 255)
                     level = 128;
           }
         }else{
             level = get_bits(&s->gb, 8);
             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);
d5227cef
                 if (s->avctx->err_recognition & (AV_EF_BITSTREAM|AV_EF_COMPLIANT))
fc53b6af
                     return -1;
             }
             if (level == 255)
                 level = 128;
         }
         block[0] = level;
         i = 1;
     } else {
         i = 0;
     }
     if (!coded) {
         if (s->mb_intra && s->h263_aic)
             goto not_coded;
         s->block_last_index[n] = i - 1;
         return 0;
     }
 retry:
da0a670b
     {
     OPEN_READER(re, &s->gb);
2a00812d
     i--; // offset by -1 to allow direct indexing of scan_table
fc53b6af
     for(;;) {
da0a670b
         UPDATE_CACHE(re, &s->gb);
         GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_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;
             }
fc53b6af
             /* escape */
             if (CONFIG_FLV_DECODER && s->h263_flv > 1) {
da0a670b
                 int is11 = SHOW_UBITS(re, &s->gb, 1);
                 SKIP_CACHE(re, &s->gb, 1);
93545310
                 run = SHOW_UBITS(re, &s->gb, 7) + 1;
da0a670b
                 if (is11) {
93545310
                     SKIP_COUNTER(re, &s->gb, 1 + 7);
da0a670b
                     UPDATE_CACHE(re, &s->gb);
                     level = SHOW_SBITS(re, &s->gb, 11);
93545310
                     SKIP_COUNTER(re, &s->gb, 11);
da0a670b
                 } else {
93545310
                     SKIP_CACHE(re, &s->gb, 7);
da0a670b
                     level = SHOW_SBITS(re, &s->gb, 7);
93545310
                     SKIP_COUNTER(re, &s->gb, 1 + 7 + 7);
da0a670b
                 }
fc53b6af
             } else {
93545310
                 run = SHOW_UBITS(re, &s->gb, 7) + 1;
                 SKIP_CACHE(re, &s->gb, 7);
da0a670b
                 level = (int8_t)SHOW_UBITS(re, &s->gb, 8);
93545310
                 SKIP_COUNTER(re, &s->gb, 7 + 8);
fc53b6af
                 if(level == -128){
da0a670b
                     UPDATE_CACHE(re, &s->gb);
36ef5369
                     if (s->codec_id == AV_CODEC_ID_RV10) {
fc53b6af
                         /* XXX: should patch encoder too */
da0a670b
                         level = SHOW_SBITS(re, &s->gb, 12);
                         SKIP_COUNTER(re, &s->gb, 12);
fc53b6af
                     }else{
da0a670b
                         level = SHOW_UBITS(re, &s->gb, 5);
                         SKIP_CACHE(re, &s->gb, 5);
                         level |= SHOW_SBITS(re, &s->gb, 6)<<5;
                         SKIP_COUNTER(re, &s->gb, 5 + 6);
fc53b6af
                     }
                 }
             }
         } else {
da0a670b
             if (SHOW_UBITS(re, &s->gb, 1))
fc53b6af
                 level = -level;
da0a670b
             SKIP_COUNTER(re, &s->gb, 1);
fc53b6af
         }
         i += run;
2a00812d
         if (i >= 64){
36c00433
             CLOSE_READER(re, &s->gb);
2a00812d
             // redo update without last flag, revert -1 offset
             i = i - run + ((run-1)&63) + 1;
93545310
             if (i < 64) {
                 // only last marker, no overrun
                 block[scan_table[i]] = level;
                 break;
             }
fc53b6af
             if(s->alt_inter_vlc && rl == &ff_h263_rl_inter && !s->mb_intra){
                 //Looks like a hack but no, it's the way it is supposed to work ...
ddce8953
                 rl = &ff_rl_intra_aic;
fc53b6af
                 i = 0;
                 s->gb= gb;
e74433a8
                 s->bdsp.clear_block(block);
fc53b6af
                 goto retry;
             }
             av_log(s->avctx, AV_LOG_ERROR, "run overflow at %dx%d i:%d\n", s->mb_x, s->mb_y, s->mb_intra);
             return -1;
         }
2a00812d
         j = scan_table[i];
fc53b6af
         block[j] = level;
     }
da0a670b
     }
fc53b6af
 not_coded:
     if (s->mb_intra && s->h263_aic) {
ddce8953
         ff_h263_pred_acdc(s, block, n);
fc53b6af
         i = 63;
     }
     s->block_last_index[n] = i;
     return 0;
 }
 
 static int h263_skip_b_part(MpegEncContext *s, int cbp)
 {
88bd7fdc
     LOCAL_ALIGNED_16(int16_t, dblock, [64]);
fc53b6af
     int i, mbi;
623184af
     int bli[6];
fc53b6af
 
     /* we have to set s->mb_intra to zero to decode B-part of PB-frame correctly
      * but real value should be restored in order to be used later (in OBMC condition)
      */
     mbi = s->mb_intra;
623184af
     memcpy(bli, s->block_last_index, sizeof(bli));
fc53b6af
     s->mb_intra = 0;
     for (i = 0; i < 6; i++) {
         if (h263_decode_block(s, dblock, i, cbp&32) < 0)
             return -1;
         cbp+=cbp;
     }
     s->mb_intra = mbi;
623184af
     memcpy(s->block_last_index, bli, sizeof(bli));
fc53b6af
     return 0;
 }
 
 static int h263_get_modb(GetBitContext *gb, int pb_frame, int *cbpb)
 {
     int c, mv = 1;
 
     if (pb_frame < 3) { // h.263 Annex G and i263 PB-frame
         c = get_bits1(gb);
         if (pb_frame == 2 && c)
             mv = !get_bits1(gb);
     } else { // h.263 Annex M improved PB-frame
         mv = get_unary(gb, 0, 4) + 1;
         c = mv & 1;
         mv = !!(mv & 2);
     }
     if(c)
         *cbpb = get_bits(gb, 6);
     return mv;
 }
 
 int ff_h263_decode_mb(MpegEncContext *s,
88bd7fdc
                       int16_t block[6][64])
fc53b6af
 {
     int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant;
     int16_t *mot_val;
     const int xy= s->mb_x + s->mb_y * s->mb_stride;
     int cbpb = 0, pb_mv_count = 0;
 
c8f4c83e
     av_assert2(!s->h263_pred);
fc53b6af
 
ce5e49b0
     if (s->pict_type == AV_PICTURE_TYPE_P) {
fc53b6af
         do{
             if (get_bits1(&s->gb)) {
                 /* skip mb */
                 s->mb_intra = 0;
                 for(i=0;i<6;i++)
                     s->block_last_index[i] = -1;
                 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;
fc53b6af
                 s->mv[0][0][0] = 0;
                 s->mv[0][0][1] = 0;
                 s->mb_skipped = !(s->obmc | s->loop_filter);
                 goto end;
             }
             cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
             if (cbpc < 0){
                 av_log(s->avctx, AV_LOG_ERROR, "cbpc damaged at %d %d\n", s->mb_x, s->mb_y);
                 return -1;
             }
         }while(cbpc == 20);
 
e74433a8
         s->bdsp.clear_blocks(s->block[0]);
fc53b6af
 
         dquant = cbpc & 8;
         s->mb_intra = ((cbpc & 4) != 0);
         if (s->mb_intra) goto intra;
 
         if(s->pb_frame && get_bits1(&s->gb))
             pb_mv_count = h263_get_modb(&s->gb, s->pb_frame, &cbpb);
         cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
 
         if(s->alt_inter_vlc==0 || (cbpc & 3)!=3)
             cbpy ^= 0xF;
 
         cbp = (cbpc & 3) | (cbpy << 2);
         if (dquant) {
             h263_decode_dquant(s);
         }
 
         s->mv_dir = MV_DIR_FORWARD;
         if ((cbpc & 16) == 0) {
759001c5
             s->current_picture.mb_type[xy] = MB_TYPE_16x16 | MB_TYPE_L0;
fc53b6af
             /* 16x16 motion prediction */
             s->mv_type = MV_TYPE_16X16;
ddce8953
             ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
fc53b6af
             if (s->umvplus)
                mx = h263p_decode_umotion(s, pred_x);
             else
ddce8953
                mx = ff_h263_decode_motion(s, pred_x, 1);
fc53b6af
 
             if (mx >= 0xffff)
                 return -1;
 
             if (s->umvplus)
                my = h263p_decode_umotion(s, pred_y);
             else
ddce8953
                my = ff_h263_decode_motion(s, pred_y, 1);
fc53b6af
 
             if (my >= 0xffff)
                 return -1;
             s->mv[0][0][0] = mx;
             s->mv[0][0][1] = my;
 
             if (s->umvplus && (mx - pred_x) == 1 && (my - pred_y) == 1)
                skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */
         } else {
759001c5
             s->current_picture.mb_type[xy] = MB_TYPE_8x8 | MB_TYPE_L0;
fc53b6af
             s->mv_type = MV_TYPE_8X8;
             for(i=0;i<4;i++) {
ddce8953
                 mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
fc53b6af
                 if (s->umvplus)
                   mx = h263p_decode_umotion(s, pred_x);
                 else
ddce8953
                   mx = ff_h263_decode_motion(s, pred_x, 1);
fc53b6af
                 if (mx >= 0xffff)
                     return -1;
 
                 if (s->umvplus)
                   my = h263p_decode_umotion(s, pred_y);
                 else
ddce8953
                   my = ff_h263_decode_motion(s, pred_y, 1);
fc53b6af
                 if (my >= 0xffff)
                     return -1;
                 s->mv[0][i][0] = mx;
                 s->mv[0][i][1] = my;
                 if (s->umvplus && (mx - pred_x) == 1 && (my - pred_y) == 1)
                   skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */
                 mot_val[0] = mx;
                 mot_val[1] = my;
             }
         }
ce5e49b0
     } else if(s->pict_type==AV_PICTURE_TYPE_B) {
fc53b6af
         int mb_type;
         const int stride= s->b8_stride;
759001c5
         int16_t *mot_val0 = s->current_picture.motion_val[0][2 * (s->mb_x + s->mb_y * stride)];
         int16_t *mot_val1 = s->current_picture.motion_val[1][2 * (s->mb_x + s->mb_y * stride)];
fc53b6af
 //        const int mv_xy= s->mb_x + 1 + s->mb_y * s->mb_stride;
 
         //FIXME ugly
         mot_val0[0       ]= mot_val0[2       ]= mot_val0[0+2*stride]= mot_val0[2+2*stride]=
         mot_val0[1       ]= mot_val0[3       ]= mot_val0[1+2*stride]= mot_val0[3+2*stride]=
         mot_val1[0       ]= mot_val1[2       ]= mot_val1[0+2*stride]= mot_val1[2+2*stride]=
         mot_val1[1       ]= mot_val1[3       ]= mot_val1[1+2*stride]= mot_val1[3+2*stride]= 0;
 
         do{
             mb_type= get_vlc2(&s->gb, h263_mbtype_b_vlc.table, H263_MBTYPE_B_VLC_BITS, 2);
             if (mb_type < 0){
                 av_log(s->avctx, AV_LOG_ERROR, "b mb_type damaged at %d %d\n", s->mb_x, s->mb_y);
                 return -1;
             }
 
             mb_type= h263_mb_type_b_map[ mb_type ];
         }while(!mb_type);
 
         s->mb_intra = IS_INTRA(mb_type);
         if(HAS_CBP(mb_type)){
e74433a8
             s->bdsp.clear_blocks(s->block[0]);
fc53b6af
             cbpc = get_vlc2(&s->gb, cbpc_b_vlc.table, CBPC_B_VLC_BITS, 1);
             if(s->mb_intra){
                 dquant = IS_QUANT(mb_type);
                 goto intra;
             }
 
             cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
 
             if (cbpy < 0){
                 av_log(s->avctx, AV_LOG_ERROR, "b cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
                 return -1;
             }
 
             if(s->alt_inter_vlc==0 || (cbpc & 3)!=3)
                 cbpy ^= 0xF;
 
             cbp = (cbpc & 3) | (cbpy << 2);
         }else
             cbp=0;
 
c8f4c83e
         av_assert2(!s->mb_intra);
fc53b6af
 
         if(IS_QUANT(mb_type)){
             h263_decode_dquant(s);
         }
 
         if(IS_DIRECT(mb_type)){
             s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT;
             mb_type |= ff_mpeg4_set_direct_mv(s, 0, 0);
         }else{
             s->mv_dir = 0;
             s->mv_type= MV_TYPE_16X16;
 //FIXME UMV
 
             if(USES_LIST(mb_type, 0)){
ddce8953
                 int16_t *mot_val= ff_h263_pred_motion(s, 0, 0, &mx, &my);
fc53b6af
                 s->mv_dir = MV_DIR_FORWARD;
 
ddce8953
                 mx = ff_h263_decode_motion(s, mx, 1);
                 my = ff_h263_decode_motion(s, my, 1);
fc53b6af
 
                 s->mv[0][0][0] = mx;
                 s->mv[0][0][1] = my;
                 mot_val[0       ]= mot_val[2       ]= mot_val[0+2*stride]= mot_val[2+2*stride]= mx;
                 mot_val[1       ]= mot_val[3       ]= mot_val[1+2*stride]= mot_val[3+2*stride]= my;
             }
 
             if(USES_LIST(mb_type, 1)){
ddce8953
                 int16_t *mot_val= ff_h263_pred_motion(s, 0, 1, &mx, &my);
fc53b6af
                 s->mv_dir |= MV_DIR_BACKWARD;
 
ddce8953
                 mx = ff_h263_decode_motion(s, mx, 1);
                 my = ff_h263_decode_motion(s, my, 1);
fc53b6af
 
                 s->mv[1][0][0] = mx;
                 s->mv[1][0][1] = my;
                 mot_val[0       ]= mot_val[2       ]= mot_val[0+2*stride]= mot_val[2+2*stride]= mx;
                 mot_val[1       ]= mot_val[3       ]= mot_val[1+2*stride]= mot_val[3+2*stride]= my;
             }
         }
 
759001c5
         s->current_picture.mb_type[xy] = mb_type;
fc53b6af
     } else { /* I-Frame */
         do{
             cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2);
             if (cbpc < 0){
                 av_log(s->avctx, AV_LOG_ERROR, "I cbpc damaged at %d %d\n", s->mb_x, s->mb_y);
                 return -1;
             }
         }while(cbpc == 8);
 
e74433a8
         s->bdsp.clear_blocks(s->block[0]);
fc53b6af
 
         dquant = cbpc & 4;
         s->mb_intra = 1;
 intra:
759001c5
         s->current_picture.mb_type[xy] = MB_TYPE_INTRA;
fc53b6af
         if (s->h263_aic) {
             s->ac_pred = get_bits1(&s->gb);
             if(s->ac_pred){
759001c5
                 s->current_picture.mb_type[xy] = MB_TYPE_INTRA | MB_TYPE_ACPRED;
fc53b6af
 
                 s->h263_aic_dir = get_bits1(&s->gb);
             }
         }else
             s->ac_pred = 0;
 
         if(s->pb_frame && get_bits1(&s->gb))
             pb_mv_count = h263_get_modb(&s->gb, s->pb_frame, &cbpb);
         cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
         if(cbpy<0){
             av_log(s->avctx, AV_LOG_ERROR, "I cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
             return -1;
         }
         cbp = (cbpc & 3) | (cbpy << 2);
         if (dquant) {
             h263_decode_dquant(s);
         }
 
         pb_mv_count += !!s->pb_frame;
     }
 
     while(pb_mv_count--){
ddce8953
         ff_h263_decode_motion(s, 0, 1);
         ff_h263_decode_motion(s, 0, 1);
fc53b6af
     }
 
     /* decode each block */
     for (i = 0; i < 6; i++) {
         if (h263_decode_block(s, block[i], i, cbp&32) < 0)
             return -1;
         cbp+=cbp;
     }
 
     if(s->pb_frame && h263_skip_b_part(s, cbpb) < 0)
         return -1;
     if(s->obmc && !s->mb_intra){
ce5e49b0
         if(s->pict_type == AV_PICTURE_TYPE_P && s->mb_x+1<s->mb_width && s->mb_num_left != 1)
fc53b6af
             preview_obmc(s);
     }
 end:
 
         /* per-MB end of slice check */
     {
         int v= show_bits(&s->gb, 16);
 
3574a85c
         if (get_bits_left(&s->gb) < 16) {
             v >>= 16 - get_bits_left(&s->gb);
fc53b6af
         }
 
         if(v==0)
             return SLICE_END;
     }
 
     return SLICE_OK;
 }
 
 /* most is hardcoded. should extend to handle all h263 streams */
ddce8953
 int ff_h263_decode_picture_header(MpegEncContext *s)
fc53b6af
 {
0a49a62f
     int format, width, height, i, ret;
fc53b6af
     uint32_t startcode;
 
     align_get_bits(&s->gb);
 
f55a7ba0
     if (show_bits(&s->gb, 2) == 2 && s->avctx->frame_number == 0) {
          av_log(s->avctx, AV_LOG_WARNING, "Header looks like RTP instead of H.263\n");
     }
 
fc53b6af
     startcode= get_bits(&s->gb, 22-8);
 
     for(i= get_bits_left(&s->gb); i>24; i-=8) {
         startcode = ((startcode << 8) | get_bits(&s->gb, 8)) & 0x003FFFFF;
 
         if(startcode == 0x20)
             break;
     }
 
     if (startcode != 0x20) {
         av_log(s->avctx, AV_LOG_ERROR, "Bad picture start code\n");
         return -1;
     }
     /* temporal reference */
     i = get_bits(&s->gb, 8); /* picture timestamp */
     if( (s->picture_number&~0xFF)+i < s->picture_number)
         i+= 256;
     s->picture_number= (s->picture_number&~0xFF) + i;
 
     /* PTYPE starts here */
fbdaebb2
     if (check_marker(&s->gb, "in PTYPE") != 1) {
fc53b6af
         return -1;
     }
     if (get_bits1(&s->gb) != 0) {
         av_log(s->avctx, AV_LOG_ERROR, "Bad H263 id\n");
         return -1;      /* h263 id */
     }
     skip_bits1(&s->gb);         /* split screen off */
     skip_bits1(&s->gb);         /* camera  off */
     skip_bits1(&s->gb);         /* freeze picture release off */
 
     format = get_bits(&s->gb, 3);
     /*
         0    forbidden
         1    sub-QCIF
         10   QCIF
         7       extended PTYPE (PLUSPTYPE)
     */
 
     if (format != 7 && format != 6) {
         s->h263_plus = 0;
         /* H.263v1 */
ddce8953
         width = ff_h263_format[format][0];
         height = ff_h263_format[format][1];
fc53b6af
         if (!width)
             return -1;
 
ce5e49b0
         s->pict_type = AV_PICTURE_TYPE_I + get_bits1(&s->gb);
fc53b6af
 
         s->h263_long_vectors = get_bits1(&s->gb);
 
         if (get_bits1(&s->gb) != 0) {
             av_log(s->avctx, AV_LOG_ERROR, "H263 SAC not supported\n");
             return -1; /* SAC: off */
         }
         s->obmc= get_bits1(&s->gb); /* Advanced prediction mode */
         s->unrestricted_mv = s->h263_long_vectors || s->obmc;
 
         s->pb_frame = get_bits1(&s->gb);
         s->chroma_qscale= s->qscale = get_bits(&s->gb, 5);
         skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */
 
         s->width = width;
         s->height = height;
         s->avctx->sample_aspect_ratio= (AVRational){12,11};
7ea1b347
         s->avctx->framerate = (AVRational){ 30000, 1001 };
fc53b6af
     } else {
         int ufep;
 
         /* H.263v2 */
         s->h263_plus = 1;
         ufep = get_bits(&s->gb, 3); /* Update Full Extended PTYPE */
 
         /* ufep other than 0 and 1 are reserved */
         if (ufep == 1) {
             /* OPPTYPE */
             format = get_bits(&s->gb, 3);
6a85dfc8
             ff_dlog(s->avctx, "ufep=1, format: %d\n", format);
fc53b6af
             s->custom_pcf= get_bits1(&s->gb);
             s->umvplus = get_bits1(&s->gb); /* Unrestricted Motion Vector */
             if (get_bits1(&s->gb) != 0) {
                 av_log(s->avctx, AV_LOG_ERROR, "Syntax-based Arithmetic Coding (SAC) not supported\n");
             }
             s->obmc= get_bits1(&s->gb); /* Advanced prediction mode */
             s->h263_aic = get_bits1(&s->gb); /* Advanced Intra Coding (AIC) */
             s->loop_filter= get_bits1(&s->gb);
             s->unrestricted_mv = s->umvplus || s->obmc || s->loop_filter;
cc229d4e
             if(s->avctx->lowres)
                 s->loop_filter = 0;
fc53b6af
 
             s->h263_slice_structured= get_bits1(&s->gb);
             if (get_bits1(&s->gb) != 0) {
                 av_log(s->avctx, AV_LOG_ERROR, "Reference Picture Selection not supported\n");
             }
             if (get_bits1(&s->gb) != 0) {
                 av_log(s->avctx, AV_LOG_ERROR, "Independent Segment Decoding not supported\n");
             }
             s->alt_inter_vlc= get_bits1(&s->gb);
             s->modified_quant= get_bits1(&s->gb);
             if(s->modified_quant)
                 s->chroma_qscale_table= ff_h263_chroma_qscale_table;
 
             skip_bits(&s->gb, 1); /* Prevent start code emulation */
 
             skip_bits(&s->gb, 3); /* Reserved */
         } else if (ufep != 0) {
             av_log(s->avctx, AV_LOG_ERROR, "Bad UFEP type (%d)\n", ufep);
             return -1;
         }
 
         /* MPPTYPE */
         s->pict_type = get_bits(&s->gb, 3);
         switch(s->pict_type){
ce5e49b0
         case 0: s->pict_type= AV_PICTURE_TYPE_I;break;
         case 1: s->pict_type= AV_PICTURE_TYPE_P;break;
         case 2: s->pict_type= AV_PICTURE_TYPE_P;s->pb_frame = 3;break;
         case 3: s->pict_type= AV_PICTURE_TYPE_B;break;
         case 7: s->pict_type= AV_PICTURE_TYPE_I;break; //ZYGO
fc53b6af
         default:
             return -1;
         }
         skip_bits(&s->gb, 2);
         s->no_rounding = get_bits1(&s->gb);
         skip_bits(&s->gb, 4);
 
         /* Get the picture dimensions */
         if (ufep) {
             if (format == 6) {
                 /* Custom Picture Format (CPFMT) */
                 s->aspect_ratio_info = get_bits(&s->gb, 4);
6a85dfc8
                 ff_dlog(s->avctx, "aspect: %d\n", s->aspect_ratio_info);
fc53b6af
                 /* aspect ratios:
                 0 - forbidden
                 1 - 1:1
                 2 - 12:11 (CIF 4:3)
                 3 - 10:11 (525-type 4:3)
                 4 - 16:11 (CIF 16:9)
                 5 - 40:33 (525-type 16:9)
                 6-14 - reserved
                 */
                 width = (get_bits(&s->gb, 9) + 1) * 4;
fbdaebb2
                 check_marker(&s->gb, "in dimensions");
fc53b6af
                 height = get_bits(&s->gb, 9) * 4;
6a85dfc8
                 ff_dlog(s->avctx, "\nH.263+ Custom picture: %dx%d\n",width,height);
fc53b6af
                 if (s->aspect_ratio_info == FF_ASPECT_EXTENDED) {
                     /* aspected dimensions */
                     s->avctx->sample_aspect_ratio.num= get_bits(&s->gb, 8);
                     s->avctx->sample_aspect_ratio.den= get_bits(&s->gb, 8);
                 }else{
                     s->avctx->sample_aspect_ratio= ff_h263_pixel_aspect[s->aspect_ratio_info];
                 }
             } else {
ddce8953
                 width = ff_h263_format[format][0];
                 height = ff_h263_format[format][1];
fc53b6af
                 s->avctx->sample_aspect_ratio= (AVRational){12,11};
             }
7495186f
             s->avctx->sample_aspect_ratio.den <<= s->ehc_mode;
fc53b6af
             if ((width == 0) || (height == 0))
                 return -1;
             s->width = width;
             s->height = height;
 
             if(s->custom_pcf){
                 int gcd;
7ea1b347
                 s->avctx->framerate.num  = 1800000;
                 s->avctx->framerate.den  = 1000 + get_bits1(&s->gb);
                 s->avctx->framerate.den *= get_bits(&s->gb, 7);
                 if(s->avctx->framerate.den == 0){
fc53b6af
                     av_log(s, AV_LOG_ERROR, "zero framerate\n");
                     return -1;
                 }
7ea1b347
                 gcd= av_gcd(s->avctx->framerate.den, s->avctx->framerate.num);
                 s->avctx->framerate.den /= gcd;
                 s->avctx->framerate.num /= gcd;
fc53b6af
             }else{
7ea1b347
                 s->avctx->framerate = (AVRational){ 30000, 1001 };
fc53b6af
             }
         }
 
         if(s->custom_pcf){
             skip_bits(&s->gb, 2); //extended Temporal reference
         }
 
         if (ufep) {
             if (s->umvplus) {
                 if(get_bits1(&s->gb)==0) /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */
                     skip_bits1(&s->gb);
             }
             if(s->h263_slice_structured){
                 if (get_bits1(&s->gb) != 0) {
                     av_log(s->avctx, AV_LOG_ERROR, "rectangular slices not supported\n");
                 }
                 if (get_bits1(&s->gb) != 0) {
                     av_log(s->avctx, AV_LOG_ERROR, "unordered slices not supported\n");
                 }
             }
         }
 
         s->qscale = get_bits(&s->gb, 5);
     }
 
0a49a62f
     if ((ret = av_image_check_size(s->width, s->height, 0, s)) < 0)
         return ret;
 
fc53b6af
     s->mb_width = (s->width  + 15) / 16;
     s->mb_height = (s->height  + 15) / 16;
     s->mb_num = s->mb_width * s->mb_height;
 
     if (s->pb_frame) {
         skip_bits(&s->gb, 3); /* Temporal reference for B-pictures */
         if (s->custom_pcf)
             skip_bits(&s->gb, 2); //extended Temporal reference
         skip_bits(&s->gb, 2); /* Quantization information for B-pictures */
     }
 
46c78429
     if (s->pict_type!=AV_PICTURE_TYPE_B) {
1f05dcba
         s->time            = s->picture_number;
         s->pp_time         = s->time - s->last_non_b_time;
         s->last_non_b_time = s->time;
46c78429
     }else{
1f05dcba
         s->time    = s->picture_number;
         s->pb_time = s->pp_time - (s->last_non_b_time - s->time);
         if (s->pp_time <=s->pb_time ||
             s->pp_time <= s->pp_time - s->pb_time ||
             s->pp_time <= 0){
46c78429
             s->pp_time = 2;
             s->pb_time = 1;
         }
         ff_mpeg4_init_direct_mv(s);
     }
 
fc53b6af
     /* PEI */
f4d31271
     if (skip_1stop_8data_bits(&s->gb) < 0)
         return AVERROR_INVALIDDATA;
fc53b6af
 
     if(s->h263_slice_structured){
fbdaebb2
         if (check_marker(&s->gb, "SEPB1") != 1) {
fc53b6af
             return -1;
         }
 
         ff_h263_decode_mba(s);
 
fbdaebb2
         if (check_marker(&s->gb, "SEPB2") != 1) {
fc53b6af
             return -1;
         }
     }
     s->f_code = 1;
 
     if(s->h263_aic){
          s->y_dc_scale_table=
          s->c_dc_scale_table= ff_aic_dc_scale_table;
     }else{
         s->y_dc_scale_table=
         s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
     }
 
         ff_h263_show_pict_info(s);
e93d911e
     if (s->pict_type == AV_PICTURE_TYPE_I && s->codec_tag == AV_RL32("ZYGO") && get_bits_left(&s->gb) >= 85 + 13*3*16 + 50){
fc53b6af
         int i,j;
         for(i=0; i<85; i++) av_log(s->avctx, AV_LOG_DEBUG, "%d", get_bits1(&s->gb));
         av_log(s->avctx, AV_LOG_DEBUG, "\n");
         for(i=0; i<13; i++){
             for(j=0; j<3; j++){
                 int v= get_bits(&s->gb, 8);
                 v |= get_sbits(&s->gb, 8)<<8;
                 av_log(s->avctx, AV_LOG_DEBUG, " %5d", v);
             }
             av_log(s->avctx, AV_LOG_DEBUG, "\n");
         }
         for(i=0; i<50; i++) av_log(s->avctx, AV_LOG_DEBUG, "%d", get_bits1(&s->gb));
     }
 
     return 0;
 }