[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.37.2.2, Sat Oct 5 21:34:21 2002 UTC revision 1.37.2.5, Fri Oct 11 15:07:32 2002 UTC
# Line 370  Line 370 
370    
371                  uv_dx = (uv_dx & 3) ? (uv_dx >> 1) | 1 : uv_dx / 2;                  uv_dx = (uv_dx & 3) ? (uv_dx >> 1) | 1 : uv_dx / 2;
372                  uv_dy = (uv_dy & 3) ? (uv_dy >> 1) | 1 : uv_dy / 2;                  uv_dy = (uv_dy & 3) ? (uv_dy >> 1) | 1 : uv_dy / 2;
373    
374                    start_timer();
375                    if(dec->quarterpel) {
376                            interpolate16x16_quarterpel(dec->cur.y, dec->refn[0].y, dec->refh.y, dec->refh.y + 64,
377                                                                                dec->refh.y + 128, 16*x_pos, 16*y_pos,
378                                                                                pMB->mvs[0].x, pMB->mvs[0].y, stride,  rounding);
379                    }
380                    else {
381                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16*x_pos, 16*y_pos,
382                                                                      pMB->mvs[0].x, pMB->mvs[0].y, stride,  rounding);
383                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16*x_pos + 8, 16*y_pos,
384                                                                  pMB->mvs[1].x, pMB->mvs[1].y, stride,  rounding);
385                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16*x_pos, 16*y_pos + 8,
386                                                                      pMB->mvs[2].x, pMB->mvs[2].y, stride,  rounding);
387                            interpolate8x8_switch(dec->cur.y, dec->refn[0].y, 16*x_pos + 8, 16*y_pos + 8,
388                                                                      pMB->mvs[3].x, pMB->mvs[3].y, stride,  rounding);
389                    }
390    
391                    interpolate8x8_switch(dec->cur.u, dec->refn[0].u, 8 * x_pos, 8 * y_pos,
392                                                              uv_dx, uv_dy, stride2, rounding);
393                    interpolate8x8_switch(dec->cur.v, dec->refn[0].v, 8 * x_pos, 8 * y_pos,
394                                                              uv_dx, uv_dy, stride2, rounding);
395                    stop_comp_timer();
396    
397          } else {          } else {
398                  int sum;                  int sum;
399                  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;
# Line 389  Line 413 
413                  }                  }
414    
415                  uv_dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));                  uv_dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));
         }  
416    
417          start_timer();          start_timer();
418          if(dec->quarterpel) {          if(dec->quarterpel) {
# Line 422  Line 445 
445          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,
446                                                    uv_dx, uv_dy, stride2, rounding);                                                    uv_dx, uv_dy, stride2, rounding);
447          stop_comp_timer();          stop_comp_timer();
448            }
449    
450          for (i = 0; i < 6; i++) {          for (i = 0; i < 6; i++) {
451                  int direction = dec->alternate_vertical_scan ? 2 : 0;                  int direction = dec->alternate_vertical_scan ? 2 : 0;
# Line 725  Line 749 
749                                                                  rounding);                                                                  rounding);
750                          } else                          // not coded                          } else                          // not coded
751                          {                          {
                                 DEBUG2("P-frame MB at (X,Y)=",x,y);  
752                                  mb->mode = MODE_NOT_CODED;                                  mb->mode = MODE_NOT_CODED;
753                                  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;
754                                  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;
# Line 940  Line 963 
963          stop_transfer_timer();          stop_transfer_timer();
964  }  }
965    
   
966  // add by MinChen <chenm001@163.com>  // add by MinChen <chenm001@163.com>
967  // decode an B-frame direct &  inter macroblock  // decode an B-frame direct &  inter macroblock
968  void  void
# Line 1058  Line 1080 
1080                                                  dec->refn[2].y + (16 * y_pos * stride) + 16 * x_pos + 8,                                                  dec->refn[2].y + (16 * y_pos * stride) + 16 * x_pos + 8,
1081                                                  stride, 0);                                                  stride, 0);
1082    
1083          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,
1084                                                  dec->cur.y + (16 * (y_pos + 8) * stride) + 16 * x_pos,                                                  dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1085                                                  dec->refn[2].y + (16 * (y_pos + 8) * stride) + 16 * x_pos,                                                  dec->refn[2].y + ((16 * y_pos + 8) * stride) + 16 * x_pos,
1086                                                  stride, 0);                                                  stride, 0);
1087    
1088          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,
1089                                                  dec->cur.y + (16 * (y_pos + 8) * stride) + 16 * x_pos + 8,                                                  dec->cur.y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1090                                                  dec->refn[2].y + (16 * (y_pos + 8) * stride) + 16 * x_pos + 8,                                                  dec->refn[2].y + ((16 * y_pos + 8) * stride) + 16 * x_pos + 8,
1091                                                  stride, 0);                                                  stride, 0);
1092    
1093          interpolate8x8_avg2(dec->cur.u + (8 * y_pos * stride) + 8 * x_pos,          interpolate8x8_avg2(dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,
1094                                                  dec->cur.u + (8 * y_pos * stride) + 8 * x_pos,                                                  dec->cur.u + (8 * y_pos * stride2) + 8 * x_pos,
1095                                                  dec->refn[2].u + (8 * y_pos * stride) + 8 * x_pos,                                                  dec->refn[2].u + (8 * y_pos * stride2) + 8 * x_pos,
1096                                                  stride2, 0);                                                  stride2, 0);
1097    
1098          interpolate8x8_avg2(dec->cur.v + (8 * y_pos * stride) + 8 * x_pos,          interpolate8x8_avg2(dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,
1099                                                  dec->cur.v + (8 * y_pos * stride) + 8 * x_pos,                                                  dec->cur.v + (8 * y_pos * stride2) + 8 * x_pos,
1100                                                  dec->refn[2].v + (8 * y_pos * stride) + 8 * x_pos,                                                  dec->refn[2].v + (8 * y_pos * stride2) + 8 * x_pos,
1101                                                  stride2, 0);                                                  stride2, 0);
1102    
1103          stop_comp_timer();          stop_comp_timer();
# Line 1363  Line 1385 
1385    
1386          BitstreamInit(&bs, frame->bitstream, frame->length);          BitstreamInit(&bs, frame->bitstream, frame->length);
1387    
1388            if(BitstreamShowBits(&bs, 8) == 0x7f)
1389                    return XVID_ERR_OK;
1390    
1391          // add by chenm001 <chenm001@163.com>          // add by chenm001 <chenm001@163.com>
1392          // for support B-frame to reference last 2 frame          // for support B-frame to reference last 2 frame
1393          dec->frames++;          dec->frames++;
# Line 1404  Line 1429 
1429          case N_VOP:                             // vop not coded          case N_VOP:                             // vop not coded
1430                  // 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
1431                  image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);                  image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);
1432    #ifdef BFRAMES_DEC
1433                    DEBUG1("N_VOP  Time=", dec->time);
1434    #endif
1435                  break;                  break;
1436    
1437          default:          default:

Legend:
Removed from v.1.37.2.2  
changed lines
  Added in v.1.37.2.5

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