[svn] / branches / dev-api-4 / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/src/encoder.c

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

revision 1076, Fri Jun 27 13:53:41 2003 UTC revision 1077, Sat Jun 28 15:54:16 2003 UTC
# Line 21  Line 21 
21   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
22   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23   *   *
24   * $Id: encoder.c,v 1.95.2.30 2003-06-13 12:11:27 suxen_drol Exp $   * $Id: encoder.c,v 1.95.2.31 2003-06-28 15:49:40 chl Exp $
25   *   *
26   ****************************************************************************/   ****************************************************************************/
27    
# Line 38  Line 38 
38  #include "image/font.h"  #include "image/font.h"
39  #include "motion/sad.h"  #include "motion/sad.h"
40  #include "motion/motion.h"  #include "motion/motion.h"
41    #include "motion/gmc.h"
42    
43  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
44  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
45  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
# Line 1428  Line 1430 
1430          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1431          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1432    
         int mb_width = pEnc->mbParam.mb_width;  
         int mb_height = pEnc->mbParam.mb_height;  
   
1433          int iLimit;          int iLimit;
1434          int x, y, k;          int x, y, k;
1435          int iSearchRange;          int iSearchRange;
1436          int bIntra, skip_possible;          int bIntra=0, skip_possible;
1437            FRAMEINFO *const current = pEnc->current;
1438            FRAMEINFO *const reference = pEnc->reference;
1439      MBParam * const pParam = &pEnc->mbParam;
1440            int mb_width = pParam->mb_width;
1441            int mb_height = pParam->mb_height;
1442    
         /* IMAGE *pCurrent = &pEnc->current->image; */  
         IMAGE *pRef = &pEnc->reference->image;  
1443    
1444          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))          /* IMAGE *pCurrent = &current->image; */
1445            IMAGE *pRef = &reference->image;
1446    
1447            if ((current->vop_flags & XVID_VOP_REDUCED))
1448          {          {
1449                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pParam->width + 31) / 32;
1450                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pParam->height + 31) / 32;
1451          }          }
1452    
1453    
1454          start_timer();          start_timer();
1455          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pParam->edged_width, pParam->edged_height,
1456                                     pEnc->mbParam.width, pEnc->mbParam.height);                                     pParam->width, pParam->height);
1457          stop_edges_timer();          stop_edges_timer();
1458    
1459          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pParam->m_rounding_type = 1 - pParam->m_rounding_type;
1460          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          current->rounding_type = pParam->m_rounding_type;
1461          pEnc->current->fcode = pEnc->mbParam.m_fcode;          current->fcode = pParam->m_fcode;
1462    
1463          if (!force_inter)          if (!force_inter)
1464                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
1465          else          else
1466                  iLimit = mb_width * mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1467    
1468          if ((pEnc->current->vop_flags & XVID_VOP_HALFPEL)) {          if ((current->vop_flags & XVID_VOP_HALFPEL)) {
1469                  start_timer();                  start_timer();
1470                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1471                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pParam->edged_width,
1472                                                    pEnc->mbParam.edged_height,                                                    pParam->edged_height,
1473                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL),                                                    (pParam->vol_flags & XVID_VOL_QUARTERPEL),
1474                                                    pEnc->current->rounding_type);                                                    current->rounding_type);
1475                  stop_inter_timer();                  stop_inter_timer();
1476          }          }
1477    
1478          pEnc->current->coding_type = P_VOP;          current->coding_type = P_VOP;
1479    
1480    
1481      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);      SetMacroblockQuants(&pEnc->mbParam, current);
1482    
1483          start_timer();          start_timer();
1484          bIntra = MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,          if (current->vol_flags & XVID_VOL_GMC ) /* GMC only for S(GMC)-VOPs */
1485                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          {       int gmcval;
1486                           iLimit);                  current->warp = GlobalMotionEst( current->mbs, pParam, current, reference,
1487                                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1488    
1489                    if (current->motion_flags & XVID_GME_REFINE) {
1490                            gmcval = GlobalMotionEstRefine(&current->warp,
1491                                                                    current->mbs, pParam,
1492                                                                    current, reference,
1493                                                                    &current->image,
1494                                                                    &reference->image,
1495                                                                    &pEnc->vInterH,
1496                                                                    &pEnc->vInterV,
1497                                                                    &pEnc->vInterHV);
1498                            gmcval += /*current->quant */ 2 * (int)(pParam->mb_width*pParam->mb_height);
1499                    }
1500    
1501                    gmcval = globalSAD(&current->warp, pParam, current->mbs,
1502                                                            current,
1503                                                            &reference->image,
1504                                                            &current->image,
1505                                                            pEnc->vGMC.y);
1506                    gmcval += /*current->quant*/ 2 * (int)(pParam->mb_width*pParam->mb_height);
1507    
1508    /* 1st '3': 3 warpoints, 2nd '3': 16th pel res (2<<3) */
1509                    generate_GMCparameters( 3, 3, &current->warp,
1510                                    pParam->width, pParam->height,
1511                                    &current->new_gmc_data);
1512    
1513                    if ( (gmcval<0) && ( (current->warp.duv[1].x != 0) || (current->warp.duv[1].y != 0) ||
1514                             (current->warp.duv[2].x != 0) || (current->warp.duv[2].y != 0) ) )
1515                    {
1516                            current->coding_type = S_VOP;
1517    
1518                            generate_GMCimage(&current->new_gmc_data, &reference->image,
1519                                    pParam->mb_width, pParam->mb_height,
1520                                    pParam->edged_width, pParam->edged_width/2,
1521                                    pParam->m_fcode, ((pParam->vol_flags & XVID_VOL_QUARTERPEL)?1:0), 0,
1522                                    current->rounding_type, current->mbs, &pEnc->vGMC);
1523    
1524          stop_motion_timer();                  } else {
1525    
1526          if (bIntra == 1) return FrameCodeI(pEnc, bs);                          generate_GMCimage(&current->new_gmc_data, &reference->image,
1527                                    pParam->mb_width, pParam->mb_height,
1528                                    pParam->edged_width, pParam->edged_width/2,
1529                                    pParam->m_fcode, ((pParam->vol_flags & XVID_VOL_QUARTERPEL)?1:0), 0,
1530                                    current->rounding_type, current->mbs, NULL);    /* no warping, just AMV */
1531                    }
1532            }
1533    
1534          if ( ( pEnc->current->vol_flags & XVID_VOL_GMC )          bIntra =
1535                  && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )                  MotionEstimation(&pEnc->mbParam, current, reference,
1536          {                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1537                  pEnc->current->coding_type = S_VOP;                                           &pEnc->vGMC, iLimit);
1538    
                 generate_GMCparameters( 2, 16, &pEnc->current->warp,  
                                         pEnc->mbParam.width, pEnc->mbParam.height,  
                                         &pEnc->current->gmc_data);  
   
                 generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,  
                                 pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,  
                                 pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,  
                                 pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0,  
                                 pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);  
1539    
1540          }          stop_motion_timer();
1541    
1542          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          if (bIntra == 1) return FrameCodeI(pEnc, bs);
1543    
1544            set_timecodes(current,reference,pParam->fbase);
1545          if (vol_header)          if (vol_header)
1546          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1547                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1548          }          }
1549    
1550          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1);
1551    
1552          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1553                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;
1554    
1555    
1556          for (y = 0; y < mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1557                  for (x = 0; x < mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1558                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1559                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &current->mbs[x + y * pParam->mb_width];
1560    
1561  /* Mode decision: Check, if the block should be INTRA / INTER or GMC-coded */  /* Mode decision: Check, if the block should be INTRA / INTER or GMC-coded */
1562  /* For a start, leave INTRA decision as is, only choose only between INTER/GMC  - gruel, 9.1.2002 */  /* For a start, leave INTRA decision as is, only choose only between INTER/GMC  - gruel, 9.1.2002 */
# Line 1525  Line 1565 
1565    
1566                          if (bIntra) {                          if (bIntra) {
1567                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1568                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,                                  MBTransQuantIntra(&pEnc->mbParam, current, pMB, x, y,
1569                                                                    dct_codes, qcoeff);                                                                    dct_codes, qcoeff);
1570    
1571                                  start_timer();                                  start_timer();
1572                                  MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                                  MBPrediction(current, x, y, pParam->mb_width, qcoeff);
1573                                  stop_prediction_timer();                                  stop_prediction_timer();
1574    
1575                                  pEnc->current->sStat.kblks++;                                  current->sStat.kblks++;
1576    
1577                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);
1578                                  stop_coding_timer();                                  stop_coding_timer();
1579                                  continue;                                  continue;
1580                          }                          }
1581    
1582                          if (pEnc->current->coding_type == S_VOP) {                          if (current->coding_type == S_VOP) {
1583    
1584                                  int32_t iSAD = sad16(pEnc->current->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                  int32_t iSAD = sad16(current->image.y + 16*y*pParam->edged_width + 16*x,
1585                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                          pEnc->vGMC.y + 16*y*pParam->edged_width + 16*x,
1586                                          pEnc->mbParam.edged_width, 65536);                                          pParam->edged_width, 65536);
1587    
1588                                  if (pEnc->current->motion_flags & XVID_ME_CHROMA16) {                                  if (current->motion_flags & XVID_ME_CHROMA16) {
1589                                          iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,                                          iSAD += sad8(current->image.u + 8*y*(pParam->edged_width/2) + 8*x,
1590                                          pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);                                          pEnc->vGMC.u + 8*y*(pParam->edged_width/2) + 8*x, pParam->edged_width/2);
1591    
1592                                          iSAD += sad8(pEnc->current->image.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,                                          iSAD += sad8(current->image.v + 8*y*(pParam->edged_width/2) + 8*x,
1593                                          pEnc->vGMC.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);                                          pEnc->vGMC.v + 8*y*(pParam->edged_width/2) + 8*x, pParam->edged_width/2);
1594                                  }                                  }
1595    
1596                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1597    
1598                                          if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))                                          if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1599                                                  pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;                                                  pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1600                                          else                                          else
1601                                                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;                                                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
# Line 1571  Line 1611 
1611                          }                          }
1612    
1613                          start_timer();                          start_timer();
1614                          MBMotionCompensation(pMB, x, y, &pEnc->reference->image,                          MBMotionCompensation(pMB, x, y, &reference->image,
1615                                                                   &pEnc->vInterH, &pEnc->vInterV,                                                                   &pEnc->vInterH, &pEnc->vInterV,
1616                                                                   &pEnc->vInterHV, &pEnc->vGMC,                                                                   &pEnc->vInterHV, &pEnc->vGMC,
1617                                                                   &pEnc->current->image,                                                                   &current->image,
1618                                                                   dct_codes, pEnc->mbParam.width,                                                                   dct_codes, pParam->width,
1619                                                                   pEnc->mbParam.height,                                                                   pParam->height,
1620                                                                   pEnc->mbParam.edged_width,                                                                   pParam->edged_width,
1621                                                                   (pEnc->current->vol_flags & XVID_VOL_QUARTERPEL),                                                                   (current->vol_flags & XVID_VOL_QUARTERPEL),
1622                                                                   (pEnc->current->vop_flags & XVID_VOP_REDUCED),                                                                   (current->vop_flags & XVID_VOP_REDUCED),
1623                                                                   pEnc->current->rounding_type);                                                                   current->rounding_type);
1624    
1625                          stop_comp_timer();                          stop_comp_timer();
1626    
# Line 1592  Line 1632 
1632    
1633                          if (pMB->mode != MODE_NOT_CODED)                          if (pMB->mode != MODE_NOT_CODED)
1634                          {       pMB->cbp =                          {       pMB->cbp =
1635                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, current, pMB, x, y,
1636                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
1637                          }                          }
1638    
1639                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1640                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1641                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1642                                  pEnc->current->sStat.mblks++;                                  current->sStat.mblks++;
1643                          }  else {                          }  else {
1644                                  pEnc->current->sStat.ublks++;                                  current->sStat.ublks++;
1645                          }                          }
1646    
1647                          start_timer();                          start_timer();
# Line 1611  Line 1651 
1651                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1652                                                          (pMB->dquant == 0);                                                          (pMB->dquant == 0);
1653    
1654                          if (pEnc->current->coding_type == S_VOP)                          if (current->coding_type == S_VOP)
1655                                  skip_possible &= (pMB->mcsel == 1);                                  skip_possible &= (pMB->mcsel == 1);
1656                          else if (pEnc->current->coding_type == P_VOP) {                          else if (current->coding_type == P_VOP) {
1657                                  if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))                                  if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1658                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1659                                  else                                  else
1660                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );
# Line 1624  Line 1664 
1664    
1665  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1666    
1667                                  if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */                                  if (current->coding_type == P_VOP)      /* special rule for P-VOP's SKIP */
1668                                  {                                  {
1669                                          int bSkip = 1;                                          int bSkip = 1;
1670    
1671                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1672                                          {                                          {
1673                                                  int iSAD;                                                  int iSAD;
1674                                                  iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                                  iSAD = sad16(reference->image.y + 16*y*pParam->edged_width + 16*x,
1675                                                                          pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                                                          pEnc->bframes[k]->image.y + 16*y*pParam->edged_width + 16*x,
1676                                                                  pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);                                                                  pParam->edged_width,BFRAME_SKIP_THRESHHOLD);
1677                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1678                                                  {       bSkip = 0;                                                  {       bSkip = 0;
1679                                                          break;                                                          break;
# Line 1641  Line 1681 
1681                                          }                                          }
1682    
1683                                          if (!bSkip) {   /* no SKIP, but trivial block */                                          if (!bSkip) {   /* no SKIP, but trivial block */
1684                                                  if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {                                                  if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {
1685                                                          VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_qpmv2(current->mbs, pParam->mb_width, 0, x, y, 0);
1686                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1687                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1688                                                  }                                                  }
1689                                                  else {                                                  else {
1690                                                          VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_pmv2(current->mbs, pParam->mb_width, 0, x, y, 0);
1691                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1692                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1693                                                  }                                                  }
1694                                                  pMB->mode = MODE_INTER;                                                  pMB->mode = MODE_INTER;
1695                                                  pMB->cbp = 0;                                                  pMB->cbp = 0;
1696                                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);
1697                                                  stop_coding_timer();                                                  stop_coding_timer();
1698    
1699                                                  continue;       /* next MB */                                                  continue;       /* next MB */
# Line 1668  Line 1708 
1708                          }                          }
1709                          /* ordinary case: normal coded INTER/INTER4V block */                          /* ordinary case: normal coded INTER/INTER4V block */
1710    
1711                          if ((pEnc->current->vop_flags & XVID_VOP_GREYSCALE))                          if ((current->vop_flags & XVID_VOP_GREYSCALE))
1712                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1713                                  qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */                                  qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1714                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1715                          }                          }
1716    
1717                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {                          if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {
1718                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                  VECTOR predMV = get_qpmv2(current->mbs, pParam->mb_width, 0, x, y, 0);
1719                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1720                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1721                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1722                          } else {                          } else {
1723                                  VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                  VECTOR predMV = get_pmv2(current->mbs, pParam->mb_width, 0, x, y, 0);
1724                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;
1725                                  pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1726                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
# Line 1691  Line 1731 
1731                          {       int k;                          {       int k;
1732                                  for (k=1;k<4;k++)                                  for (k=1;k<4;k++)
1733                                  {                                  {
1734                                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {                                          if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {
1735                                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);                                                  VECTOR predMV = get_qpmv2(current->mbs, pParam->mb_width, 0, x, y, k);
1736                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1737                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
1738                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1739                                          } else {                                          } else {
1740                                                  VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);                                                  VECTOR predMV = get_pmv2(current->mbs, pParam->mb_width, 0, x, y, k);
1741                                                  pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;
1742                                                  pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;
1743                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
# Line 1706  Line 1746 
1746                                  }                                  }
1747                          }                          }
1748    
1749                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                          MBCoding(current, pMB, qcoeff, bs, &pEnc->current->sStat);
1750                          stop_coding_timer();                          stop_coding_timer();
1751    
1752                  }                  }
1753          }          }
1754    
1755          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))          if ((current->vop_flags & XVID_VOP_REDUCED))
1756          {          {
1757                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&current->image, pParam->edged_width,
1758                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          current->mbs, mb_width, mb_height, pParam->mb_width,
1759                          16, 0);                          16, 0);
1760          }          }
1761    
1762          emms();          emms();
1763    
1764          if (pEnc->current->sStat.iMvCount == 0)          if (current->sStat.iMvCount == 0)
1765                  pEnc->current->sStat.iMvCount = 1;                  current->sStat.iMvCount = 1;
1766    
1767          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);          fSigma = (float) sqrt((float) current->sStat.iMvSum / current->sStat.iMvCount);
1768    
1769          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pParam->m_fcode);
1770    
1771          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1772          && (pEnc->mbParam.m_fcode <= (3 +  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0)  )))     /* maximum search range 128 */          && (pParam->m_fcode <= (3 +  (pParam->vol_flags & XVID_VOL_QUARTERPEL?1:0)  ))) /* maximum search range 128 */
1773          {          {
1774                  pEnc->mbParam.m_fcode++;                  pParam->m_fcode++;
1775                  iSearchRange *= 2;                  iSearchRange *= 2;
1776          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1777                             && (pEnc->fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1778                             && (pEnc->fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1779                             && (pEnc->mbParam.m_fcode >= (2 + (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0) )))    /* minimum search range 16 */                             && (pParam->m_fcode >= (2 + (pParam->vol_flags & XVID_VOL_QUARTERPEL?1:0) )))        /* minimum search range 16 */
1780          {          {
1781                  pEnc->mbParam.m_fcode--;                  pParam->m_fcode--;
1782                  iSearchRange /= 2;                  iSearchRange /= 2;
1783          }          }
1784    
# Line 1746  Line 1786 
1786    
1787          /* frame drop code */          /* frame drop code */
1788  #if 0  #if 0
1789          DPRINTF(XVID_DEBUG_DEBUG, "kmu %i %i %i\n", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);          DPRINTF(XVID_DEBUG_DEBUG, "kmu %i %i %i\n", current->sStat.kblks, current->sStat.mblks, current->sStat.ublks);
1790  #endif  #endif
1791          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <          if (current->sStat.kblks + current->sStat.mblks <
1792                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)                  (pParam->frame_drop_ratio * mb_width * mb_height) / 100)
1793          {          {
1794                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;                  current->sStat.kblks = current->sStat.mblks = 0;
1795                  pEnc->current->sStat.ublks = mb_width * mb_height;                  current->sStat.ublks = mb_width * mb_height;
1796    
1797                  BitstreamReset(bs);                  BitstreamReset(bs);
1798    
1799                  set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);                  set_timecodes(current,reference,pParam->fbase);
1800                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 0);
1801    
1802                  /* copy reference frame details into the current frame */                  /* copy reference frame details into the current frame */
1803                  pEnc->current->quant = pEnc->reference->quant;                  current->quant = reference->quant;
1804                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  current->motion_flags = reference->motion_flags;
1805                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  current->rounding_type = reference->rounding_type;
1806                  pEnc->current->fcode = pEnc->reference->fcode;                  current->fcode = reference->fcode;
1807                  pEnc->current->bcode = pEnc->reference->bcode;                  current->bcode = reference->bcode;
1808                  image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);                  image_copy(&current->image, &reference->image, pParam->edged_width, pParam->height);
1809                  memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);                  memcpy(current->mbs, reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1810          }          }
1811    
1812          /* XXX: debug          /* XXX: debug
1813          {          {
1814                  char s[100];                  char s[100];
1815                  sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);                  sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1816                  image_dump_yuvpgm(&pEnc->current->image,                  image_dump_yuvpgm(&current->image,
1817                          pEnc->mbParam.edged_width,                          pParam->edged_width,
1818                          pEnc->mbParam.width, pEnc->mbParam.height, s);                          pParam->width, pParam->height, s);
1819    
1820                  sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);                  sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1821                  image_dump_yuvpgm(&pEnc->reference->image,                  image_dump_yuvpgm(&reference->image,
1822                          pEnc->mbParam.edged_width,                          pParam->edged_width,
1823                          pEnc->mbParam.width, pEnc->mbParam.height, s);                          pParam->width, pParam->height, s);
1824          }          }
1825          */          */
1826    
1827  /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */  /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1828  #if 0  #if 0
1829          /* for divx5 compatibility, we must always pad between the packed p and b frames */          /* for divx5 compatibility, we must always pad between the packed p and b frames */
1830          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)          if ((pParam->global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1831  #endif  #endif
1832                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1833  #if 0  #if 0
# Line 1795  Line 1835 
1835                  BitstreamPad(bs);                  BitstreamPad(bs);
1836  #endif  #endif
1837    
1838      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;      current->length = (BitstreamPos(bs) - bits) / 8;
1839    
1840          return 0;                                       /* inter */          return 0;                                       /* inter */
1841  }  }

Legend:
Removed from v.1076  
changed lines
  Added in v.1077

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