[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 1070, Fri Jun 13 12:11:27 2003 UTC revision 1080, Wed Jul 2 13:15:01 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.32 2003-07-02 13:15:01 syskin 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 1194  Line 1196 
1196                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
1197                  }                  }
1198    
1199                    pEnc->iFrameNum = 1;
1200    
1201                  /* ---- update vol flags at IVOP ----------- */                  /* ---- update vol flags at IVOP ----------- */
1202                  pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;                  pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
# Line 1428  Line 1431 
1431          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1432          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1433    
         int mb_width = pEnc->mbParam.mb_width;  
         int mb_height = pEnc->mbParam.mb_height;  
   
1434          int iLimit;          int iLimit;
1435          int x, y, k;          int x, y, k;
1436          int iSearchRange;          int iSearchRange;
1437          int bIntra, skip_possible;          int bIntra=0, skip_possible;
1438            FRAMEINFO *const current = pEnc->current;
1439            FRAMEINFO *const reference = pEnc->reference;
1440      MBParam * const pParam = &pEnc->mbParam;
1441            int mb_width = pParam->mb_width;
1442            int mb_height = pParam->mb_height;
1443    
         /* IMAGE *pCurrent = &pEnc->current->image; */  
         IMAGE *pRef = &pEnc->reference->image;  
1444    
1445          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))          /* IMAGE *pCurrent = &current->image; */
1446            IMAGE *pRef = &reference->image;
1447    
1448            if ((current->vop_flags & XVID_VOP_REDUCED))
1449          {          {
1450                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pParam->width + 31) / 32;
1451                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pParam->height + 31) / 32;
1452          }          }
1453    
1454    
1455          start_timer();          start_timer();
1456          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pParam->edged_width, pParam->edged_height,
1457                                     pEnc->mbParam.width, pEnc->mbParam.height);                                     pParam->width, pParam->height);
1458          stop_edges_timer();          stop_edges_timer();
1459    
1460          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pParam->m_rounding_type = 1 - pParam->m_rounding_type;
1461          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          current->rounding_type = pParam->m_rounding_type;
1462          pEnc->current->fcode = pEnc->mbParam.m_fcode;          current->fcode = pParam->m_fcode;
1463    
1464          if (!force_inter)          if (!force_inter)
1465                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
1466          else          else
1467                  iLimit = mb_width * mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1468    
1469          if ((pEnc->current->vop_flags & XVID_VOP_HALFPEL)) {          if ((current->vop_flags & XVID_VOP_HALFPEL)) {
1470                  start_timer();                  start_timer();
1471                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1472                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pParam->edged_width,
1473                                                    pEnc->mbParam.edged_height,                                                    pParam->edged_height,
1474                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL),                                                    (pParam->vol_flags & XVID_VOL_QUARTERPEL),
1475                                                    pEnc->current->rounding_type);                                                    current->rounding_type);
1476                  stop_inter_timer();                  stop_inter_timer();
1477          }          }
1478    
1479          pEnc->current->coding_type = P_VOP;          current->coding_type = P_VOP;
1480    
1481    
1482      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);      SetMacroblockQuants(&pEnc->mbParam, current);
1483    
1484          start_timer();          start_timer();
1485          bIntra = MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,          if (current->vol_flags & XVID_VOL_GMC ) /* GMC only for S(GMC)-VOPs */
1486                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          {       int gmcval;
1487                           iLimit);                  current->warp = GlobalMotionEst( current->mbs, pParam, current, reference,
1488                                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1489    
1490                    if (current->motion_flags & XVID_GME_REFINE) {
1491                            gmcval = GlobalMotionEstRefine(&current->warp,
1492                                                                    current->mbs, pParam,
1493                                                                    current, reference,
1494                                                                    &current->image,
1495                                                                    &reference->image,
1496                                                                    &pEnc->vInterH,
1497                                                                    &pEnc->vInterV,
1498                                                                    &pEnc->vInterHV);
1499                            gmcval += /*current->quant */ 2 * (int)(pParam->mb_width*pParam->mb_height);
1500                    }
1501    
1502                    gmcval = globalSAD(&current->warp, pParam, current->mbs,
1503                                                            current,
1504                                                            &reference->image,
1505                                                            &current->image,
1506                                                            pEnc->vGMC.y);
1507                    gmcval += /*current->quant*/ 2 * (int)(pParam->mb_width*pParam->mb_height);
1508    
1509    /* 1st '3': 3 warpoints, 2nd '3': 16th pel res (2<<3) */
1510                    generate_GMCparameters( 3, 3, &current->warp,
1511                                    pParam->width, pParam->height,
1512                                    &current->new_gmc_data);
1513    
1514                    if ( (gmcval<0) && ( (current->warp.duv[1].x != 0) || (current->warp.duv[1].y != 0) ||
1515                             (current->warp.duv[2].x != 0) || (current->warp.duv[2].y != 0) ) )
1516                    {
1517                            current->coding_type = S_VOP;
1518    
1519                            generate_GMCimage(&current->new_gmc_data, &reference->image,
1520                                    pParam->mb_width, pParam->mb_height,
1521                                    pParam->edged_width, pParam->edged_width/2,
1522                                    pParam->m_fcode, ((pParam->vol_flags & XVID_VOL_QUARTERPEL)?1:0), 0,
1523                                    current->rounding_type, current->mbs, &pEnc->vGMC);
1524    
1525          stop_motion_timer();                  } else {
1526    
1527          if (bIntra == 1) return FrameCodeI(pEnc, bs);                          generate_GMCimage(&current->new_gmc_data, &reference->image,
1528                                    pParam->mb_width, pParam->mb_height,
1529                                    pParam->edged_width, pParam->edged_width/2,
1530                                    pParam->m_fcode, ((pParam->vol_flags & XVID_VOL_QUARTERPEL)?1:0), 0,
1531                                    current->rounding_type, current->mbs, NULL);    /* no warping, just AMV */
1532                    }
1533            }
1534    
1535          if ( ( pEnc->current->vol_flags & XVID_VOL_GMC )          bIntra =
1536                  && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )                  MotionEstimation(&pEnc->mbParam, current, reference,
1537          {                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1538                  pEnc->current->coding_type = S_VOP;                                           &pEnc->vGMC, iLimit);
1539    
                 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);  
1540    
1541          }          stop_motion_timer();
1542    
1543          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          if (bIntra == 1) return FrameCodeI(pEnc, bs);
1544    
1545            set_timecodes(current,reference,pParam->fbase);
1546          if (vol_header)          if (vol_header)
1547          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1548                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1549          }          }
1550    
1551          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1);
1552    
1553          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1554                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;
1555    
1556    
1557          for (y = 0; y < mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1558                  for (x = 0; x < mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1559                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1560                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &current->mbs[x + y * pParam->mb_width];
1561    
1562  /* 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 */
1563  /* 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 1566 
1566    
1567                          if (bIntra) {                          if (bIntra) {
1568                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1569                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,                                  MBTransQuantIntra(&pEnc->mbParam, current, pMB, x, y,
1570                                                                    dct_codes, qcoeff);                                                                    dct_codes, qcoeff);
1571    
1572                                  start_timer();                                  start_timer();
1573                                  MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                                  MBPrediction(current, x, y, pParam->mb_width, qcoeff);
1574                                  stop_prediction_timer();                                  stop_prediction_timer();
1575    
1576                                  pEnc->current->sStat.kblks++;                                  current->sStat.kblks++;
1577    
1578                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);
1579                                  stop_coding_timer();                                  stop_coding_timer();
1580                                  continue;                                  continue;
1581                          }                          }
1582    
1583                          if (pEnc->current->coding_type == S_VOP) {                          if (current->coding_type == S_VOP) {
1584    
1585                                  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,
1586                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                          pEnc->vGMC.y + 16*y*pParam->edged_width + 16*x,
1587                                          pEnc->mbParam.edged_width, 65536);                                          pParam->edged_width, 65536);
1588    
1589                                  if (pEnc->current->motion_flags & XVID_ME_CHROMA16) {                                  if (current->motion_flags & XVID_ME_CHROMA16) {
1590                                          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,
1591                                          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);
1592    
1593                                          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,
1594                                          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);
1595                                  }                                  }
1596    
1597                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1598    
1599                                          if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))                                          if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1600                                                  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;
1601                                          else                                          else
1602                                                  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 1612 
1612                          }                          }
1613    
1614                          start_timer();                          start_timer();
1615                          MBMotionCompensation(pMB, x, y, &pEnc->reference->image,                          MBMotionCompensation(pMB, x, y, &reference->image,
1616                                                                   &pEnc->vInterH, &pEnc->vInterV,                                                                   &pEnc->vInterH, &pEnc->vInterV,
1617                                                                   &pEnc->vInterHV, &pEnc->vGMC,                                                                   &pEnc->vInterHV, &pEnc->vGMC,
1618                                                                   &pEnc->current->image,                                                                   &current->image,
1619                                                                   dct_codes, pEnc->mbParam.width,                                                                   dct_codes, pParam->width,
1620                                                                   pEnc->mbParam.height,                                                                   pParam->height,
1621                                                                   pEnc->mbParam.edged_width,                                                                   pParam->edged_width,
1622                                                                   (pEnc->current->vol_flags & XVID_VOL_QUARTERPEL),                                                                   (current->vol_flags & XVID_VOL_QUARTERPEL),
1623                                                                   (pEnc->current->vop_flags & XVID_VOP_REDUCED),                                                                   (current->vop_flags & XVID_VOP_REDUCED),
1624                                                                   pEnc->current->rounding_type);                                                                   current->rounding_type);
1625    
1626                          stop_comp_timer();                          stop_comp_timer();
1627    
# Line 1592  Line 1633 
1633    
1634                          if (pMB->mode != MODE_NOT_CODED)                          if (pMB->mode != MODE_NOT_CODED)
1635                          {       pMB->cbp =                          {       pMB->cbp =
1636                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                          MBTransQuantInter(&pEnc->mbParam, current, pMB, x, y,
1637                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
1638                          }                          }
1639    
1640                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1641                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1642                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1643                                  pEnc->current->sStat.mblks++;                                  current->sStat.mblks++;
1644                          }  else {                          }  else {
1645                                  pEnc->current->sStat.ublks++;                                  current->sStat.ublks++;
1646                          }                          }
1647    
1648                          start_timer();                          start_timer();
# Line 1611  Line 1652 
1652                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1653                                                          (pMB->dquant == 0);                                                          (pMB->dquant == 0);
1654    
1655                          if (pEnc->current->coding_type == S_VOP)                          if (current->coding_type == S_VOP)
1656                                  skip_possible &= (pMB->mcsel == 1);                                  skip_possible &= (pMB->mcsel == 1);
1657                          else if (pEnc->current->coding_type == P_VOP) {                          else if (current->coding_type == P_VOP) {
1658                                  if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))                                  if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1659                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1660                                  else                                  else
1661                                          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 1665 
1665    
1666  /* 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 */
1667    
1668                                  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 */
1669                                  {                                  {
1670                                          int bSkip = 1;                                          int bSkip = 1;
1671    
1672                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1673                                          {                                          {
1674                                                  int iSAD;                                                  int iSAD;
1675                                                  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,
1676                                                                          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,
1677                                                                  pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);                                                                  pParam->edged_width,BFRAME_SKIP_THRESHHOLD);
1678                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1679                                                  {       bSkip = 0;                                                  {       bSkip = 0;
1680                                                          break;                                                          break;
# Line 1641  Line 1682 
1682                                          }                                          }
1683    
1684                                          if (!bSkip) {   /* no SKIP, but trivial block */                                          if (!bSkip) {   /* no SKIP, but trivial block */
1685                                                  if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {                                                  if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {
1686                                                          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);
1687                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1688                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1689                                                  }                                                  }
1690                                                  else {                                                  else {
1691                                                          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);
1692                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1693                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1694                                                  }                                                  }
1695                                                  pMB->mode = MODE_INTER;                                                  pMB->mode = MODE_INTER;
1696                                                  pMB->cbp = 0;                                                  pMB->cbp = 0;
1697                                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);
1698                                                  stop_coding_timer();                                                  stop_coding_timer();
1699    
1700                                                  continue;       /* next MB */                                                  continue;       /* next MB */
# Line 1668  Line 1709 
1709                          }                          }
1710                          /* ordinary case: normal coded INTER/INTER4V block */                          /* ordinary case: normal coded INTER/INTER4V block */
1711    
1712                          if ((pEnc->current->vop_flags & XVID_VOP_GREYSCALE))                          if ((current->vop_flags & XVID_VOP_GREYSCALE))
1713                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1714                                  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 */
1715                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1716                          }                          }
1717    
1718                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {                          if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {
1719                                  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);
1720                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1721                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1722                                  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);
1723                          } else {                          } else {
1724                                  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);
1725                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;
1726                                  pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1727                                  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 1732 
1732                          {       int k;                          {       int k;
1733                                  for (k=1;k<4;k++)                                  for (k=1;k<4;k++)
1734                                  {                                  {
1735                                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {                                          if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {
1736                                                  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);
1737                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1738                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
1739                                  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);
1740                                          } else {                                          } else {
1741                                                  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);
1742                                                  pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;
1743                                                  pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;
1744                                  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 1747 
1747                                  }                                  }
1748                          }                          }
1749    
1750                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                          MBCoding(current, pMB, qcoeff, bs, &pEnc->current->sStat);
1751                          stop_coding_timer();                          stop_coding_timer();
1752    
1753                  }                  }
1754          }          }
1755    
1756          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))          if ((current->vop_flags & XVID_VOP_REDUCED))
1757          {          {
1758                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&current->image, pParam->edged_width,
1759                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          current->mbs, mb_width, mb_height, pParam->mb_width,
1760                          16, 0);                          16, 0);
1761          }          }
1762    
1763          emms();          emms();
1764    
1765          if (pEnc->current->sStat.iMvCount == 0)          if (current->sStat.iMvCount == 0)
1766                  pEnc->current->sStat.iMvCount = 1;                  current->sStat.iMvCount = 1;
1767    
1768          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);          fSigma = (float) sqrt((float) current->sStat.iMvSum / current->sStat.iMvCount);
1769    
1770          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pParam->m_fcode);
1771    
1772          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1773          && (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 */
1774          {          {
1775                  pEnc->mbParam.m_fcode++;                  pParam->m_fcode++;
1776                  iSearchRange *= 2;                  iSearchRange *= 2;
1777          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1778                             && (pEnc->fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1779                             && (pEnc->fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1780                             && (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 */
1781          {          {
1782                  pEnc->mbParam.m_fcode--;                  pParam->m_fcode--;
1783                  iSearchRange /= 2;                  iSearchRange /= 2;
1784          }          }
1785    
# Line 1746  Line 1787 
1787    
1788          /* frame drop code */          /* frame drop code */
1789  #if 0  #if 0
1790          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);
1791  #endif  #endif
1792          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <          if (current->sStat.kblks + current->sStat.mblks <
1793                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)                  (pParam->frame_drop_ratio * mb_width * mb_height) / 100)
1794          {          {
1795                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;                  current->sStat.kblks = current->sStat.mblks = 0;
1796                  pEnc->current->sStat.ublks = mb_width * mb_height;                  current->sStat.ublks = mb_width * mb_height;
1797    
1798                  BitstreamReset(bs);                  BitstreamReset(bs);
1799    
1800                  set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);                  set_timecodes(current,reference,pParam->fbase);
1801                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 0);
1802    
1803                  /* copy reference frame details into the current frame */                  /* copy reference frame details into the current frame */
1804                  pEnc->current->quant = pEnc->reference->quant;                  current->quant = reference->quant;
1805                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  current->motion_flags = reference->motion_flags;
1806                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  current->rounding_type = reference->rounding_type;
1807                  pEnc->current->fcode = pEnc->reference->fcode;                  current->fcode = reference->fcode;
1808                  pEnc->current->bcode = pEnc->reference->bcode;                  current->bcode = reference->bcode;
1809                  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);
1810                  memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);                  memcpy(current->mbs, reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1811          }          }
1812    
1813          /* XXX: debug          /* XXX: debug
1814          {          {
1815                  char s[100];                  char s[100];
1816                  sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);                  sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1817                  image_dump_yuvpgm(&pEnc->current->image,                  image_dump_yuvpgm(&current->image,
1818                          pEnc->mbParam.edged_width,                          pParam->edged_width,
1819                          pEnc->mbParam.width, pEnc->mbParam.height, s);                          pParam->width, pParam->height, s);
1820    
1821                  sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);                  sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1822                  image_dump_yuvpgm(&pEnc->reference->image,                  image_dump_yuvpgm(&reference->image,
1823                          pEnc->mbParam.edged_width,                          pParam->edged_width,
1824                          pEnc->mbParam.width, pEnc->mbParam.height, s);                          pParam->width, pParam->height, s);
1825          }          }
1826          */          */
1827    
1828  /* 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 */
1829  #if 0  #if 0
1830          /* 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 */
1831          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)          if ((pParam->global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1832  #endif  #endif
1833                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1834  #if 0  #if 0
# Line 1795  Line 1836 
1836                  BitstreamPad(bs);                  BitstreamPad(bs);
1837  #endif  #endif
1838    
1839      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;      current->length = (BitstreamPos(bs) - bits) / 8;
1840    
1841          return 0;                                       /* inter */          return 0;                                       /* inter */
1842  }  }

Legend:
Removed from v.1070  
changed lines
  Added in v.1080

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