[cvs] / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /xvidcore/src/encoder.c

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

revision 1.110, Sun Dec 5 13:56:13 2004 UTC revision 1.114, Fri Dec 10 03:45:18 2004 UTC
# Line 1503  Line 1503 
1503          return 1;                                       /* intra */          return 1;                                       /* intra */
1504  }  }
1505    
1506    static __inline void
1507    updateFcode(Statistics * sStat, Encoder * pEnc)
1508    {
1509            float fSigma;
1510            int iSearchRange;
1511    
1512  #define INTRA_THRESHOLD 0.5          if (sStat->iMvCount == 0)
1513  #define BFRAME_SKIP_THRESHHOLD 30                  sStat->iMvCount = 1;
1514    
1515            fSigma = (float) sqrt((float) sStat->iMvSum / sStat->iMvCount);
1516    
1517            iSearchRange = 16 << pEnc->mbParam.m_fcode;
1518    
1519            if ((3.0 * fSigma > iSearchRange) && (pEnc->mbParam.m_fcode <= 5) )
1520                    pEnc->mbParam.m_fcode++;
1521    
1522            else if ((5.0 * fSigma < iSearchRange)
1523                               && (4.0 * pEnc->fMvPrevSigma < iSearchRange)
1524                               && (pEnc->mbParam.m_fcode >= 2) )
1525                    pEnc->mbParam.m_fcode--;
1526    
1527            pEnc->fMvPrevSigma = fSigma;
1528    }
1529    
1530    #define BFRAME_SKIP_THRESHHOLD 30
1531    
1532  /* FrameCodeP also handles S(GMC)-VOPs */  /* FrameCodeP also handles S(GMC)-VOPs */
1533  static int  static int
1534  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
1535                     Bitstream * bs)                     Bitstream * bs)
1536  {  {
         float fSigma;  
1537          int bits = BitstreamPos(bs);          int bits = BitstreamPos(bs);
1538    
1539          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1540          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1541    
1542          int x, y, k;          int x, y, k;
         int iSearchRange;  
1543          int skip_possible;          int skip_possible;
1544          FRAMEINFO *const current = pEnc->current;          FRAMEINFO *const current = pEnc->current;
1545          FRAMEINFO *const reference = pEnc->reference;          FRAMEINFO *const reference = pEnc->reference;
# Line 1529  Line 1548 
1548          int mb_height = pParam->mb_height;          int mb_height = pParam->mb_height;
1549          int coded = 1;          int coded = 1;
1550    
   
         /* IMAGE *pCurrent = &current->image; */  
1551          IMAGE *pRef = &reference->image;          IMAGE *pRef = &reference->image;
1552    
1553          if (!reference->is_edged) {          if (!reference->is_edged) {
# Line 1558  Line 1575 
1575                  }                  }
1576          }          }
1577    
1578            current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1579                    current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;
1580    
1581          current->coding_type = P_VOP;          current->coding_type = P_VOP;
1582    
1583          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
# Line 1626  Line 1646 
1646    
1647          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1, current->mbs[0].quant);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1, current->mbs[0].quant);
1648    
         current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =  
                 current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;  
   
   
1649          for (y = 0; y < mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1650                  for (x = 0; x < mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1651                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
# Line 1648  Line 1664 
1664    
1665                                  current->sStat.kblks++;                                  current->sStat.kblks++;
1666    
1667                                  if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)                                  if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE) {
1668                                  {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                                          pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1669                                          qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */                                          qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1670                                          qcoeff[5*64+0]=0;                                          qcoeff[5*64+0]=0;
1671                                  }                                  }
# Line 1673  Line 1689 
1689    
1690                          pMB->field_pred = 0;                          pMB->field_pred = 0;
1691    
1692                          if (pMB->mode != MODE_NOT_CODED)                          if (pMB->cbp != 0) {
1693                          {       pMB->cbp =                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, current, pMB, x, y,
                                         MBTransQuantInter(&pEnc->mbParam, current, pMB, x, y,  
1694                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
1695                          }                          }
1696    
# Line 1800  Line 1815 
1815          }          }
1816    
1817          emms();          emms();
1818            updateFcode(&current->sStat, pEnc);
         if (current->sStat.iMvCount == 0)  
                 current->sStat.iMvCount = 1;  
   
         fSigma = (float) sqrt((float) current->sStat.iMvSum / current->sStat.iMvCount);  
   
         iSearchRange = 1 << (3 + pParam->m_fcode);  
   
         if ((fSigma > iSearchRange / 3)  
                 && (pParam->m_fcode <= (3 +  (pParam->vol_flags & XVID_VOL_QUARTERPEL?1:0)  ))) /* maximum search range 128 */  
         {  
                 pParam->m_fcode++;  
                 iSearchRange *= 2;  
         } else if ((fSigma < iSearchRange / 6)  
                            && (pEnc->fMvPrevSigma >= 0)  
                            && (pEnc->fMvPrevSigma < iSearchRange / 6)  
                            && (pParam->m_fcode >= (2 + (pParam->vol_flags & XVID_VOL_QUARTERPEL?1:0) )))        /* minimum search range 16 */  
         {  
                 pParam->m_fcode--;  
                 iSearchRange /= 2;  
         }  
   
         pEnc->fMvPrevSigma = fSigma;  
1819    
1820          /* frame drop code */          /* frame drop code */
1821  #if 0  #if 0
# Line 1979  Line 1972 
1972                                          MBMotionCompensation(mb, x, y, f_ref, NULL, f_ref, NULL, NULL, &frame->image,                                          MBMotionCompensation(mb, x, y, f_ref, NULL, f_ref, NULL, NULL, &frame->image,
1973                                                                                          NULL, 0, 0, pEnc->mbParam.edged_width, 0, 0);                                                                                          NULL, 0, 0, pEnc->mbParam.edged_width, 0, 0);
1974                                  }                                  }
   
1975                                  continue;                                  continue;
1976                          }                          }
1977    
1978                          if (mb->mode != MODE_DIRECT_NONE_MV || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {                          mb->quant = frame->quant;
1979    
1980                            if (mb->cbp != 0 || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
1981                                    /* we have to motion-compensate, transfer etc,
1982                                            because there might be blocks to code */
1983    
1984                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1985                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1986                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1987                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
1988                                                                           dct_codes);                                                                           dct_codes);
1989    
                                 if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;  
                                 mb->quant = frame->quant;  
   
                                 if (mb->mode != MODE_DIRECT_NONE_MV)  
1990                                          mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);                                          mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);
1991                            }
1992    
1993                            if (mb->mode == MODE_DIRECT_NO4V)
1994                                    mb->mode = MODE_DIRECT;
1995    
1996                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)                          if (mb->mode == MODE_DIRECT && (mb->cbp | mb->pmvs[3].x | mb->pmvs[3].y) == 0)
                                         && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {  
1997                                          mb->mode = MODE_DIRECT_NONE_MV; /* skipped */                                          mb->mode = MODE_DIRECT_NONE_MV; /* skipped */
                                 }  
                         }  
1998    
1999                          /* keep only bits 5-2 -- Chroma blocks will just be skipped by the                          /* keep only bits 5-2 -- Chroma blocks will just be skipped by the
2000                           * coding function for BFrames, that's why we don't zero teh DC                           * coding function for BFrames, that's why we don't zero teh DC
2001                           * coeffs */                           * coeffs */
2002                          if ((frame->vop_flags & XVID_VOP_GREYSCALE))                          if (frame->vop_flags & XVID_VOP_GREYSCALE)
2003                                  mb->cbp &= 0x3C;                                  mb->cbp &= 0x3C;
2004    
2005                          start_timer();                          start_timer();

Legend:
Removed from v.1.110  
changed lines
  Added in v.1.114

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