h261.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:29k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * H261 decoder
  3.  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  4.  * Copyright (c) 2004 Maarten Daniels
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. /**
  21.  * @file h261.c
  22.  * h261codec.
  23.  */
  24. #include "common.h"
  25. #include "dsputil.h"
  26. #include "avcodec.h"
  27. #include "mpegvideo.h"
  28. #include "h261data.h"
  29. #define H261_MBA_VLC_BITS 9
  30. #define H261_MTYPE_VLC_BITS 6
  31. #define H261_MV_VLC_BITS 7
  32. #define H261_CBP_VLC_BITS 9
  33. #define TCOEFF_VLC_BITS 9
  34. #define MBA_STUFFING 33
  35. #define MBA_STARTCODE 34
  36. #define IS_FIL(a)    ((a)&MB_TYPE_H261_FIL)
  37. /**
  38.  * H261Context
  39.  */
  40. typedef struct H261Context{
  41.     MpegEncContext s;
  42.     int current_mba;
  43.     int previous_mba;
  44.     int mba_diff;
  45.     int mtype;
  46.     int current_mv_x;
  47.     int current_mv_y;
  48.     int gob_number;
  49.     int gob_start_code_skipped; // 1 if gob start code is already read before gob header is read
  50. }H261Context;
  51. void ff_h261_loop_filter(MpegEncContext *s){
  52.     H261Context * h= (H261Context*)s;
  53.     const int linesize  = s->linesize;
  54.     const int uvlinesize= s->uvlinesize;
  55.     uint8_t *dest_y = s->dest[0];
  56.     uint8_t *dest_cb= s->dest[1];
  57.     uint8_t *dest_cr= s->dest[2];
  58.     if(!(IS_FIL (h->mtype)))
  59.         return;
  60.     s->dsp.h261_loop_filter(dest_y                   , linesize);
  61.     s->dsp.h261_loop_filter(dest_y                + 8, linesize);
  62.     s->dsp.h261_loop_filter(dest_y + 8 * linesize    , linesize);
  63.     s->dsp.h261_loop_filter(dest_y + 8 * linesize + 8, linesize);
  64.     s->dsp.h261_loop_filter(dest_cb, uvlinesize);
  65.     s->dsp.h261_loop_filter(dest_cr, uvlinesize);
  66. }
  67. static int ff_h261_get_picture_format(int width, int height){
  68.     // QCIF
  69.     if (width == 176 && height == 144)
  70.         return 0;
  71.     // CIF
  72.     else if (width == 352 && height == 288)
  73.         return 1;
  74.     // ERROR
  75.     else
  76.         return -1;
  77. }
  78. static void h261_encode_block(H261Context * h, DCTELEM * block,
  79.                               int n);
  80. static int h261_decode_block(H261Context *h, DCTELEM *block,
  81.                              int n, int coded);
  82. void ff_h261_encode_picture_header(MpegEncContext * s, int picture_number){
  83.     H261Context * h = (H261Context *) s;
  84.     int format, temp_ref;
  85.     align_put_bits(&s->pb);
  86.     /* Update the pointer to last GOB */
  87.     s->ptr_lastgob = pbBufPtr(&s->pb);
  88.     put_bits(&s->pb, 20, 0x10); /* PSC */
  89.     temp_ref= s->picture_number * (int64_t)30000 * s->avctx->time_base.num / 
  90.                          (1001 * (int64_t)s->avctx->time_base.den); //FIXME maybe this should use a timestamp
  91.     put_bits(&s->pb, 5, temp_ref & 0x1f); /* TemporalReference */
  92.     put_bits(&s->pb, 1, 0); /* split screen off */
  93.     put_bits(&s->pb, 1, 0); /* camera  off */
  94.     put_bits(&s->pb, 1, 0); /* freeze picture release off */
  95.     
  96.     format = ff_h261_get_picture_format(s->width, s->height);
  97.     
  98.     put_bits(&s->pb, 1, format); /* 0 == QCIF, 1 == CIF */
  99.     put_bits(&s->pb, 1, 0); /* still image mode */
  100.     put_bits(&s->pb, 1, 0); /* reserved */
  101.     put_bits(&s->pb, 1, 0); /* no PEI */    
  102.     if(format == 0)
  103.         h->gob_number = -1;
  104.     else
  105.         h->gob_number = 0;
  106.     h->current_mba = 0;
  107. }
  108. /**
  109.  * Encodes a group of blocks header.
  110.  */
  111. static void h261_encode_gob_header(MpegEncContext * s, int mb_line){
  112.     H261Context * h = (H261Context *)s;
  113.     if(ff_h261_get_picture_format(s->width, s->height) == 0){
  114.         h->gob_number+=2; // QCIF
  115.     }
  116.     else{
  117.         h->gob_number++; // CIF
  118.     }
  119.     put_bits(&s->pb, 16, 1); /* GBSC */
  120.     put_bits(&s->pb, 4, h->gob_number); /* GN */
  121.     put_bits(&s->pb, 5, s->qscale); /* GQUANT */
  122.     put_bits(&s->pb, 1, 0); /* no GEI */
  123.     h->current_mba = 0;
  124.     h->previous_mba = 0;
  125.     h->current_mv_x=0;
  126.     h->current_mv_y=0;
  127. }
  128. void ff_h261_reorder_mb_index(MpegEncContext* s){
  129.     int index= s->mb_x + s->mb_y*s->mb_width;
  130.     if(index % 33 == 0)
  131.         h261_encode_gob_header(s,0);
  132.     /* for CIF the GOB's are fragmented in the middle of a scanline
  133.        that's why we need to adjust the x and y index of the macroblocks */
  134.     if(ff_h261_get_picture_format(s->width,s->height) == 1){ // CIF
  135.         s->mb_x =     index % 11 ; index /= 11;
  136.         s->mb_y =     index %  3 ; index /=  3;
  137.         s->mb_x+= 11*(index %  2); index /=  2;
  138.         s->mb_y+=  3*index;
  139.         
  140.         ff_init_block_index(s);
  141.         ff_update_block_index(s);
  142.     }
  143. }
  144. static void h261_encode_motion(H261Context * h, int val){
  145.     MpegEncContext * const s = &h->s;
  146.     int sign, code;
  147.     if(val==0){
  148.         code = 0;
  149.         put_bits(&s->pb,h261_mv_tab[code][1],h261_mv_tab[code][0]);
  150.     } 
  151.     else{
  152.         if(val > 15)
  153.             val -=32;
  154.         if(val < -16)
  155.             val+=32;
  156.         sign = val < 0;
  157.         code = sign ? -val : val; 
  158.         put_bits(&s->pb,h261_mv_tab[code][1],h261_mv_tab[code][0]);
  159.         put_bits(&s->pb,1,sign);
  160.     }
  161. }
  162. static inline int get_cbp(MpegEncContext * s,
  163.                       DCTELEM block[6][64])
  164. {
  165.     int i, cbp;
  166.     cbp= 0;
  167.     for (i = 0; i < 6; i++) {
  168.         if (s->block_last_index[i] >= 0)
  169.             cbp |= 1 << (5 - i);
  170.     }
  171.     return cbp;
  172. }
  173. void ff_h261_encode_mb(MpegEncContext * s,
  174.          DCTELEM block[6][64],
  175.          int motion_x, int motion_y)
  176. {
  177.     H261Context * h = (H261Context *)s;
  178.     int mvd, mv_diff_x, mv_diff_y, i, cbp;
  179.     cbp = 63; // avoid warning
  180.     mvd = 0;
  181.  
  182.     h->current_mba++;
  183.     h->mtype = 0;
  184.  
  185.     if (!s->mb_intra){
  186.         /* compute cbp */
  187.         cbp= get_cbp(s, block);
  188.    
  189.         /* mvd indicates if this block is motion compensated */
  190.         mvd = motion_x | motion_y;
  191.         if((cbp | mvd | s->dquant ) == 0) {
  192.             /* skip macroblock */
  193.             s->skip_count++;
  194.             h->current_mv_x=0;
  195.             h->current_mv_y=0;
  196.             return;
  197.         }
  198.     }
  199.     /* MB is not skipped, encode MBA */
  200.     put_bits(&s->pb, h261_mba_bits[(h->current_mba-h->previous_mba)-1], h261_mba_code[(h->current_mba-h->previous_mba)-1]);
  201.  
  202.     /* calculate MTYPE */
  203.     if(!s->mb_intra){
  204.         h->mtype++;
  205.         
  206.         if(mvd || s->loop_filter)
  207.             h->mtype+=3;
  208.         if(s->loop_filter)
  209.             h->mtype+=3;
  210.         if(cbp || s->dquant)
  211.             h->mtype++;
  212.         assert(h->mtype > 1);
  213.     }
  214.     if(s->dquant) 
  215.         h->mtype++;
  216.     put_bits(&s->pb, h261_mtype_bits[h->mtype], h261_mtype_code[h->mtype]);
  217.  
  218.     h->mtype = h261_mtype_map[h->mtype];
  219.  
  220.     if(IS_QUANT(h->mtype)){
  221.         ff_set_qscale(s,s->qscale+s->dquant);
  222.         put_bits(&s->pb, 5, s->qscale);
  223.     }
  224.  
  225.     if(IS_16X16(h->mtype)){
  226.         mv_diff_x = (motion_x >> 1) - h->current_mv_x;
  227.         mv_diff_y = (motion_y >> 1) - h->current_mv_y;
  228.         h->current_mv_x = (motion_x >> 1);
  229.         h->current_mv_y = (motion_y >> 1);
  230.         h261_encode_motion(h,mv_diff_x);
  231.         h261_encode_motion(h,mv_diff_y);
  232.     }
  233.  
  234.     h->previous_mba = h->current_mba;
  235.  
  236.     if(HAS_CBP(h->mtype)){
  237.         put_bits(&s->pb,h261_cbp_tab[cbp-1][1],h261_cbp_tab[cbp-1][0]); 
  238.     }
  239.     for(i=0; i<6; i++) {
  240.         /* encode each block */
  241.         h261_encode_block(h, block[i], i);
  242.     }
  243.     if ( ( h->current_mba == 11 ) || ( h->current_mba == 22 ) || ( h->current_mba == 33 ) || ( !IS_16X16 ( h->mtype ) )){
  244.         h->current_mv_x=0;
  245.         h->current_mv_y=0;
  246.     }
  247. }
  248. void ff_h261_encode_init(MpegEncContext *s){
  249.     static int done = 0;
  250.     
  251.     if (!done) {
  252.         done = 1;
  253.         init_rl(&h261_rl_tcoeff, 1);
  254.     }
  255.     s->min_qcoeff= -127;
  256.     s->max_qcoeff=  127;
  257.     s->y_dc_scale_table=
  258.     s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
  259. }
  260. /**
  261.  * encodes a 8x8 block.
  262.  * @param block the 8x8 block
  263.  * @param n block index (0-3 are luma, 4-5 are chroma)
  264.  */
  265. static void h261_encode_block(H261Context * h, DCTELEM * block, int n){
  266.     MpegEncContext * const s = &h->s;
  267.     int level, run, last, i, j, last_index, last_non_zero, sign, slevel, code;
  268.     RLTable *rl;
  269.     rl = &h261_rl_tcoeff;
  270.     if (s->mb_intra) {
  271.         /* DC coef */
  272.         level = block[0];
  273.         /* 255 cannot be represented, so we clamp */
  274.         if (level > 254) {
  275.             level = 254;
  276.             block[0] = 254;
  277.         }
  278.         /* 0 cannot be represented also */
  279.         else if (level < 1) {
  280.             level = 1;
  281.             block[0] = 1;
  282.         }
  283.         if (level == 128)
  284.             put_bits(&s->pb, 8, 0xff);
  285.         else
  286.             put_bits(&s->pb, 8, level);
  287.         i = 1;
  288.     } else if((block[0]==1 || block[0] == -1) && (s->block_last_index[n] > -1)){
  289.         //special case
  290.         put_bits(&s->pb,2,block[0]>0 ? 2 : 3 );
  291.         i = 1;
  292.     } else {
  293.         i = 0;
  294.     }
  295.    
  296.     /* AC coefs */
  297.     last_index = s->block_last_index[n];
  298.     last_non_zero = i - 1;
  299.     for (; i <= last_index; i++) {
  300.         j = s->intra_scantable.permutated[i];
  301.         level = block[j];
  302.         if (level) {
  303.             run = i - last_non_zero - 1;
  304.             last = (i == last_index);
  305.             sign = 0;
  306.             slevel = level;
  307.             if (level < 0) {
  308.                 sign = 1;
  309.                 level = -level;
  310.             }
  311.             code = get_rl_index(rl, 0 /*no last in H.261, EOB is used*/, run, level);
  312.             if(run==0 && level < 16)
  313.             code+=1;
  314.             put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]);
  315.             if (code == rl->n) {
  316.                 put_bits(&s->pb, 6, run);
  317.                 assert(slevel != 0);
  318.                 assert(level <= 127);
  319.                 put_bits(&s->pb, 8, slevel & 0xff);
  320.             } else {
  321.                 put_bits(&s->pb, 1, sign);
  322.             }
  323.             last_non_zero = i;
  324.         }
  325.     }
  326.     if(last_index > -1){
  327.         put_bits(&s->pb, rl->table_vlc[0][1], rl->table_vlc[0][0]);// END OF BLOCK
  328.     }
  329. }
  330. /***********************************************/
  331. /* decoding */
  332. static VLC h261_mba_vlc;
  333. static VLC h261_mtype_vlc;
  334. static VLC h261_mv_vlc;
  335. static VLC h261_cbp_vlc;
  336. void init_vlc_rl(RLTable *rl, int use_static);
  337. static void h261_decode_init_vlc(H261Context *h){
  338.     static int done = 0;
  339.     if(!done){
  340.         done = 1;
  341.         init_vlc(&h261_mba_vlc, H261_MBA_VLC_BITS, 35,
  342.                  h261_mba_bits, 1, 1,
  343.                  h261_mba_code, 1, 1, 1);
  344.         init_vlc(&h261_mtype_vlc, H261_MTYPE_VLC_BITS, 10,
  345.                  h261_mtype_bits, 1, 1,
  346.                  h261_mtype_code, 1, 1, 1);
  347.         init_vlc(&h261_mv_vlc, H261_MV_VLC_BITS, 17,
  348.                  &h261_mv_tab[0][1], 2, 1,
  349.                  &h261_mv_tab[0][0], 2, 1, 1);
  350.         init_vlc(&h261_cbp_vlc, H261_CBP_VLC_BITS, 63,
  351.                  &h261_cbp_tab[0][1], 2, 1,
  352.                  &h261_cbp_tab[0][0], 2, 1, 1);
  353.         init_rl(&h261_rl_tcoeff, 1);
  354.         init_vlc_rl(&h261_rl_tcoeff, 1);
  355.     }
  356. }
  357. static int h261_decode_init(AVCodecContext *avctx){
  358.     H261Context *h= avctx->priv_data;
  359.     MpegEncContext * const s = &h->s;
  360.     // set defaults
  361.     MPV_decode_defaults(s);
  362.     s->avctx = avctx;
  363.     s->width  = s->avctx->coded_width;
  364.     s->height = s->avctx->coded_height;
  365.     s->codec_id = s->avctx->codec->id;
  366.     s->out_format = FMT_H261;
  367.     s->low_delay= 1;
  368.     avctx->pix_fmt= PIX_FMT_YUV420P;
  369.     s->codec_id= avctx->codec->id;
  370.     h261_decode_init_vlc(h);
  371.     h->gob_start_code_skipped = 0;
  372.     
  373.     return 0;
  374. }
  375. /**
  376.  * decodes the group of blocks header or slice header.
  377.  * @return <0 if an error occured
  378.  */
  379. static int h261_decode_gob_header(H261Context *h){
  380.     unsigned int val;
  381.     MpegEncContext * const s = &h->s;
  382.     
  383.     if ( !h->gob_start_code_skipped ){
  384.         /* Check for GOB Start Code */
  385.         val = show_bits(&s->gb, 15);
  386.         if(val)
  387.             return -1;
  388.         /* We have a GBSC */
  389.         skip_bits(&s->gb, 16);
  390.     }
  391.     h->gob_start_code_skipped = 0;
  392.     h->gob_number = get_bits(&s->gb, 4); /* GN */
  393.     s->qscale = get_bits(&s->gb, 5); /* GQUANT */
  394.     /* Check if gob_number is valid */
  395.     if (s->mb_height==18){ //cif
  396.         if ((h->gob_number<=0) || (h->gob_number>12))
  397.             return -1;
  398.     }
  399.     else{ //qcif
  400.         if ((h->gob_number!=1) && (h->gob_number!=3) && (h->gob_number!=5))
  401.             return -1;
  402.     }
  403.     /* GEI */
  404.     while (get_bits1(&s->gb) != 0) {
  405.         skip_bits(&s->gb, 8);
  406.     }
  407.     if(s->qscale==0)
  408.         return -1;
  409.     // For the first transmitted macroblock in a GOB, MBA is the absolute address. For
  410.     // subsequent macroblocks, MBA is the difference between the absolute addresses of
  411.     // the macroblock and the last transmitted macroblock.
  412.     h->current_mba = 0;
  413.     h->mba_diff = 0;
  414.     return 0;
  415. }
  416. /**
  417.  * decodes the group of blocks / video packet header.
  418.  * @return <0 if no resync found
  419.  */
  420. static int ff_h261_resync(H261Context *h){
  421.     MpegEncContext * const s = &h->s;
  422.     int left, ret;
  423.     if ( h->gob_start_code_skipped ){
  424.         ret= h261_decode_gob_header(h);
  425.         if(ret>=0)
  426.             return 0;
  427.     }
  428.     else{
  429.         if(show_bits(&s->gb, 15)==0){
  430.             ret= h261_decode_gob_header(h);
  431.             if(ret>=0)
  432.                 return 0;
  433.         }
  434.         //ok, its not where its supposed to be ...
  435.         s->gb= s->last_resync_gb;
  436.         align_get_bits(&s->gb);
  437.         left= s->gb.size_in_bits - get_bits_count(&s->gb);
  438.         for(;left>15+1+4+5; left-=8){
  439.             if(show_bits(&s->gb, 15)==0){
  440.                 GetBitContext bak= s->gb;
  441.                 ret= h261_decode_gob_header(h);
  442.                 if(ret>=0)
  443.                     return 0;
  444.                 s->gb= bak;
  445.             }
  446.             skip_bits(&s->gb, 8);
  447.         }
  448.     }
  449.     return -1;
  450. }
  451. /**
  452.  * decodes skipped macroblocks
  453.  * @return 0
  454.  */
  455. static int h261_decode_mb_skipped(H261Context *h, int mba1, int mba2 )
  456. {
  457.     MpegEncContext * const s = &h->s;
  458.     int i;
  459.     
  460.     s->mb_intra = 0;
  461.     for(i=mba1; i<mba2; i++){
  462.         int j, xy;
  463.         s->mb_x= ((h->gob_number-1) % 2) * 11 + i % 11;
  464.         s->mb_y= ((h->gob_number-1) / 2) * 3 + i / 11;
  465.         xy = s->mb_x + s->mb_y * s->mb_stride;
  466.         ff_init_block_index(s);
  467.         ff_update_block_index(s);
  468.         for(j=0;j<6;j++)
  469.             s->block_last_index[j] = -1;
  470.         s->mv_dir = MV_DIR_FORWARD;
  471.         s->mv_type = MV_TYPE_16X16;
  472.         s->current_picture.mb_type[xy]= MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0;
  473.         s->mv[0][0][0] = 0;
  474.         s->mv[0][0][1] = 0;
  475.         s->mb_skipped = 1;
  476.         h->mtype &= ~MB_TYPE_H261_FIL;
  477.         MPV_decode_mb(s, s->block);
  478.     }
  479.     return 0;
  480. }
  481. static int decode_mv_component(GetBitContext *gb, int v){
  482.     int mv_diff = get_vlc2(gb, h261_mv_vlc.table, H261_MV_VLC_BITS, 2);
  483.     /* check if mv_diff is valid */
  484.     if ( mv_diff < 0 )
  485.         return v;
  486.     mv_diff = mvmap[mv_diff];
  487.     if(mv_diff && !get_bits1(gb))
  488.         mv_diff= -mv_diff;
  489.     
  490.     v += mv_diff;
  491.     if     (v <=-16) v+= 32;
  492.     else if(v >= 16) v-= 32;
  493.     return v;
  494. }
  495. static int h261_decode_mb(H261Context *h){
  496.     MpegEncContext * const s = &h->s;
  497.     int i, cbp, xy;
  498.     cbp = 63;
  499.     // Read mba
  500.     do{
  501.         h->mba_diff = get_vlc2(&s->gb, h261_mba_vlc.table, H261_MBA_VLC_BITS, 2);
  502.         /* Check for slice end */
  503.         /* NOTE: GOB can be empty (no MB data) or exist only of MBA_stuffing */
  504.         if (h->mba_diff == MBA_STARTCODE){ // start code
  505.             h->gob_start_code_skipped = 1;
  506.             return SLICE_END;
  507.         }
  508.     }
  509.     while( h->mba_diff == MBA_STUFFING ); // stuffing
  510.     if ( h->mba_diff < 0 ){
  511.         if ( get_bits_count(&s->gb) + 7 >= s->gb.size_in_bits )
  512.             return SLICE_END;
  513.         av_log(s->avctx, AV_LOG_ERROR, "illegal mba at %d %dn", s->mb_x, s->mb_y);
  514.         return SLICE_ERROR;
  515.     }
  516.     h->mba_diff += 1;
  517.     h->current_mba += h->mba_diff;
  518.     if ( h->current_mba > MBA_STUFFING )
  519.         return SLICE_ERROR;
  520.     
  521.     s->mb_x= ((h->gob_number-1) % 2) * 11 + ((h->current_mba-1) % 11);
  522.     s->mb_y= ((h->gob_number-1) / 2) * 3 + ((h->current_mba-1) / 11);
  523.     xy = s->mb_x + s->mb_y * s->mb_stride;
  524.     ff_init_block_index(s);
  525.     ff_update_block_index(s);
  526.     // Read mtype
  527.     h->mtype = get_vlc2(&s->gb, h261_mtype_vlc.table, H261_MTYPE_VLC_BITS, 2);
  528.     h->mtype = h261_mtype_map[h->mtype];
  529.     // Read mquant
  530.     if ( IS_QUANT ( h->mtype ) ){
  531.         ff_set_qscale(s, get_bits(&s->gb, 5));
  532.     }
  533.     s->mb_intra = IS_INTRA4x4(h->mtype);
  534.     // Read mv
  535.     if ( IS_16X16 ( h->mtype ) ){
  536.         // Motion vector data is included for all MC macroblocks. MVD is obtained from the macroblock vector by subtracting the
  537.         // vector of the preceding macroblock. For this calculation the vector of the preceding macroblock is regarded as zero in the
  538.         // following three situations:
  539.         // 1) evaluating MVD for macroblocks 1, 12 and 23;
  540.         // 2) evaluating MVD for macroblocks in which MBA does not represent a difference of 1;
  541.         // 3) MTYPE of the previous macroblock was not MC.
  542.         if ( ( h->current_mba == 1 ) || ( h->current_mba == 12 ) || ( h->current_mba == 23 ) ||
  543.              ( h->mba_diff != 1))
  544.         {
  545.             h->current_mv_x = 0;
  546.             h->current_mv_y = 0;
  547.         }
  548.         h->current_mv_x= decode_mv_component(&s->gb, h->current_mv_x);
  549.         h->current_mv_y= decode_mv_component(&s->gb, h->current_mv_y);
  550.     }else{
  551.         h->current_mv_x = 0;
  552.         h->current_mv_y = 0;
  553.     }
  554.     // Read cbp
  555.     if ( HAS_CBP( h->mtype ) ){
  556.         cbp = get_vlc2(&s->gb, h261_cbp_vlc.table, H261_CBP_VLC_BITS, 2) + 1;
  557.     }
  558.     if(s->mb_intra){
  559.         s->current_picture.mb_type[xy]= MB_TYPE_INTRA;
  560.         goto intra;
  561.     }
  562.     //set motion vectors
  563.     s->mv_dir = MV_DIR_FORWARD;
  564.     s->mv_type = MV_TYPE_16X16;
  565.     s->current_picture.mb_type[xy]= MB_TYPE_16x16 | MB_TYPE_L0;
  566.     s->mv[0][0][0] = h->current_mv_x * 2;//gets divided by 2 in motion compensation
  567.     s->mv[0][0][1] = h->current_mv_y * 2;
  568. intra:
  569.     /* decode each block */
  570.     if(s->mb_intra || HAS_CBP(h->mtype)){
  571.         s->dsp.clear_blocks(s->block[0]);
  572.         for (i = 0; i < 6; i++) {
  573.             if (h261_decode_block(h, s->block[i], i, cbp&32) < 0){
  574.                 return SLICE_ERROR;
  575.             }
  576.             cbp+=cbp;
  577.         }
  578.     }else{
  579.         for (i = 0; i < 6; i++)
  580.             s->block_last_index[i]= -1;
  581.     }
  582.     MPV_decode_mb(s, s->block);
  583.     return SLICE_OK;
  584. }
  585. /**
  586.  * decodes a macroblock
  587.  * @return <0 if an error occured
  588.  */
  589. static int h261_decode_block(H261Context * h, DCTELEM * block,
  590.                              int n, int coded)
  591. {
  592.     MpegEncContext * const s = &h->s;
  593.     int code, level, i, j, run;
  594.     RLTable *rl = &h261_rl_tcoeff;
  595.     const uint8_t *scan_table;
  596.     
  597.     // For the variable length encoding there are two code tables, one being used for
  598.     // the first transmitted LEVEL in INTER, INTER+MC and INTER+MC+FIL blocks, the second
  599.     // for all other LEVELs except the first one in INTRA blocks which is fixed length
  600.     // coded with 8 bits.
  601.     // NOTE: the two code tables only differ in one VLC so we handle that manually.
  602.     scan_table = s->intra_scantable.permutated;
  603.     if (s->mb_intra){
  604.         /* DC coef */
  605.         level = get_bits(&s->gb, 8);
  606.         // 0 (00000000b) and -128 (10000000b) are FORBIDDEN
  607.         if((level&0x7F) == 0){
  608.             av_log(s->avctx, AV_LOG_ERROR, "illegal dc %d at %d %dn", level, s->mb_x, s->mb_y);
  609.             return -1;
  610.         }
  611.         // The code 1000 0000 is not used, the reconstruction level of 1024 being coded as 1111 1111.
  612.         if (level == 255)
  613.             level = 128;
  614.         block[0] = level;
  615.         i = 1;
  616.     }else if(coded){
  617.         // Run  Level   Code
  618.         // EOB                  Not possible for first level when cbp is available (that's why the table is different)
  619.         // 0    1               1s
  620.         // *    *               0*
  621.         int check = show_bits(&s->gb, 2);
  622.         i = 0;
  623.         if ( check & 0x2 ){
  624.             skip_bits(&s->gb, 2);
  625.             block[0] = ( check & 0x1 ) ? -1 : 1;
  626.             i = 1;
  627.         }
  628.     }else{
  629.         i = 0;
  630.     }
  631.     if(!coded){
  632.         s->block_last_index[n] = i - 1;
  633.         return 0;
  634.     }
  635.     for(;;){
  636.         code = get_vlc2(&s->gb, rl->vlc.table, TCOEFF_VLC_BITS, 2);
  637.         if (code < 0){
  638.             av_log(s->avctx, AV_LOG_ERROR, "illegal ac vlc code at %dx%dn", s->mb_x, s->mb_y);
  639.             return -1;
  640.         }
  641.         if (code == rl->n) {
  642.             /* escape */
  643.             // 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.
  644.             run = get_bits(&s->gb, 6);
  645.             level = get_sbits(&s->gb, 8);
  646.         }else if(code == 0){
  647.             break;
  648.         }else{
  649.             run = rl->table_run[code];
  650.             level = rl->table_level[code];
  651.             if (get_bits1(&s->gb))
  652.                 level = -level;
  653.         }
  654.         i += run;
  655.         if (i >= 64){
  656.             av_log(s->avctx, AV_LOG_ERROR, "run overflow at %dx%dn", s->mb_x, s->mb_y);
  657.             return -1;
  658.         }
  659.         j = scan_table[i];
  660.         block[j] = level;
  661.         i++;
  662.     }
  663.     s->block_last_index[n] = i-1;
  664.     return 0;
  665. }
  666. /**
  667.  * decodes the H261 picture header.
  668.  * @return <0 if no startcode found
  669.  */
  670. int h261_decode_picture_header(H261Context *h){
  671.     MpegEncContext * const s = &h->s;
  672.     int format, i;
  673.     uint32_t startcode= 0;
  674.     for(i= s->gb.size_in_bits - get_bits_count(&s->gb); i>24; i-=1){
  675.         startcode = ((startcode << 1) | get_bits(&s->gb, 1)) & 0x000FFFFF;
  676.         if(startcode == 0x10)
  677.             break;
  678.     }
  679.     if (startcode != 0x10){
  680.         av_log(s->avctx, AV_LOG_ERROR, "Bad picture start coden");
  681.         return -1;
  682.     }
  683.     /* temporal reference */
  684.     s->picture_number = get_bits(&s->gb, 5); /* picture timestamp */
  685.     /* PTYPE starts here */
  686.     skip_bits1(&s->gb); /* split screen off */
  687.     skip_bits1(&s->gb); /* camera  off */
  688.     skip_bits1(&s->gb); /* freeze picture release off */
  689.     format = get_bits1(&s->gb);
  690.     //only 2 formats possible
  691.     if (format == 0){//QCIF
  692.         s->width = 176;
  693.         s->height = 144;
  694.         s->mb_width = 11;
  695.         s->mb_height = 9;
  696.     }else{//CIF
  697.         s->width = 352;
  698.         s->height = 288;
  699.         s->mb_width = 22;
  700.         s->mb_height = 18;
  701.     }
  702.     s->mb_num = s->mb_width * s->mb_height;
  703.     skip_bits1(&s->gb); /* still image mode off */
  704.     skip_bits1(&s->gb); /* Reserved */
  705.     /* PEI */
  706.     while (get_bits1(&s->gb) != 0){
  707.         skip_bits(&s->gb, 8);
  708.     }
  709.     // h261 has no I-FRAMES, but if we pass I_TYPE for the first frame, the codec crashes if it does 
  710.     // not contain all I-blocks (e.g. when a packet is lost)
  711.     s->pict_type = P_TYPE;
  712.     h->gob_number = 0;
  713.     return 0;
  714. }
  715. static int h261_decode_gob(H261Context *h){
  716.     MpegEncContext * const s = &h->s;
  717.     
  718.     ff_set_qscale(s, s->qscale);
  719.     /* decode mb's */
  720.     while(h->current_mba <= MBA_STUFFING)
  721.     {
  722.         int ret;
  723.         /* DCT & quantize */
  724.         ret= h261_decode_mb(h);
  725.         if(ret<0){
  726.             if(ret==SLICE_END){
  727.                 h261_decode_mb_skipped(h, h->current_mba, 33);                
  728.                 return 0;
  729.             }
  730.             av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %dn", s->mb_x + s->mb_y*s->mb_stride);
  731.             return -1;
  732.         }
  733.         
  734.         h261_decode_mb_skipped(h, h->current_mba-h->mba_diff, h->current_mba-1);
  735.     }
  736.     
  737.     return -1;
  738. }
  739. static int h261_find_frame_end(ParseContext *pc, AVCodecContext* avctx, const uint8_t *buf, int buf_size){
  740.     int vop_found, i, j;
  741.     uint32_t state;
  742.     vop_found= pc->frame_start_found;
  743.     state= pc->state;
  744.    
  745.     for(i=0; i<buf_size && !vop_found; i++){
  746.         state= (state<<8) | buf[i];
  747.         for(j=0; j<8; j++){
  748.             if(((state>>j)&0xFFFFF) == 0x00010){
  749.                 i++;
  750.                 vop_found=1;
  751.                 break;
  752.             }
  753.         }
  754.     }
  755.     if(vop_found){
  756.         for(; i<buf_size; i++){
  757.             state= (state<<8) | buf[i];
  758.             for(j=0; j<8; j++){
  759.                 if(((state>>j)&0xFFFFF) == 0x00010){
  760.                     pc->frame_start_found=0;
  761.                     pc->state= state>>(2*8);
  762.                     return i-1;
  763.                 }
  764.             }
  765.         }
  766.     }
  767.     pc->frame_start_found= vop_found;
  768.     pc->state= state;
  769.     return END_NOT_FOUND;
  770. }
  771. static int h261_parse(AVCodecParserContext *s,
  772.                       AVCodecContext *avctx,
  773.                       uint8_t **poutbuf, int *poutbuf_size, 
  774.                       const uint8_t *buf, int buf_size)
  775. {
  776.     ParseContext *pc = s->priv_data;
  777.     int next;
  778.     
  779.     next= h261_find_frame_end(pc,avctx, buf, buf_size);
  780.     if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
  781.         *poutbuf = NULL;
  782.         *poutbuf_size = 0;
  783.         return buf_size;
  784.     }
  785.     *poutbuf = (uint8_t *)buf;
  786.     *poutbuf_size = buf_size;
  787.     return next;
  788. }
  789. /**
  790.  * returns the number of bytes consumed for building the current frame
  791.  */
  792. static int get_consumed_bytes(MpegEncContext *s, int buf_size){
  793.     int pos= get_bits_count(&s->gb)>>3;
  794.     if(pos==0) pos=1; //avoid infinite loops (i doubt thats needed but ...)
  795.     if(pos+10>buf_size) pos=buf_size; // oops ;)
  796.     return pos;
  797. }
  798. static int h261_decode_frame(AVCodecContext *avctx,
  799.                              void *data, int *data_size,
  800.                              uint8_t *buf, int buf_size)
  801. {
  802.     H261Context *h= avctx->priv_data;
  803.     MpegEncContext *s = &h->s;
  804.     int ret;
  805.     AVFrame *pict = data;
  806. #ifdef DEBUG
  807.     printf("*****frame %d size=%dn", avctx->frame_number, buf_size);
  808.     printf("bytes=%x %x %x %xn", buf[0], buf[1], buf[2], buf[3]);
  809. #endif
  810.     s->flags= avctx->flags;
  811.     s->flags2= avctx->flags2;
  812.     h->gob_start_code_skipped=0;
  813. retry:
  814.     init_get_bits(&s->gb, buf, buf_size*8);
  815.     if(!s->context_initialized){
  816.         if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
  817.             return -1;
  818.     }
  819.     //we need to set current_picture_ptr before reading the header, otherwise we cant store anyting im there
  820.     if(s->current_picture_ptr==NULL || s->current_picture_ptr->data[0]){
  821.         int i= ff_find_unused_picture(s, 0);
  822.         s->current_picture_ptr= &s->picture[i];
  823.     }
  824.     ret = h261_decode_picture_header(h);
  825.     /* skip if the header was thrashed */
  826.     if (ret < 0){
  827.         av_log(s->avctx, AV_LOG_ERROR, "header damagedn");
  828.         return -1;
  829.     }
  830.     if (s->width != avctx->coded_width || s->height != avctx->coded_height){
  831.         ParseContext pc= s->parse_context; //FIXME move these demuxng hack to avformat
  832.         s->parse_context.buffer=0;
  833.         MPV_common_end(s);
  834.         s->parse_context= pc;
  835.     }
  836.     if (!s->context_initialized) {
  837.         avcodec_set_dimensions(avctx, s->width, s->height);
  838.         goto retry;
  839.     }
  840.     // for hurry_up==5
  841.     s->current_picture.pict_type= s->pict_type;
  842.     s->current_picture.key_frame= s->pict_type == I_TYPE;
  843.     /* skip everything if we are in a hurry>=5 */
  844.     if(avctx->hurry_up>=5) return get_consumed_bytes(s, buf_size);
  845.     if(  (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type==B_TYPE)
  846.        ||(avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type!=I_TYPE)
  847.        || avctx->skip_frame >= AVDISCARD_ALL)
  848.         return get_consumed_bytes(s, buf_size);
  849.     if(MPV_frame_start(s, avctx) < 0)
  850.         return -1;
  851.     ff_er_frame_start(s);
  852.     /* decode each macroblock */
  853.     s->mb_x=0;
  854.     s->mb_y=0;
  855.     while(h->gob_number < (s->mb_height==18 ? 12 : 5)){
  856.         if(ff_h261_resync(h)<0)
  857.             break;
  858.         h261_decode_gob(h);
  859.     }
  860.     MPV_frame_end(s);
  861. assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type);
  862. assert(s->current_picture.pict_type == s->pict_type);
  863.     *pict= *(AVFrame*)s->current_picture_ptr;
  864.     ff_print_debug_info(s, pict);
  865.     /* Return the Picture timestamp as the frame number */
  866.     /* we substract 1 because it is added on utils.c    */
  867.     avctx->frame_number = s->picture_number - 1;
  868.     *data_size = sizeof(AVFrame);
  869.     return get_consumed_bytes(s, buf_size);
  870. }
  871. static int h261_decode_end(AVCodecContext *avctx)
  872. {
  873.     H261Context *h= avctx->priv_data;
  874.     MpegEncContext *s = &h->s;
  875.     MPV_common_end(s);
  876.     return 0;
  877. }
  878. #ifdef CONFIG_ENCODERS
  879. AVCodec h261_encoder = {
  880.     "h261",
  881.     CODEC_TYPE_VIDEO,
  882.     CODEC_ID_H261,
  883.     sizeof(H261Context),
  884.     MPV_encode_init,
  885.     MPV_encode_picture,
  886.     MPV_encode_end,
  887. };
  888. #endif
  889. AVCodec h261_decoder = {
  890.     "h261",
  891.     CODEC_TYPE_VIDEO,
  892.     CODEC_ID_H261,
  893.     sizeof(H261Context),
  894.     h261_decode_init,
  895.     NULL,
  896.     h261_decode_end,
  897.     h261_decode_frame,
  898.     CODEC_CAP_DR1,
  899. };
  900. AVCodecParser h261_parser = {
  901.     { CODEC_ID_H261 },
  902.     sizeof(ParseContext),
  903.     NULL,
  904.     h261_parse,
  905.     ff_parse_close,
  906. };