[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.54, Sun Apr 11 09:41:27 2004 UTC revision 1.62, Wed Jul 14 23:26:06 2004 UTC
# Line 48  Line 48 
48  #include "image/interpolate8x8.h"  #include "image/interpolate8x8.h"
49  #include "image/reduced.h"  #include "image/reduced.h"
50  #include "image/font.h"  #include "image/font.h"
51    #include "image/qpel.h"
52    
53  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
54  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
# Line 61  Line 62 
62  #include "image/postprocessing.h"  #include "image/postprocessing.h"
63  #include "utils/mem_align.h"  #include "utils/mem_align.h"
64    
65    #ifdef ARCH_IS_IA32
66    #define interpolate16x16_quarterpel new_interpolate16x16_quarterpel
67    #define interpolate8x8_quarterpel new_interpolate8x8_quarterpel
68    #endif
69    
70  static int  static int
71  decoder_resize(DECODER * dec)  decoder_resize(DECODER * dec)
72  {  {
# Line 222  Line 228 
228          dec->time = dec->time_base = dec->last_time_base = 0;          dec->time = dec->time_base = dec->last_time_base = 0;
229          dec->low_delay = 0;          dec->low_delay = 0;
230          dec->packed_mode = 0;          dec->packed_mode = 0;
231            dec->time_inc_resolution = 1; /* until VOL header says otherwise */
232    
233          dec->fixed_dimensions = (dec->width > 0 && dec->height > 0);          dec->fixed_dimensions = (dec->width > 0 && dec->height > 0);
234    
# Line 338  Line 345 
345                  stop_coding_timer();                  stop_coding_timer();
346    
347                  start_timer();                  start_timer();
348                  add_acdc(pMB, i, &block[i * 64], iDcScaler, predictors);                  add_acdc(pMB, i, &block[i * 64], iDcScaler, predictors, dec->bs_version);
349                  stop_prediction_timer();                  stop_prediction_timer();
350    
351                  start_timer();                  start_timer();
# Line 392  Line 399 
399                                  const int reduced_resolution,                                  const int reduced_resolution,
400                                  const MACROBLOCK * pMB)                                  const MACROBLOCK * pMB)
401  {  {
         DECLARE_ALIGNED_MATRIX(block, 1, 64, int16_t, CACHE_LINE);  
402          DECLARE_ALIGNED_MATRIX(data, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(data, 6, 64, int16_t, CACHE_LINE);
403    
404          int stride = dec->edged_width;          int stride = dec->edged_width;
# Line 401  Line 407 
407          int i;          int i;
408          const uint32_t iQuant = pMB->quant;          const uint32_t iQuant = pMB->quant;
409          const int direction = dec->alternate_vertical_scan ? 2 : 0;          const int direction = dec->alternate_vertical_scan ? 2 : 0;
410          const quant_interFuncPtr dequant = dec->quant_type == 0 ? dequant_h263_inter : dequant_mpeg_inter;          typedef void (*get_inter_block_function_t)(
411                            Bitstream * bs,
412                            int16_t * block,
413                            int direction,
414                            const int quant,
415                            const uint16_t *matrix);
416    
417            const get_inter_block_function_t get_inter_block = (dec->quant_type == 0)
418                    ? get_inter_block_h263
419                    : get_inter_block_mpeg;
420    
421            memset(&data[0], 0, 6*64*sizeof(int16_t));      /* clear */
422    
423          for (i = 0; i < 6; i++) {          for (i = 0; i < 6; i++) {
424    
425                  if (cbp & (1 << (5 - i))) {     /* coded */                  if (cbp & (1 << (5 - i))) {     /* coded */
426    
                         memset(block, 0, 64 * sizeof(int16_t)); /* clear */  
427    
428                            /* Decode coeffs and dequantize on the fly */
429                          start_timer();                          start_timer();
430                          get_inter_block(bs, block, direction);                          get_inter_block(bs, &data[i*64], direction, iQuant, get_inter_matrix(dec->mpeg_quant_matrices));
431                          stop_coding_timer();                          stop_coding_timer();
432    
433                          start_timer();                          start_timer();
                         dequant(&data[i * 64], block, iQuant, dec->mpeg_quant_matrices);  
                         stop_iquant_timer();  
   
                         start_timer();  
434                          idct(&data[i * 64]);                          idct(&data[i * 64]);
435                          stop_idct_timer();                          stop_idct_timer();
436                  }                  }
# Line 814  Line 827 
827                  mb_height = (dec->height + 31) / 32;                  mb_height = (dec->height + 31) / 32;
828          }          }
829    
830            if (!dec->is_edged[0]) {
831          start_timer();          start_timer();
832          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,
833                                          dec->width, dec->height, dec->bs_version);                                          dec->width, dec->height, dec->bs_version);
834                    dec->is_edged[0] = 1;
835          stop_edges_timer();          stop_edges_timer();
836            }
837    
838          if (gmc_warp) {          if (gmc_warp) {
839                  /* accuracy: 0==1/2, 1=1/4, 2=1/8, 3=1/16 */                  /* accuracy: 0==1/2, 1=1/4, 2=1/8, 3=1/16 */
# Line 1028  Line 1044 
1044          if (!direct) {          if (!direct) {
1045                  uv_dx = pMB->mvs[0].x;                  uv_dx = pMB->mvs[0].x;
1046                  uv_dy = pMB->mvs[0].y;                  uv_dy = pMB->mvs[0].y;
   
1047                  b_uv_dx = pMB->b_mvs[0].x;                  b_uv_dx = pMB->b_mvs[0].x;
1048                  b_uv_dy = pMB->b_mvs[0].y;                  b_uv_dy = pMB->b_mvs[0].y;
1049    
# Line 1041  Line 1056 
1056    
1057                  uv_dx = (uv_dx >> 1) + roundtab_79[uv_dx & 0x3];                  uv_dx = (uv_dx >> 1) + roundtab_79[uv_dx & 0x3];
1058                  uv_dy = (uv_dy >> 1) + roundtab_79[uv_dy & 0x3];                  uv_dy = (uv_dy >> 1) + roundtab_79[uv_dy & 0x3];
   
1059                  b_uv_dx = (b_uv_dx >> 1) + roundtab_79[b_uv_dx & 0x3];                  b_uv_dx = (b_uv_dx >> 1) + roundtab_79[b_uv_dx & 0x3];
1060                  b_uv_dy = (b_uv_dy >> 1) + roundtab_79[b_uv_dy & 0x3];                  b_uv_dy = (b_uv_dy >> 1) + roundtab_79[b_uv_dy & 0x3];
1061    
1062          } else {          } else {
                 if(dec->quarterpel) {  
                         uv_dx = (pMB->mvs[0].x / 2) + (pMB->mvs[1].x / 2) + (pMB->mvs[2].x / 2) + (pMB->mvs[3].x / 2);  
                         uv_dy = (pMB->mvs[0].y / 2) + (pMB->mvs[1].y / 2) + (pMB->mvs[2].y / 2) + (pMB->mvs[3].y / 2);  
                         b_uv_dx = (pMB->b_mvs[0].x / 2) + (pMB->b_mvs[1].x / 2) + (pMB->b_mvs[2].x / 2) + (pMB->b_mvs[3].x / 2);  
                         b_uv_dy = (pMB->b_mvs[0].y / 2) + (pMB->b_mvs[1].y / 2) + (pMB->b_mvs[2].y / 2) + (pMB->b_mvs[3].y / 2);  
                 } else {  
1063                          uv_dx = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;                          uv_dx = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;
1064                          uv_dy = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;                          uv_dy = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;
1065                          b_uv_dx = pMB->b_mvs[0].x + pMB->b_mvs[1].x + pMB->b_mvs[2].x + pMB->b_mvs[3].x;                          b_uv_dx = pMB->b_mvs[0].x + pMB->b_mvs[1].x + pMB->b_mvs[2].x + pMB->b_mvs[3].x;
1066                          b_uv_dy = pMB->b_mvs[0].y + pMB->b_mvs[1].y + pMB->b_mvs[2].y + pMB->b_mvs[3].y;                          b_uv_dy = pMB->b_mvs[0].y + pMB->b_mvs[1].y + pMB->b_mvs[2].y + pMB->b_mvs[3].y;
1067    
1068                    if (dec->quarterpel) {
1069                            uv_dx /= 2;
1070                            uv_dy /= 2;
1071                            b_uv_dx /= 2;
1072                            b_uv_dy /= 2;
1073                  }                  }
1074    
1075                  uv_dx = (uv_dx >> 3) + roundtab_76[uv_dx & 0xf];                  uv_dx = (uv_dx >> 3) + roundtab_76[uv_dx & 0xf];
# Line 1214  Line 1228 
1228          uint32_t x, y;          uint32_t x, y;
1229          VECTOR mv;          VECTOR mv;
1230          const VECTOR zeromv = {0,0};          const VECTOR zeromv = {0,0};
         const int64_t TRB = dec->time_pp - dec->time_bp, TRD = dec->time_pp;  
1231          int i;          int i;
1232    
1233            if (!dec->is_edged[0]) {
1234          start_timer();          start_timer();
1235          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,
1236                                          dec->width, dec->height, dec->bs_version);                                          dec->width, dec->height, dec->bs_version);
1237                    dec->is_edged[0] = 1;
1238                    stop_edges_timer();
1239            }
1240    
1241            if (!dec->is_edged[1]) {
1242                    start_timer();
1243          image_setedges(&dec->refn[1], dec->edged_width, dec->edged_height,          image_setedges(&dec->refn[1], dec->edged_width, dec->edged_height,
1244                                          dec->width, dec->height, dec->bs_version);                                          dec->width, dec->height, dec->bs_version);
1245                    dec->is_edged[1] = 1;
1246          stop_edges_timer();          stop_edges_timer();
1247            }
1248    
1249          for (y = 0; y < dec->mb_height; y++) {          for (y = 0; y < dec->mb_height; y++) {
1250                  /* Initialize Pred Motion Vector */                  /* Initialize Pred Motion Vector */
# Line 1309  Line 1331 
1331    
1332                          case MODE_DIRECT_NONE_MV:                          case MODE_DIRECT_NONE_MV:
1333                                  for (i = 0; i < 4; i++) {                                  for (i = 0; i < 4; i++) {
1334                                          mb->mvs[i].x = (int32_t) ((TRB * last_mb->mvs[i].x) / TRD + mv.x);                                          mb->mvs[i].x = last_mb->mvs[i].x*dec->time_bp/dec->time_pp + mv.x;
1335                                          mb->b_mvs[i].x = (int32_t) ((mv.x == 0)                                          mb->mvs[i].y = last_mb->mvs[i].y*dec->time_bp/dec->time_pp + mv.y;
1336                                                                          ? ((TRB - TRD) * last_mb->mvs[i].x) / TRD  
1337                                                                          : mb->mvs[i].x - last_mb->mvs[i].x);                                          mb->b_mvs[i].x = (mv.x)
1338                                          mb->mvs[i].y = (int32_t) ((TRB * last_mb->mvs[i].y) / TRD + mv.y);                                                  ?  mb->mvs[i].x - last_mb->mvs[i].x
1339                                          mb->b_mvs[i].y = (int32_t) ((mv.y == 0)                                                  : last_mb->mvs[i].x*(dec->time_bp - dec->time_pp)/dec->time_pp;
1340                                                                          ? ((TRB - TRD) * last_mb->mvs[i].y) / TRD                                          mb->b_mvs[i].y = (mv.y)
1341                                                                          : mb->mvs[i].y - last_mb->mvs[i].y);                                                  ? mb->mvs[i].y - last_mb->mvs[i].y
1342                                                    : last_mb->mvs[i].y*(dec->time_bp - dec->time_pp)/dec->time_pp;
1343                                  }                                  }
1344    
1345                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],                                  decoder_bf_interpolate_mbinter(dec, dec->refn[1], dec->refn[0],
# Line 1360  Line 1383 
1383                                          xvid_dec_frame_t * frame, xvid_dec_stats_t * stats,                                          xvid_dec_frame_t * frame, xvid_dec_stats_t * stats,
1384                                          int coding_type, int quant)                                          int coding_type, int quant)
1385  {  {
1386            const int brightness = XVID_VERSION_MINOR(frame->version) >= 1 ? frame->brightness : 0;
1387    
1388          if (dec->cartoon_mode)          if (dec->cartoon_mode)
1389                  frame->general &= ~XVID_FILMEFFECT;                  frame->general &= ~XVID_FILMEFFECT;
1390    
1391          if ((frame->general & (XVID_DEBLOCKY|XVID_DEBLOCKUV|XVID_FILMEFFECT) || frame->brightness!=0)          if ((frame->general & (XVID_DEBLOCKY|XVID_DEBLOCKUV|XVID_FILMEFFECT) || brightness!=0)
1392                  && mbs != NULL) /* post process */                  && mbs != NULL) /* post process */
1393          {          {
1394                  /* note: image is stored to tmp */                  /* note: image is stored to tmp */
1395                  image_copy(&dec->tmp, img, dec->edged_width, dec->height);                  image_copy(&dec->tmp, img, dec->edged_width, dec->height);
1396                  image_postproc(&dec->postproc, &dec->tmp, dec->edged_width,                  image_postproc(&dec->postproc, &dec->tmp, dec->edged_width,
1397                                             mbs, dec->mb_width, dec->mb_height, dec->mb_width,                                             mbs, dec->mb_width, dec->mb_height, dec->mb_width,
1398                                             frame->general, frame->brightness, dec->frames, (coding_type == B_VOP));                                             frame->general, brightness, dec->frames, (coding_type == B_VOP));
1399                  img = &dec->tmp;                  img = &dec->tmp;
1400          }          }
1401    
# Line 1490  Line 1515 
1515                  goto repeat;                  goto repeat;
1516          }          }
1517    
1518            if(dec->frames == 0 && coding_type != I_VOP) {
1519                    /* 1st frame is not an i-vop */
1520                    goto repeat;
1521            }
1522    
1523          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 */
1524    
1525          /* packed_mode: special-N_VOP treament */          /* packed_mode: special-N_VOP treament */
# Line 1539  Line 1569 
1569                  }                  }
1570    
1571                  image_swap(&dec->refn[0], &dec->refn[1]);                  image_swap(&dec->refn[0], &dec->refn[1]);
1572                    dec->is_edged[1] = dec->is_edged[0];
1573                  image_swap(&dec->cur, &dec->refn[0]);                  image_swap(&dec->cur, &dec->refn[0]);
1574                    dec->is_edged[0] = 0;
1575                  SWAP(MACROBLOCK *, dec->mbs, dec->last_mbs);                  SWAP(MACROBLOCK *, dec->mbs, dec->last_mbs);
1576                  dec->last_reduced_resolution = reduced_resolution;                  dec->last_reduced_resolution = reduced_resolution;
1577                  dec->last_coding_type = coding_type;                  dec->last_coding_type = coding_type;
# Line 1551  Line 1583 
1583    
1584                  if (dec->low_delay) {                  if (dec->low_delay) {
1585                          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");
1586                          dec->low_delay = 1;                          dec->low_delay = 0;
1587                  }                  }
1588    
1589                  if (dec->frames < 2) {                  if (dec->frames < 2) {

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.62

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