[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.51.2.8, Sun Aug 29 11:36:22 2004 UTC revision 1.55, Thu Apr 15 12:05:19 2004 UTC
# Line 4  Line 4 
4   *  - Decoder Module -   *  - Decoder Module -
5   *   *
6   *  Copyright(C) 2002      MinChen <chenm001@163.com>   *  Copyright(C) 2002      MinChen <chenm001@163.com>
7   *               2002-2003 Peter Ross <pross@xvid.org>   *               2002-2004 Peter Ross <pross@xvid.org>
8   *   *
9   *  This program is free software ; you can redistribute it and/or modify   *  This program is free software ; you can redistribute it and/or modify
10   *  it under the terms of the GNU General Public License as published by   *  it under the terms of the GNU General Public License as published by
# Line 222  Line 222 
222          dec->time = dec->time_base = dec->last_time_base = 0;          dec->time = dec->time_base = dec->last_time_base = 0;
223          dec->low_delay = 0;          dec->low_delay = 0;
224          dec->packed_mode = 0;          dec->packed_mode = 0;
         dec->time_inc_resolution = 1; /* until VOL header says otherwise */  
225    
226          dec->fixed_dimensions = (dec->width > 0 && dec->height > 0);          dec->fixed_dimensions = (dec->width > 0 && dec->height > 0);
227    
# Line 339  Line 338 
338                  stop_coding_timer();                  stop_coding_timer();
339    
340                  start_timer();                  start_timer();
341                  add_acdc(pMB, i, &block[i * 64], iDcScaler, predictors, dec->bs_version);                  add_acdc(pMB, i, &block[i * 64], iDcScaler, predictors);
342                  stop_prediction_timer();                  stop_prediction_timer();
343    
344                  start_timer();                  start_timer();
# Line 460  Line 459 
459          stop_transfer_timer();          stop_transfer_timer();
460  }  }
461    
 static void __inline  
 validate_vector(VECTOR * mv, unsigned int x_pos, unsigned int y_pos, const DECODER * dec)  
 {  
         /* clip a vector to valid range  
            prevents crashes if bitstream is broken  
         */  
         int shift = 5 + dec->quarterpel;  
         int xborder_high = (int)(dec->mb_width - x_pos) << shift;  
         int xborder_low = (-(int)x_pos-1) << shift;  
         int yborder_high = (int)(dec->mb_height - y_pos) << shift;  
         int yborder_low = (-(int)y_pos-1) << shift;  
   
 #define CHECK_MV(mv) \  
         do { \  
         if ((mv).x > xborder_high) { \  
                 DPRINTF(XVID_DEBUG_MV, "mv.x > max -- %d > %d, MB %d, %d", (mv).x, xborder_high, x_pos, y_pos); \  
                 (mv).x = xborder_high; \  
         } else if ((mv).x < xborder_low) { \  
                 DPRINTF(XVID_DEBUG_MV, "mv.x < min -- %d < %d, MB %d, %d", (mv).x, xborder_low, x_pos, y_pos); \  
                 (mv).x = xborder_low; \  
         } \  
         if ((mv).y > yborder_high) { \  
                 DPRINTF(XVID_DEBUG_MV, "mv.y > max -- %d > %d, MB %d, %d", (mv).y, yborder_high, x_pos, y_pos); \  
                 (mv).y = yborder_high; \  
         } else if ((mv).y < yborder_low) { \  
                 DPRINTF(XVID_DEBUG_MV, "mv.y < min -- %d < %d, MB %d, %d", (mv).y, yborder_low, x_pos, y_pos); \  
                 (mv).y = yborder_low; \  
         } \  
         } while (0)  
   
         CHECK_MV(mv[0]);  
         CHECK_MV(mv[1]);  
         CHECK_MV(mv[2]);  
         CHECK_MV(mv[3]);  
 }  
   
462  /* decode an inter macroblock */  /* decode an inter macroblock */
463  static void  static void
464  decoder_mbinter(DECODER * dec,  decoder_mbinter(DECODER * dec,
# Line 533  Line 496 
496                          mv[i] = pMB->mvs[i];                          mv[i] = pMB->mvs[i];
497          }          }
498    
499          validate_vector(mv, x_pos, y_pos, dec);          for (i = 0; i < 4; i++) {
500                    /* clip to valid range */
501                    int border = (int)(dec->mb_width - x_pos) << (5 + dec->quarterpel);
502                    if (mv[i].x > border) {
503                            DPRINTF(XVID_DEBUG_MV, "mv.x > max -- %d > %d, MB %d, %d", mv[i].x, border, x_pos, y_pos);
504                            mv[i].x = border;
505                    } else {
506                            border = (-(int)x_pos-1) << (5 + dec->quarterpel);
507                            if (mv[i].x < border) {
508                                    DPRINTF(XVID_DEBUG_MV, "mv.x < min -- %d < %d, MB %d, %d", mv[i].x, border, x_pos, y_pos);
509                                    mv[i].x = border;
510                            }
511                    }
512    
513                    border = (int)(dec->mb_height - y_pos) << (5 + dec->quarterpel);
514                    if (mv[i].y >  border) {
515                            DPRINTF(XVID_DEBUG_MV, "mv.y > max -- %d > %d, MB %d, %d", mv[i].y, border, x_pos, y_pos);
516                            mv[i].y = border;
517                    } else {
518                            border = (-(int)y_pos-1) << (5 + dec->quarterpel);
519                            if (mv[i].y < border) {
520                                    DPRINTF(XVID_DEBUG_MV, "mv.y < min -- %d < %d, MB %d, %d", mv[i].y, border, x_pos, y_pos);
521                                    mv[i].y = border;
522                            }
523                    }
524            }
525    
526          start_timer();          start_timer();
527    
# Line 1020  Line 1008 
1008  decoder_bf_interpolate_mbinter(DECODER * dec,  decoder_bf_interpolate_mbinter(DECODER * dec,
1009                                                                  IMAGE forward,                                                                  IMAGE forward,
1010                                                                  IMAGE backward,                                                                  IMAGE backward,
1011                                                                  MACROBLOCK * pMB,                                                                  const MACROBLOCK * pMB,
1012                                                                  const uint32_t x_pos,                                                                  const uint32_t x_pos,
1013                                                                  const uint32_t y_pos,                                                                  const uint32_t y_pos,
1014                                                                  Bitstream * bs,                                                                  Bitstream * bs,
# Line 1037  Line 1025 
1025          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);          pU_Cur = dec->cur.u + (y_pos << 3) * stride2 + (x_pos << 3);
1026          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);          pV_Cur = dec->cur.v + (y_pos << 3) * stride2 + (x_pos << 3);
1027    
         validate_vector(pMB->mvs, x_pos, y_pos, dec);  
         validate_vector(pMB->b_mvs, x_pos, y_pos, dec);  
   
1028          if (!direct) {          if (!direct) {
1029                  uv_dx = pMB->mvs[0].x;                  uv_dx = pMB->mvs[0].x;
1030                  uv_dy = pMB->mvs[0].y;                  uv_dy = pMB->mvs[0].y;
# Line 1154  Line 1139 
1139          interpolate8x8_avg2(dec->cur.y + (16 * y_pos * stride) + 16 * x_pos,          interpolate8x8_avg2(dec->cur.y + (16 * y_pos * stride) + 16 * x_pos,
1140                                                  dec->cur.y + (16 * y_pos * stride) + 16 * x_pos,                                                  dec->cur.y + (16 * y_pos * stride) + 16 * x_pos,
1141                                                  dec->tmp.y + (16 * y_pos * stride) + 16 * x_pos,                                                  dec->tmp.y + (16 * y_pos * stride) + 16 * x_pos,
1142                                                  stride, 0, 8);                                                  stride, 1, 8);
1143    
1144          interpolate8x8_avg2(dec->cur.y + (16 * y_pos * stride) + 16 * x_pos + 8,          interpolate8x8_avg2(dec->cur.y + (16 * y_pos * stride) + 16 * x_pos + 8,
1145                                                  dec->cur.y + (16 * y_pos * stride) + 16 * x_pos + 8,                                                  dec->cur.y + (16 * y_pos * stride) + 16 * x_pos + 8,
1146                                                  dec->tmp.y + (16 * y_pos * stride) + 16 * x_pos + 8,                                                  dec->tmp.y + (16 * y_pos * stride) + 16 * x_pos + 8,
1147                                                  stride, 0, 8);                                                  stride, 1, 8);
1148    
1149          interpolate8x8_avg2(dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,          interpolate8x8_avg2(dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1150                                                  dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,                                                  dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1151                                                  dec->tmp.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,                                                  dec->tmp.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1152                                                  stride, 0, 8);                                                  stride, 1, 8);
1153    
1154          interpolate8x8_avg2(dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,          interpolate8x8_avg2(dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1155                                                  dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,                                                  dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1156                                                  dec->tmp.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,                                                  dec->tmp.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1157                                                  stride, 0, 8);                                                  stride, 1, 8);
1158    
1159          interpolate8x8_avg2(dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,          interpolate8x8_avg2(dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,
1160                                                  dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,                                                  dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,
1161                                                  dec->tmp.u + (8 * y_pos * stride2) + 8 * x_pos,                                                  dec->tmp.u + (8 * y_pos * stride2) + 8 * x_pos,
1162                                                  stride2, 0, 8);                                                  stride2, 1, 8);
1163    
1164          interpolate8x8_avg2(dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,          interpolate8x8_avg2(dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,
1165                                                  dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,                                                  dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,
1166                                                  dec->tmp.v + (8 * y_pos * stride2) + 8 * x_pos,                                                  dec->tmp.v + (8 * y_pos * stride2) + 8 * x_pos,
1167                                                  stride2, 0, 8);                                                  stride2, 1, 8);
1168    
1169          stop_comp_timer();          stop_comp_timer();
1170    
# Line 1229  Line 1214 
1214          uint32_t x, y;          uint32_t x, y;
1215          VECTOR mv;          VECTOR mv;
1216          const VECTOR zeromv = {0,0};          const VECTOR zeromv = {0,0};
1217            const int64_t TRB = dec->time_pp - dec->time_bp, TRD = dec->time_pp;
1218          int i;          int i;
1219    
1220          start_timer();          start_timer();
# Line 1323  Line 1309 
1309    
1310                          case MODE_DIRECT_NONE_MV:                          case MODE_DIRECT_NONE_MV:
1311                                  for (i = 0; i < 4; i++) {                                  for (i = 0; i < 4; i++) {
1312                                          mb->mvs[i].x = last_mb->mvs[i].x*dec->time_bp/dec->time_pp + mv.x;                                          mb->mvs[i].x = (int32_t) ((TRB * last_mb->mvs[i].x) / TRD + mv.x);
1313                                          mb->mvs[i].y = last_mb->mvs[i].y*dec->time_bp/dec->time_pp + mv.y;                                          mb->b_mvs[i].x = (int32_t) ((mv.x == 0)
1314                                                                            ? ((TRB - TRD) * last_mb->mvs[i].x) / TRD
1315                                          mb->b_mvs[i].x = (mv.x)                                                                          : mb->mvs[i].x - last_mb->mvs[i].x);
1316                                                  ?  mb->mvs[i].x - last_mb->mvs[i].x                                          mb->mvs[i].y = (int32_t) ((TRB * last_mb->mvs[i].y) / TRD + mv.y);
1317                                                  : last_mb->mvs[i].x*(dec->time_bp - dec->time_pp)/dec->time_pp;                                          mb->b_mvs[i].y = (int32_t) ((mv.y == 0)
1318                                          mb->b_mvs[i].y = (mv.y)                                                                          ? ((TRB - TRD) * last_mb->mvs[i].y) / TRD
1319                                                  ? mb->mvs[i].y - last_mb->mvs[i].y                                                                          : mb->mvs[i].y - last_mb->mvs[i].y);
                                                 : last_mb->mvs[i].y*(dec->time_bp - dec->time_pp)/dec->time_pp;  
1320                                  }                                  }
1321    
1322                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],
# Line 1375  Line 1360 
1360                                          xvid_dec_frame_t * frame, xvid_dec_stats_t * stats,                                          xvid_dec_frame_t * frame, xvid_dec_stats_t * stats,
1361                                          int coding_type, int quant)                                          int coding_type, int quant)
1362  {  {
1363            const int brightness = XVID_VERSION_MINOR(frame->version) >= 1 ? frame->brightness : 0;
1364    
1365          if (dec->cartoon_mode)          if (dec->cartoon_mode)
1366                  frame->general &= ~XVID_FILMEFFECT;                  frame->general &= ~XVID_FILMEFFECT;
1367    
1368          if (frame->general & (XVID_DEBLOCKY|XVID_DEBLOCKUV|XVID_FILMEFFECT) && mbs != NULL)     /* post process */          if ((frame->general & (XVID_DEBLOCKY|XVID_DEBLOCKUV|XVID_FILMEFFECT) || brightness!=0)
1369                    && mbs != NULL) /* post process */
1370          {          {
1371                  /* note: image is stored to tmp */                  /* note: image is stored to tmp */
1372                  image_copy(&dec->tmp, img, dec->edged_width, dec->height);                  image_copy(&dec->tmp, img, dec->edged_width, dec->height);
1373                  image_postproc(&dec->postproc, &dec->tmp, dec->edged_width,                  image_postproc(&dec->postproc, &dec->tmp, dec->edged_width,
1374                                             mbs, dec->mb_width, dec->mb_height, dec->mb_width,                                             mbs, dec->mb_width, dec->mb_height, dec->mb_width,
1375                                             frame->general, dec->frames, (coding_type == B_VOP));                                             frame->general, brightness, dec->frames, (coding_type == B_VOP));
1376                  img = &dec->tmp;                  img = &dec->tmp;
1377          }          }
1378    
# Line 1407  Line 1395 
1395          }          }
1396  }  }
1397    
1398    
1399  int  int
1400  decoder_decode(DECODER * dec,  decoder_decode(DECODER * dec,
1401                                  xvid_dec_frame_t * frame, xvid_dec_stats_t * stats)                                  xvid_dec_frame_t * frame, xvid_dec_stats_t * stats)
# Line 1503  Line 1492 
1492                  goto repeat;                  goto repeat;
1493          }          }
1494    
         if(dec->frames == 0 && coding_type != I_VOP) {  
                 /* 1st frame is not an i-vop */  
                 goto repeat;  
         }  
   
1495          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 */
1496    
1497          /* packed_mode: special-N_VOP treament */          /* packed_mode: special-N_VOP treament */
# Line 1569  Line 1553 
1553    
1554                  if (dec->low_delay) {                  if (dec->low_delay) {
1555                          DPRINTF(XVID_DEBUG_ERROR, "warning: bvop found in low_delay==1 stream\n");                          DPRINTF(XVID_DEBUG_ERROR, "warning: bvop found in low_delay==1 stream\n");
1556                          dec->low_delay = 0;                          dec->low_delay = 1;
1557                  }                  }
1558    
1559                  if (dec->frames < 2) {                  if (dec->frames < 2) {

Legend:
Removed from v.1.51.2.8  
changed lines
  Added in v.1.55

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