[cvs] / xvidcore / src / decoder.c Repository:
ViewVC logotype

Diff of /xvidcore/src/decoder.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.28, Fri Jul 12 00:49:59 2002 UTC revision 1.45, Sun Dec 15 01:21:12 2002 UTC
# Line 3  Line 3 
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  -  Decoder main module  -   *  -  Decoder main module  -
5   *   *
6   *  This program is an implementation of a part of one or more MPEG-4   *  Copyright(C) 2002 MinChen <chenm001@163.com>
7   *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending   *               2002 Peter Ross <pross@xvid.org>
  *  to use this software module in hardware or software products are  
  *  advised that its use may infringe existing patents or copyrights, and  
  *  any such use would be at such party's own risk.  The original  
  *  developer of this software module and his/her company, and subsequent  
  *  editors and their companies, will have no liability for use of this  
  *  software or modifications or derivatives thereof.  
8   *   *
9   *  This program is free software; you can redistribute it and/or modify   *  This file is part of XviD, a free MPEG-4 video encoder/decoder
10   *  it under the terms of the GNU General Public License as published by   *
11     *  XviD is free software; you can redistribute it and/or modify it
12     *  under the terms of the GNU General Public License as published by
13   *  the Free Software Foundation; either version 2 of the License, or   *  the Free Software Foundation; either version 2 of the License, or
14   *  (at your option) any later version.   *  (at your option) any later version.
15   *   *
# Line 26  Line 22 
22   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
23   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
24   *   *
25   *************************************************************************/   *  Under section 8 of the GNU General Public License, the copyright
26     *  holders of XVID explicitly forbid distribution in the following
27  /**************************************************************************   *  countries:
28     *
29     *    - Japan
30     *    - United States of America
31     *
32     *  Linking XviD statically or dynamically with other modules is making a
33     *  combined work based on XviD.  Thus, the terms and conditions of the
34     *  GNU General Public License cover the whole combination.
35   *   *
36   *  History:   *  As a special exception, the copyright holders of XviD give you
37     *  permission to link XviD with independent modules that communicate with
38     *  XviD solely through the VFW1.1 and DShow interfaces, regardless of the
39     *  license terms of these independent modules, and to copy and distribute
40     *  the resulting combined work under terms of your choice, provided that
41     *  every copy of the combined work is accompanied by a complete copy of
42     *  the source code of XviD (the version of XviD used to produce the
43     *  combined work), being distributed under the terms of the GNU General
44     *  Public License plus this exception.  An independent module is a module
45     *  which is not derived from or based on XviD.
46   *   *
47   *  10.07.2002  added BFRAMES_DEC_DEBUG support   *  Note that people who make modified versions of XviD are not obligated
48   *              Fix a little bug for low_delay flage   *  to grant this special exception for their modified versions; it is
49   *              MinChen <chenm001@163.com>   *  their choice whether to do so.  The GNU General Public License gives
50   *  28.06.2002  added basic resync support to iframe/pframe_decode()   *  permission to release a modified version without this exception; this
51   *  22.06.2002  added primative N_VOP support   *  exception also makes it possible to release a modified version which
52   *              #define BFRAMES_DEC now enables Minchen's bframe decoder   *  carries forward this exception.
  *  08.05.2002  add low_delay support for B_VOP decode  
  *              MinChen <chenm001@163.com>  
  *  05.05.2002  fix some B-frame decode problem  
  *  02.05.2002  add B-frame decode support(have some problem);  
  *              MinChen <chenm001@163.com>  
  *  22.04.2002  add some B-frame decode support;  chenm001 <chenm001@163.com>  
  *  29.03.2002  interlacing fix - compensated block wasn't being used when  
  *              reconstructing blocks, thus artifacts  
  *              interlacing speedup - used transfers to re-interlace  
  *              interlaced decoding should be as fast as progressive now  
  *  26.03.2002  interlacing support - moved transfers outside decode loop  
  *  26.12.2001  decoder_mbinter: dequant/idct moved within if(coded) block  
  *  22.12.2001  lock based interpolation  
  *  01.12.2001  inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>  
53   *   *
54   *  $Id$   *  $Id$
55   *   *
# Line 118  Line 116 
116                  xvid_free(dec);                  xvid_free(dec);
117                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
118          }          }
119          // add by chenm001 <chenm001@163.com>          /* add by chenm001 <chenm001@163.com> */
120          // for support B-frame to reference last 2 frame          /* for support B-frame to reference last 2 frame */
121          if (image_create(&dec->refn[1], dec->edged_width, dec->edged_height)) {          if (image_create(&dec->refn[1], dec->edged_width, dec->edged_height)) {
122                  image_destroy(&dec->cur, dec->edged_width, dec->edged_height);                  image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
123                  image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);                  image_destroy(&dec->refn[0], dec->edged_width, dec->edged_height);
# Line 148  Line 146 
146    
147          memset(dec->mbs, 0, sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height);          memset(dec->mbs, 0, sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height);
148    
149          // add by chenm001 <chenm001@163.com>          /* add by chenm001 <chenm001@163.com> */
150          // for skip MB flag          /* for skip MB flag */
151          dec->last_mbs =          dec->last_mbs =
152                  xvid_malloc(sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height,                  xvid_malloc(sizeof(MACROBLOCK) * dec->mb_width * dec->mb_height,
153                                          CACHE_LINE);                                          CACHE_LINE);
# Line 167  Line 165 
165    
166          init_timer();          init_timer();
167    
168          // add by chenm001 <chenm001@163.com>          /* add by chenm001 <chenm001@163.com> */
169          // for support B-frame to save reference frame's time          /* for support B-frame to save reference frame's time */
170          dec->frames = -1;          dec->frames = -1;
171          dec->time = dec->time_base = dec->last_time_base = 0;          dec->time = dec->time_base = dec->last_time_base = 0;
172    
# Line 200  Line 198 
198    
199    
200    
201  // decode an intra macroblock  /* decode an intra macroblock */
202    
203  void  void
204  decoder_mbintra(DECODER * dec,  decoder_mbintra(DECODER * dec,
# Line 229  Line 227 
227          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
228          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
229    
230          memset(block, 0, 6 * 64 * sizeof(int16_t));     // clear          memset(block, 0, 6 * 64 * sizeof(int16_t));     /* clear */
231    
232          for (i = 0; i < 6; i++) {          for (i = 0; i < 6; i++) {
233                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);                  uint32_t iDcScaler = get_dc_scaler(iQuant, i < 4);
# Line 252  Line 250 
250                          dc_dif = dc_size ? get_dc_dif(bs, dc_size) : 0;                          dc_dif = dc_size ? get_dc_dif(bs, dc_size) : 0;
251    
252                          if (dc_size > 8) {                          if (dc_size > 8) {
253                                  BitstreamSkip(bs, 1);   // marker                                  BitstreamSkip(bs, 1);   /* marker */
254                          }                          }
255    
256                          block[i * 64 + 0] = dc_dif;                          block[i * 64 + 0] = dc_dif;
# Line 264  Line 262 
262                  }                  }
263    
264                  start_timer();                  start_timer();
265                  if (cbp & (1 << (5 - i)))       // coded                  if (cbp & (1 << (5 - i)))       /* coded */
266                  {                  {
267                          get_intra_block(bs, &block[i * 64], pMB->acpred_directions[i],                          get_intra_block(bs, &block[i * 64], pMB->acpred_directions[i],
268                                                          start_coeff);                                                          start_coeff);
# Line 313  Line 311 
311          { 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 };          { 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 };
312    
313    
314  // decode an inter macroblock  /* decode an inter macroblock */
315    
316  void  void
317  decoder_mbinter(DECODER * dec,  decoder_mbinter(DECODER * dec,
# Line 346  Line 344 
344                  uv_dx = pMB->mvs[0].x;                  uv_dx = pMB->mvs[0].x;
345                  uv_dy = pMB->mvs[0].y;                  uv_dy = pMB->mvs[0].y;
346    
347                    if (dec->quarterpel)
348                    {
349                            uv_dx = (uv_dx >> 1) | (uv_dx & 1);
350                            uv_dy = (uv_dy >> 1) | (uv_dy & 1);
351                    }
352    
353                  uv_dx = (uv_dx & 3) ? (uv_dx >> 1) | 1 : uv_dx / 2;                  uv_dx = (uv_dx & 3) ? (uv_dx >> 1) | 1 : uv_dx / 2;
354                  uv_dy = (uv_dy & 3) ? (uv_dy >> 1) | 1 : uv_dy / 2;                  uv_dy = (uv_dy & 3) ? (uv_dy >> 1) | 1 : uv_dy / 2;
355          } else {          } else {
356                  int sum;                  int sum;
   
357                  sum = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;                  sum = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;
358                  uv_dx =  
359                          (sum ==                  if (dec->quarterpel)
360                           0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] +                  {
361                                                                    (ABS(sum) / 16) * 2));                          sum /= 2;
362                    }
363    
364                    uv_dx = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));
365    
366                  sum = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;                  sum = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;
367                  uv_dy =  
368                          (sum ==                  if (dec->quarterpel)
369                           0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] +                  {
370                                                                    (ABS(sum) / 16) * 2));                          sum /= 2;
371                    }
372    
373                    uv_dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));
374          }          }
375    
376          start_timer();          start_timer();
377            if(dec->quarterpel) {
378                    DPRINTF(DPRINTF_DEBUG, "QUARTERPEL\n");
379                    interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y, 16*x_pos, 16*y_pos,
380                                                                      pMB->mvs[0].x, pMB->mvs[0].y, stride,  rounding);
381                    interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y, 16*x_pos + 8, 16*y_pos,
382                                                                      pMB->mvs[1].x, pMB->mvs[1].y, stride,  rounding);
383                    interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y, 16*x_pos, 16*y_pos + 8,
384                                                                      pMB->mvs[2].x, pMB->mvs[2].y, stride,  rounding);
385                    interpolate8x8_quarterpel(dec->cur.y, dec->refn[0].y, 16*x_pos + 8, 16*y_pos + 8,
386                                                                      pMB->mvs[3].x, pMB->mvs[3].y, stride,  rounding);
387            }
388            else {
389          interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16 * x_pos, 16 * y_pos,          interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16 * x_pos, 16 * y_pos,
390                                                    pMB->mvs[0].x, pMB->mvs[0].y, stride, rounding);                                                    pMB->mvs[0].x, pMB->mvs[0].y, stride, rounding);
391          interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16 * x_pos + 8,                  interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16*x_pos + 8, 16*y_pos,
392                                                    16 * y_pos, pMB->mvs[1].x, pMB->mvs[1].y, stride,                                                            pMB->mvs[1].x, pMB->mvs[1].y, stride,  rounding);
393                                                    rounding);                  interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16*x_pos, 16*y_pos + 8,
394          interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16 * x_pos,                                                            pMB->mvs[2].x, pMB->mvs[2].y, stride,  rounding);
395                                                    16 * y_pos + 8, pMB->mvs[2].x, pMB->mvs[2].y, stride,                  interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16*x_pos + 8, 16*y_pos + 8,
396                                                    rounding);                                                            pMB->mvs[3].x, pMB->mvs[3].y, stride,  rounding);
397          interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16 * x_pos + 8,          }
398                                                    16 * y_pos + 8, pMB->mvs[3].x, pMB->mvs[3].y, stride,  
                                                   rounding);  
399          interpolate8x8_switch(dec->cur.u, dec->refn[0].u, 8 * x_pos, 8 * y_pos,          interpolate8x8_switch(dec->cur.u, dec->refn[0].u, 8 * x_pos, 8 * y_pos,
400                                                    uv_dx, uv_dy, stride2, rounding);                                                    uv_dx, uv_dy, stride2, rounding);
401          interpolate8x8_switch(dec->cur.v, dec->refn[0].v, 8 * x_pos, 8 * y_pos,          interpolate8x8_switch(dec->cur.v, dec->refn[0].v, 8 * x_pos, 8 * y_pos,
# Line 383  Line 403 
403          stop_comp_timer();          stop_comp_timer();
404    
405          for (i = 0; i < 6; i++) {          for (i = 0; i < 6; i++) {
406                  if (cbp & (1 << (5 - i)))       // coded                  if (cbp & (1 << (5 - i)))       /* coded */
407                  {                  {
408                          memset(&block[i * 64], 0, 64 * sizeof(int16_t));        // clear                          memset(&block[i * 64], 0, 64 * sizeof(int16_t));        /* clear */
409    
410                          start_timer();                          start_timer();
411                          get_inter_block(bs, &block[i * 64]);                          get_inter_block(bs, &block[i * 64]);
# Line 478  Line 498 
498                                  }                                  }
499                          }                          }
500                          mb->quant = quant;                          mb->quant = quant;
501                            mb->mvs[0].x = mb->mvs[0].y =
502                            mb->mvs[1].x = mb->mvs[1].y =
503                            mb->mvs[2].x = mb->mvs[2].y =
504                            mb->mvs[3].x = mb->mvs[3].y =0;
505    
506                          if (dec->interlacing) {                          if (dec->interlacing) {
507                                  mb->field_dct = BitstreamGetBit(bs);                                  mb->field_dct = BitstreamGetBit(bs);
508                                  DEBUG1("deci: field_dct: ", mb->field_dct);                                  DPRINTF(DPRINTF_DEBUG, "deci: field_dct: %d", mb->field_dct);
509                          }                          }
510    
511                          decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant,                          decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant,
512                                                          intra_dc_threshold, bound);                                                          intra_dc_threshold, bound);
513                  }                  }
514                    if(dec->out_frm)
515                      output_slice(&dec->cur, dec->edged_width,dec->width,dec->out_frm,0,y,dec->mb_width);
516    
517          }          }
518    
519  }  }
# Line 550  Line 577 
577    
578          uint32_t x, y;          uint32_t x, y;
579          uint32_t bound;          uint32_t bound;
580            int cp_mb, st_mb;
581    
582          start_timer();          start_timer();
583          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,
584                                     dec->width, dec->height, dec->interlacing);                                     dec->width, dec->height);
585          stop_edges_timer();          stop_edges_timer();
586    
587          bound = 0;          bound = 0;
588    
589          for (y = 0; y < dec->mb_height; y++) {          for (y = 0; y < dec->mb_height; y++) {
590                    cp_mb = st_mb = 0;
591                  for (x = 0; x < dec->mb_width; x++) {                  for (x = 0; x < dec->mb_width; x++) {
592                          MACROBLOCK *mb;                          MACROBLOCK *mb;
593    
594                          // skip stuffing                          /* skip stuffing */
595                          while (BitstreamShowBits(bs, 10) == 1)                          while (BitstreamShowBits(bs, 10) == 1)
596                                  BitstreamSkip(bs, 10);                                  BitstreamSkip(bs, 10);
597    
# Line 576  Line 605 
605    
606                          DPRINTF(DPRINTF_MB, "macroblock (%i,%i) %08x", x, y, BitstreamShowBits(bs, 32));                          DPRINTF(DPRINTF_MB, "macroblock (%i,%i) %08x", x, y, BitstreamShowBits(bs, 32));
607    
608                          //if (!(dec->mb_skip[y*dec->mb_width + x]=BitstreamGetBit(bs)))         // not_coded                          /*if (!(dec->mb_skip[y*dec->mb_width + x]=BitstreamGetBit(bs)))          not_coded */
609                          if (!(BitstreamGetBit(bs)))     // not_coded                          if (!(BitstreamGetBit(bs)))     /* not_coded */
610                          {                          {
611                                  uint32_t mcbpc;                                  uint32_t mcbpc;
612                                  uint32_t cbpc;                                  uint32_t cbpc;
# Line 586  Line 615 
615                                  uint32_t cbp;                                  uint32_t cbp;
616                                  uint32_t intra;                                  uint32_t intra;
617    
618                                    cp_mb++;
619                                  mcbpc = get_mcbpc_inter(bs);                                  mcbpc = get_mcbpc_inter(bs);
620                                  mb->mode = mcbpc & 7;                                  mb->mode = mcbpc & 7;
621                                  cbpc = (mcbpc >> 4);                                  cbpc = (mcbpc >> 4);
# Line 619  Line 649 
649                                  mb->quant = quant;                                  mb->quant = quant;
650    
651                                  if (dec->interlacing) {                                  if (dec->interlacing) {
652                                            if (cbp || intra) {
653                                          mb->field_dct = BitstreamGetBit(bs);                                          mb->field_dct = BitstreamGetBit(bs);
654                                          DEBUG1("decp: field_dct: ", mb->field_dct);                                                  DPRINTF(DPRINTF_DEBUG, "decp: field_dct: %d", mb->field_dct);
655                                            }
656    
657                                          if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {                                          if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {
658                                                  mb->field_pred = BitstreamGetBit(bs);                                                  mb->field_pred = BitstreamGetBit(bs);
659                                                  DEBUG1("decp: field_pred: ", mb->field_pred);                                                  DPRINTF(DPRINTF_DEBUG, "decp: field_pred: %d", mb->field_pred);
660    
661                                                  if (mb->field_pred) {                                                  if (mb->field_pred) {
662                                                          mb->field_for_top = BitstreamGetBit(bs);                                                          mb->field_for_top = BitstreamGetBit(bs);
663                                                          DEBUG1("decp: field_for_top: ", mb->field_for_top);                                                          DPRINTF(DPRINTF_DEBUG, "decp: field_for_top: %d", mb->field_for_top);
664                                                          mb->field_for_bot = BitstreamGetBit(bs);                                                          mb->field_for_bot = BitstreamGetBit(bs);
665                                                          DEBUG1("decp: field_for_bot: ", mb->field_for_bot);                                                          DPRINTF(DPRINTF_DEBUG, "decp: field_for_bot: %d", mb->field_for_bot);
666                                                  }                                                  }
667                                          }                                          }
668                                  }                                  }
# Line 649  Line 681 
681                                                  mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y =                                                  mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y =
682                                                          mb->mvs[0].y;                                                          mb->mvs[0].y;
683                                          }                                          }
684                                  } else if (mb->mode ==                                  } else if (mb->mode == MODE_INTER4V ) {
685                                                     MODE_INTER4V /* || mb->mode == MODE_INTER4V_Q */ ) {  
686                                          get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode, bound);                                          get_motion_vector(dec, bs, x, y, 0, &mb->mvs[0], fcode, bound);
687                                          get_motion_vector(dec, bs, x, y, 1, &mb->mvs[1], fcode, bound);                                          get_motion_vector(dec, bs, x, y, 1, &mb->mvs[1], fcode, bound);
688                                          get_motion_vector(dec, bs, x, y, 2, &mb->mvs[2], fcode, bound);                                          get_motion_vector(dec, bs, x, y, 2, &mb->mvs[2], fcode, bound);
689                                          get_motion_vector(dec, bs, x, y, 3, &mb->mvs[3], fcode, bound);                                          get_motion_vector(dec, bs, x, y, 3, &mb->mvs[3], fcode, bound);
690                                  } else                  // MODE_INTRA, MODE_INTRA_Q                                  } else                  /* MODE_INTRA, MODE_INTRA_Q */
691                                  {                                  {
692                                          mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x =                                          mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x =
693                                                  0;                                                  0;
# Line 668  Line 700 
700    
701                                  decoder_mbinter(dec, mb, x, y, acpred_flag, cbp, bs, quant,                                  decoder_mbinter(dec, mb, x, y, acpred_flag, cbp, bs, quant,
702                                                                  rounding);                                                                  rounding);
703                          } else                          // not coded                          } else                          /* not coded */
704                          {                          {
705                                  //DEBUG2("P-frame MB at (X,Y)=",x,y);                                  DPRINTF(DPRINTF_DEBUG, "P-frame MB at (X,Y)=(%d,%d)", x, y);
706    
707                                  mb->mode = MODE_NOT_CODED;                                  mb->mode = MODE_NOT_CODED;
708                                  mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = 0;                                  mb->mvs[0].x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = 0;
709                                  mb->mvs[0].y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = 0;                                  mb->mvs[0].y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = 0;
710    
711                                  // copy macroblock directly from ref to cur                                  /* copy macroblock directly from ref to cur */
712    
713                                  start_timer();                                  start_timer();
714    
# Line 712  Line 745 
745                                                                   dec->refn[0].v +                                                                   dec->refn[0].v +
746                                                                   (8 * y) * dec->edged_width / 2 + (8 * x),                                                                   (8 * y) * dec->edged_width / 2 + (8 * x),
747                                                                   dec->edged_width / 2);                                                                   dec->edged_width / 2);
   
748                                  stop_transfer_timer();                                  stop_transfer_timer();
749                                    if(dec->out_frm && cp_mb > 0) {
750                                      output_slice(&dec->cur, dec->edged_width,dec->width,dec->out_frm,st_mb,y,cp_mb);
751                                      cp_mb = 0;
752                                    }
753                                    st_mb = x+1;
754                          }                          }
755                  }                  }
756                    if(dec->out_frm && cp_mb > 0)
757                      output_slice(&dec->cur, dec->edged_width,dec->width,dec->out_frm,st_mb,y,cp_mb);
758          }          }
759  }  }
760    
761    
762  // add by MinChen <chenm001@163.com>  /* add by MinChen <chenm001@163.com> */
763  // decode B-frame motion vector  /* decode B-frame motion vector */
764  void  void
765  get_b_motion_vector(DECODER * dec,  get_b_motion_vector(DECODER * dec,
766                                          Bitstream * bs,                                          Bitstream * bs,
# Line 765  Line 804 
804  }  }
805    
806    
807  // add by MinChen <chenm001@163.com>  /* add by MinChen <chenm001@163.com> */
808  // decode an B-frame forward & backward inter macroblock  /* decode an B-frame forward & backward inter macroblock */
809  void  void
810  decoder_bf_mbinter(DECODER * dec,  decoder_bf_mbinter(DECODER * dec,
811                                     const MACROBLOCK * pMB,                                     const MACROBLOCK * pMB,
# Line 793  Line 832 
832          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
833          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
834    
835    
836          if (!(pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)) {          if (!(pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)) {
837                  uv_dx = pMB->mvs[0].x;                  uv_dx = pMB->mvs[0].x;
838                  uv_dy = pMB->mvs[0].y;                  uv_dy = pMB->mvs[0].y;
# Line 833  Line 873 
873          stop_comp_timer();          stop_comp_timer();
874    
875          for (i = 0; i < 6; i++) {          for (i = 0; i < 6; i++) {
876                  if (cbp & (1 << (5 - i)))       // coded                  if (cbp & (1 << (5 - i)))       /* coded */
877                  {                  {
878                          memset(&block[i * 64], 0, 64 * sizeof(int16_t));        // clear                          memset(&block[i * 64], 0, 64 * sizeof(int16_t));        /* clear */
879    
880                          start_timer();                          start_timer();
881                          get_inter_block(bs, &block[i * 64]);                          get_inter_block(bs, &block[i * 64]);
# Line 877  Line 917 
917  }  }
918    
919    
920  // add by MinChen <chenm001@163.com>  /* add by MinChen <chenm001@163.com> */
921  // decode an B-frame direct &  inter macroblock  /* decode an B-frame direct &  inter macroblock */
922  void  void
923  decoder_bf_interpolate_mbinter(DECODER * dec,  decoder_bf_interpolate_mbinter(DECODER * dec,
924                                                             IMAGE forward,                                                             IMAGE forward,
# Line 886  Line 926 
926                                                             const MACROBLOCK * pMB,                                                             const MACROBLOCK * pMB,
927                                                             const uint32_t x_pos,                                                             const uint32_t x_pos,
928                                                             const uint32_t y_pos,                                                             const uint32_t y_pos,
                                                            const uint32_t cbp,  
929                                                             Bitstream * bs)                                                             Bitstream * bs)
930  {  {
931    
# Line 901  Line 940 
940          int b_uv_dx, b_uv_dy;          int b_uv_dx, b_uv_dy;
941          uint32_t i;          uint32_t i;
942          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
943        const uint32_t cbp = pMB->cbp;
944    
945          pY_Cur = dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);          pY_Cur = dec->cur.y + (y_pos << 4) * stride + (x_pos << 4);
946          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
947          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
948    
949    
950          if ((pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)) {          if ((pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)) {
951                  uv_dx = pMB->mvs[0].x;                  uv_dx = pMB->mvs[0].x;
952                  uv_dy = pMB->mvs[0].y;                  uv_dy = pMB->mvs[0].y;
# Line 995  Line 1036 
1036                                           stride2);                                           stride2);
1037          interpolate8x8_c(dec->cur.v, dec->refn[2].v, 8 * x_pos, 8 * y_pos,          interpolate8x8_c(dec->cur.v, dec->refn[2].v, 8 * x_pos, 8 * y_pos,
1038                                           stride2);                                           stride2);
   
1039          stop_comp_timer();          stop_comp_timer();
1040    
1041          for (i = 0; i < 6; i++) {          for (i = 0; i < 6; i++) {
1042                  if (cbp & (1 << (5 - i)))       // coded                  if (cbp & (1 << (5 - i)))       /* coded */
1043                  {                  {
1044                          memset(&block[i * 64], 0, 64 * sizeof(int16_t));        // clear                          memset(&block[i * 64], 0, 64 * sizeof(int16_t));        /* clear */
1045    
1046                          start_timer();                          start_timer();
1047                          get_inter_block(bs, &block[i * 64]);                          get_inter_block(bs, &block[i * 64]);
# Line 1043  Line 1083 
1083  }  }
1084    
1085    
1086  // add by MinChen <chenm001@163.com>  /* add by MinChen <chenm001@163.com> */
1087  // for decode B-frame dbquant  /* for decode B-frame dbquant */
1088  int32_t __inline  int32_t __inline
1089  get_dbquant(Bitstream * bs)  get_dbquant(Bitstream * bs)
1090  {  {
1091          if (!BitstreamGetBit(bs))       // '0'          if (!BitstreamGetBit(bs))       /* '0' */
1092                  return (0);                  return (0);
1093          else if (!BitstreamGetBit(bs))  // '10'          else if (!BitstreamGetBit(bs))  /* '10' */
1094                  return (-2);                  return (-2);
1095          else          else
1096                  return (2);                             // '11'                  return (2);                             /* '11' */
1097  }  }
1098    
1099  // add by MinChen <chenm001@163.com>  /* add by MinChen <chenm001@163.com> */
1100  // for decode B-frame mb_type  /* for decode B-frame mb_type */
1101  // bit   ret_value  /* bit   ret_value */
1102  // 1        0  /* 1        0 */
1103  // 01       1  /* 01       1 */
1104  // 001      2  /* 001      2 */
1105  // 0001     3  /* 0001     3 */
1106  int32_t __inline  int32_t __inline
1107  get_mbtype(Bitstream * bs)  get_mbtype(Bitstream * bs)
1108  {  {
# Line 1086  Line 1126 
1126                             int fcode_forward,                             int fcode_forward,
1127                             int fcode_backward)                             int fcode_backward)
1128  {  {
   
1129          uint32_t x, y;          uint32_t x, y;
1130          VECTOR mv, zeromv;          VECTOR mv;
1131            const VECTOR zeromv = {0,0};
1132  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1133          FILE *fp;          FILE *fp;
1134          static char first=0;          static char first=0;
# Line 1099  Line 1139 
1139    
1140          start_timer();          start_timer();
1141          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,
1142                                     dec->width, dec->height, dec->interlacing);                                     dec->width, dec->height);
1143          //image_setedges(&dec->refn[1], dec->edged_width, dec->edged_height, dec->width, dec->height, dec->interlacing);          image_setedges(&dec->refn[1], dec->edged_width, dec->edged_height,
1144                                       dec->width, dec->height);
1145          stop_edges_timer();          stop_edges_timer();
1146    
1147  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
# Line 1110  Line 1151 
1151  #endif  #endif
1152    
1153          for (y = 0; y < dec->mb_height; y++) {          for (y = 0; y < dec->mb_height; y++) {
1154                  // Initialize Pred Motion Vector                  /* Initialize Pred Motion Vector */
1155                  dec->p_fmv.x = dec->p_fmv.y = dec->p_bmv.x = dec->p_bmv.y = 0;                  dec->p_fmv = dec->p_bmv = zeromv;
1156                  for (x = 0; x < dec->mb_width; x++) {                  for (x = 0; x < dec->mb_width; x++) {
1157                          MACROBLOCK *mb = &dec->mbs[y * dec->mb_width + x];                          MACROBLOCK *mb = &dec->mbs[y * dec->mb_width + x];
1158                          MACROBLOCK *last_mb = &dec->last_mbs[y * dec->mb_width + x];                          MACROBLOCK *last_mb = &dec->last_mbs[y * dec->mb_width + x];
1159    
1160                          mb->mvs[0].x = mb->mvs[0].y = zeromv.x = zeromv.y = mv.x = mv.y = 0;                          mv =
1161                            mb->b_mvs[0] = mb->b_mvs[1] = mb->b_mvs[2] = mb->b_mvs[3] =
1162                            mb->mvs[0] = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] = zeromv;
1163    
1164                          // the last P_VOP is skip macroblock ?                          /* the last P_VOP is skip macroblock ? */
1165                          if (last_mb->mode == MODE_NOT_CODED) {                          if (last_mb->mode == MODE_NOT_CODED) {
1166                                  //DEBUG2("Skip MB in B-frame at (X,Y)=!",x,y);                                  /*DEBUG2("Skip MB in B-frame at (X,Y)=!",x,y); */
                                 mb->mb_type = MODE_NOT_CODED;  
1167                                  mb->cbp = 0;                                  mb->cbp = 0;
1168  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1169                                    mb->mb_type = MODE_NOT_CODED;
1170          BFRAME_DEBUG          BFRAME_DEBUG
1171  #endif  #endif
1172                                  mb->mb_type = MODE_FORWARD;                                  mb->mb_type = MODE_FORWARD;
1173                                  mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = mb->mvs[0].x;                                  mb->quant = last_mb->quant;
1174                                  mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = mb->mvs[0].y;                                  /*mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x = mb->mvs[0].x; */
1175                                  mb->quant = 8;                                  /*mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y = mb->mvs[0].y; */
1176    
1177                                  decoder_bf_mbinter(dec, mb, x, y, mb->cbp, bs, quant, 1);                                  decoder_bf_mbinter(dec, mb, x, y, mb->cbp, bs, mb->quant, 1);
1178                                  continue;                                  continue;
1179                          }                          }
                         //t=BitstreamShowBits(bs,32);  
1180    
1181                          if (!BitstreamGetBit(bs)) {     // modb=='0'                          if (!BitstreamGetBit(bs)) {     /* modb=='0' */
1182                                  const uint8_t modb2 = BitstreamGetBit(bs);                                  const uint8_t modb2 = (uint8_t)BitstreamGetBit(bs);
1183    
1184                                  mb->mb_type = get_mbtype(bs);                                  mb->mb_type = get_mbtype(bs);
1185    
1186                                  if (!modb2) {   // modb=='00'                                  if (!modb2) {   /* modb=='00' */
1187                                          mb->cbp = BitstreamGetBits(bs, 6);                                          mb->cbp = BitstreamGetBits(bs, 6);
1188                                  } else {                                  } else {
1189                                          mb->cbp = 0;                                          mb->cbp = 0;
# Line 1154  Line 1196 
1196                                          } else if (quant < 1) {                                          } else if (quant < 1) {
1197                                                  quant = 1;                                                  quant = 1;
1198                                          }                                          }
                                 } else {  
                                         quant = 8;  
1199                                  }                                  }
                                 mb->quant = quant;  
1200                          } else {                          } else {
1201                                  mb->mb_type = MODE_DIRECT_NONE_MV;                                  mb->mb_type = MODE_DIRECT_NONE_MV;
1202                                  mb->cbp = 0;                                  mb->cbp = 0;
1203                          }                          }
1204    
1205                          mb->mode = MODE_INTER;                          mb->quant = quant;
1206                          //DEBUG1("Switch bm_type=",mb->mb_type);                          mb->mode = MODE_INTER4V;
1207                            /*DEBUG1("Switch bm_type=",mb->mb_type); */
1208    
1209  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1210          BFRAME_DEBUG          BFRAME_DEBUG
1211  #endif  #endif
1212    
1213                          switch (mb->mb_type) {                          switch (mb->mb_type) {
1214                          case MODE_DIRECT:                          case MODE_DIRECT:
1215                                  get_b_motion_vector(dec, bs, x, y, &mb->mvs[0], 1, zeromv);                                  get_b_motion_vector(dec, bs, x, y, &mv, 1, zeromv);
1216    
1217                          case MODE_DIRECT_NONE_MV:                          case MODE_DIRECT_NONE_MV:
1218                                  {                               // Because this file is a C file not C++ so I use '{' to define var                                  {
1219                                          const int64_t TRB = dec->time_pp - dec->time_bp, TRD =                                          const int64_t TRB = dec->time_pp - dec->time_bp, TRD = dec->time_pp;
                                                 dec->time_pp;  
1220                                          int i;                                          int i;
1221    
1222                                          for (i = 0; i < 4; i++) {                                          for (i = 0; i < 4; i++) {
1223                                                  mb->mvs[i].x =                                                  mb->mvs[i].x = (int32_t) ((TRB * last_mb->mvs[i].x)
1224                                                          (int32_t) ((TRB * last_mb->mvs[i].x) / TRD +                                                                        / TRD + mv.x);
1225                                                                             mb->mvs[0].x);                                                  mb->b_mvs[i].x = (int32_t) ((mv.x == 0)
1226                                                  mb->b_mvs[i].x =                                                                                  ? ((TRB - TRD) * last_mb->mvs[i].x)
1227                                                          (int32_t) ((mb->mvs[0].x ==                                                                                    / TRD
1228                                                                                  0) ? ((TRB -                                                                                  : mb->mvs[i].x - last_mb->mvs[i].x);
1229                                                                                             TRD) * last_mb->mvs[i].x) /                                                  mb->mvs[i].y = (int32_t) ((TRB * last_mb->mvs[i].y)
1230                                                                             TRD : mb->mvs[i].x - last_mb->mvs[i].x);                                                                        / TRD + mv.y);
1231                                                  mb->mvs[i].y =                                                  mb->b_mvs[i].y = (int32_t) ((mv.y == 0)
1232                                                          (int32_t) ((TRB * last_mb->mvs[i].y) / TRD +                                                                                  ? ((TRB - TRD) * last_mb->mvs[i].y)
1233                                                                             mb->mvs[0].y);                                                                                    / TRD
1234                                                  mb->b_mvs[i].y =                                                                              : mb->mvs[i].y - last_mb->mvs[i].y);
                                                         (int32_t) ((mb->mvs[0].y ==  
                                                                                 0) ? ((TRB -  
                                                                                            TRD) * last_mb->mvs[i].y) /  
                                                                            TRD : mb->mvs[i].y - last_mb->mvs[i].y);  
1235                                          }                                          }
1236                                          //DEBUG("B-frame Direct!\n");                                          /*DEBUG("B-frame Direct!\n"); */
1237                                  }                                  }
                                 mb->mode = MODE_INTER4V;  
1238                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],
1239                                                                                             mb, x, y, mb->cbp, bs);                                                                                             mb, x, y, bs);
1240                                  break;                                  break;
1241    
1242                          case MODE_INTERPOLATE:                          case MODE_INTERPOLATE:
1243                                  get_b_motion_vector(dec, bs, x, y, &mb->mvs[0], fcode_forward,                                  get_b_motion_vector(dec, bs, x, y, &mb->mvs[0], fcode_forward,
1244                                                                          dec->p_fmv);                                                                          dec->p_fmv);
1245                                  dec->p_fmv.x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x =                                  dec->p_fmv = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] =     mb->mvs[0];
                                         mb->mvs[0].x;  
                                 dec->p_fmv.y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y =  
                                         mb->mvs[0].y;  
1246    
1247                                  get_b_motion_vector(dec, bs, x, y, &mb->b_mvs[0],                                  get_b_motion_vector(dec, bs, x, y, &mb->b_mvs[0],
1248                                                                          fcode_backward, dec->p_bmv);                                                                          fcode_backward, dec->p_bmv);
1249                                  dec->p_bmv.x = mb->b_mvs[1].x = mb->b_mvs[2].x =                                  dec->p_bmv = mb->b_mvs[1] = mb->b_mvs[2] =
1250                                          mb->b_mvs[3].x = mb->b_mvs[0].x;                                          mb->b_mvs[3] = mb->b_mvs[0];
                                 dec->p_bmv.y = mb->b_mvs[1].y = mb->b_mvs[2].y =  
                                         mb->b_mvs[3].y = mb->b_mvs[0].y;  
1251    
1252                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],
1253                                                                                             mb, x, y, mb->cbp, bs);                                                                                             mb, x, y, bs);
1254                                  //DEBUG("B-frame Bidir!\n");                                  /*DEBUG("B-frame Bidir!\n"); */
1255                                  break;                                  break;
1256    
1257                          case MODE_BACKWARD:                          case MODE_BACKWARD:
1258                                  get_b_motion_vector(dec, bs, x, y, &mb->mvs[0], fcode_backward,                                  get_b_motion_vector(dec, bs, x, y, &mb->mvs[0], fcode_backward,
1259                                                                          dec->p_bmv);                                                                          dec->p_bmv);
1260                                  dec->p_bmv.x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x =                                  dec->p_bmv = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] =     mb->mvs[0];
                                         mb->mvs[0].x;  
                                 dec->p_bmv.y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y =  
                                         mb->mvs[0].y;  
1261    
1262                                    mb->mode = MODE_INTER;
1263                                  decoder_bf_mbinter(dec, mb, x, y, mb->cbp, bs, quant, 0);                                  decoder_bf_mbinter(dec, mb, x, y, mb->cbp, bs, quant, 0);
1264                                  //DEBUG("B-frame Backward!\n");                                  /*DEBUG("B-frame Backward!\n"); */
1265                                  break;                                  break;
1266    
1267                          case MODE_FORWARD:                          case MODE_FORWARD:
1268                                  get_b_motion_vector(dec, bs, x, y, &mb->mvs[0], fcode_forward,                                  get_b_motion_vector(dec, bs, x, y, &mb->mvs[0], fcode_forward,
1269                                                                          dec->p_fmv);                                                                          dec->p_fmv);
1270                                  dec->p_fmv.x = mb->mvs[1].x = mb->mvs[2].x = mb->mvs[3].x =                                  dec->p_fmv = mb->mvs[1] = mb->mvs[2] = mb->mvs[3] =     mb->mvs[0];
                                         mb->mvs[0].x;  
                                 dec->p_fmv.y = mb->mvs[1].y = mb->mvs[2].y = mb->mvs[3].y =  
                                         mb->mvs[0].y;  
1271    
1272                                    mb->mode = MODE_INTER;
1273                                  decoder_bf_mbinter(dec, mb, x, y, mb->cbp, bs, quant, 1);                                  decoder_bf_mbinter(dec, mb, x, y, mb->cbp, bs, quant, 1);
1274                                  //DEBUG("B-frame Forward!\n");                                  /*DEBUG("B-frame Forward!\n"); */
1275                                  break;                                  break;
1276    
1277                          default:                          default:
1278                                  //DEBUG1("Not support B-frame mb_type =", mb->mb_type);                                  DPRINTF(DPRINTF_ERROR, "Not support B-frame mb_type = %d", mb->mb_type);
                                 ;  
1279                          }                          }
1280    
1281                  }                                               // end of FOR                  }                                               /* end of FOR */
1282          }          }
1283  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1284          if (!first){          if (!first){
# Line 1264  Line 1289 
1289  #endif  #endif
1290  }  }
1291    
1292  // swap two MACROBLOCK array  /* swap two MACROBLOCK array */
1293  void  void
1294  mb_swap(MACROBLOCK ** mb1,  mb_swap(MACROBLOCK ** mb1,
1295                  MACROBLOCK ** mb2)                  MACROBLOCK ** mb2)
# Line 1290  Line 1315 
1315    
1316          start_global_timer();          start_global_timer();
1317    
1318            dec->out_frm = (frame->colorspace == XVID_CSP_EXTERN) ? frame->image : NULL;
1319    
1320          BitstreamInit(&bs, frame->bitstream, frame->length);          BitstreamInit(&bs, frame->bitstream, frame->length);
1321    
1322          // add by chenm001 <chenm001@163.com>          /* add by chenm001 <chenm001@163.com> */
1323          // for support B-frame to reference last 2 frame          /* for support B-frame to reference last 2 frame */
1324          dec->frames++;          dec->frames++;
1325          vop_type =          vop_type =
1326                  BitstreamReadHeaders(&bs, dec, &rounding, &quant, &fcode_forward,                  BitstreamReadHeaders(&bs, dec, &rounding, &quant, &fcode_forward,
1327                                                           &fcode_backward, &intra_dc_threshold);                                                           &fcode_backward, &intra_dc_threshold);
1328    
1329          dec->p_bmv.x = dec->p_bmv.y = dec->p_fmv.y = dec->p_fmv.y = 0;  // init pred vector to 0          dec->p_bmv.x = dec->p_bmv.y = dec->p_fmv.y = dec->p_fmv.y = 0;  /* init pred vector to 0 */
1330    
1331          switch (vop_type) {          switch (vop_type) {
1332          case P_VOP:          case P_VOP:
1333                  decoder_pframe(dec, &bs, rounding, quant, fcode_forward,                  decoder_pframe(dec, &bs, rounding, quant, fcode_forward,
1334                                             intra_dc_threshold);                                             intra_dc_threshold);
1335  #ifdef BFRAMES_DEC  #ifdef BFRAMES_DEC
1336                  DEBUG1("P_VOP  Time=", dec->time);                  DPRINTF(DPRINTF_DEBUG, "P_VOP  Time=%d", dec->time);
1337  #endif  #endif
1338                  break;                  break;
1339    
1340          case I_VOP:          case I_VOP:
1341                  decoder_iframe(dec, &bs, quant, intra_dc_threshold);                  decoder_iframe(dec, &bs, quant, intra_dc_threshold);
1342  #ifdef BFRAMES_DEC  #ifdef BFRAMES_DEC
1343                  DEBUG1("I_VOP  Time=", dec->time);                  DPRINTF(DPRINTF_DEBUG, "I_VOP  Time=%d", dec->time);
1344  #endif  #endif
1345                  break;                  break;
1346    
1347          case B_VOP:          case B_VOP:
1348  #ifdef BFRAMES_DEC  #ifdef BFRAMES_DEC
1349                  if (dec->time_pp > dec->time_bp) {                  if (dec->time_pp > dec->time_bp) {
1350                          DEBUG1("B_VOP  Time=", dec->time);                          DPRINTF(DPRINTF_DEBUG, "B_VOP  Time=%d", dec->time);
1351                          decoder_bframe(dec, &bs, quant, fcode_forward, fcode_backward);                          decoder_bframe(dec, &bs, quant, fcode_forward, fcode_backward);
1352                  } else {                  } else {
1353                          DEBUG("broken B-frame!");                          DPRINTF(DPRINTF_DEBUG, "Broken B_VOP");
1354                  }                  }
1355  #else  #else
1356                  image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);                  image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);
1357  #endif  #endif
1358                  break;                  break;
1359    
1360          case N_VOP:                             // vop not coded          case N_VOP:                             /* vop not coded */
1361                  // when low_delay==0, N_VOP's should interpolate between the past and future frames                  /* when low_delay==0, N_VOP's should interpolate between the past and future frames */
1362                  image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);                  image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);
1363                  break;                  break;
1364    
# Line 1341  Line 1368 
1368    
1369  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1370          if (frame->length != BitstreamPos(&bs) / 8){          if (frame->length != BitstreamPos(&bs) / 8){
1371                  DEBUG2("InLen/UseLen",frame->length, BitstreamPos(&bs) / 8);                  DPRINTF(DPRINTF_DEBUG, "InLen: %d / UseLen: %d", frame->length, BitstreamPos(&bs) / 8);
1372          }          }
1373  #endif  #endif
1374          frame->length = BitstreamPos(&bs) / 8;          frame->length = BitstreamPos(&bs) / 8;
1375    
1376    
1377  #ifdef BFRAMES_DEC  #ifdef BFRAMES_DEC
1378          // test if no B_VOP          /* test if no B_VOP */
1379          if (dec->low_delay) {          if (dec->low_delay || dec->frames == 0) {
1380  #endif  #endif
1381          image_output(&dec->cur, dec->width, dec->height, dec->edged_width,          image_output(&dec->cur, dec->width, dec->height, dec->edged_width,
1382                                           frame->image, frame->stride, frame->colorspace);                                           frame->image, frame->stride, frame->colorspace);
1383    
1384  #ifdef BFRAMES_DEC  #ifdef BFRAMES_DEC
1385          } else {          } else {
1386                  if (dec->frames >= 0) {                  if (dec->frames >= 1) {
1387                          start_timer();                          start_timer();
1388                          if ((vop_type == I_VOP || vop_type == P_VOP)) {                          if ((vop_type == I_VOP || vop_type == P_VOP)) {
1389                                  image_output(&dec->refn[0], dec->width, dec->height,                                  image_output(&dec->refn[0], dec->width, dec->height,
# Line 1375  Line 1402 
1402          if (vop_type == I_VOP || vop_type == P_VOP) {          if (vop_type == I_VOP || vop_type == P_VOP) {
1403                  image_swap(&dec->refn[0], &dec->refn[1]);                  image_swap(&dec->refn[0], &dec->refn[1]);
1404                  image_swap(&dec->cur, &dec->refn[0]);                  image_swap(&dec->cur, &dec->refn[0]);
1405                  // swap MACROBLOCK  
1406                  if (!dec->low_delay && vop_type == P_VOP)                  /* swap MACROBLOCK */
1407                    /* the Divx will not set the low_delay flage some times */
1408                    /* so follow code will wrong to not swap at that time */
1409                    /* this will broken bitstream! so I'm change it, */
1410                    /* But that is not the best way! can anyone tell me how */
1411                    /* to do another way? */
1412                    /* 18-07-2002   MinChen<chenm001@163.com> */
1413                    /*if (!dec->low_delay && vop_type == P_VOP) */
1414                    if (vop_type == P_VOP)
1415                          mb_swap(&dec->mbs, &dec->last_mbs);                          mb_swap(&dec->mbs, &dec->last_mbs);
1416          }          }
1417    

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.45

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4