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

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

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

revision 327, Mon Jul 22 18:03:47 2002 UTC revision 358, Sun Aug 4 21:32:56 2002 UTC
# Line 39  Line 39 
39   *             MinChen <chenm001@163.com>   *             MinChen <chenm001@163.com>
40   *  14.04.2002 added FrameCodeB()   *  14.04.2002 added FrameCodeB()
41   *   *
42   *  $Id: encoder.c,v 1.63 2002-07-22 18:03:47 chl Exp $   *  $Id: encoder.c,v 1.70 2002-08-04 21:32:56 Isibaar Exp $
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
46    
47  #include <stdlib.h>  #include <stdlib.h>
48  #include <stdio.h>  #include <stdio.h>
49  #include <math.h>  #include <math.h>
# Line 55  Line 56 
56  #include "image/image.h"  #include "image/image.h"
57  #ifdef BFRAMES  #ifdef BFRAMES
58  #include "image/font.h"  #include "image/font.h"
59    #include "motion/sad.h"
60  #endif  #endif
61  #include "motion/motion.h"  #include "motion/motion.h"
62  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
# Line 422  Line 424 
424          pEnc->mbParam.m_seconds = 0;          pEnc->mbParam.m_seconds = 0;
425          pEnc->mbParam.m_ticks = 0;          pEnc->mbParam.m_ticks = 0;
426          pEnc->m_framenum = 0;          pEnc->m_framenum = 0;
427          pEnc->last_pframe = 1;          pEnc->last_pframe = 0;
428  #endif  #endif
429    
430          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
# Line 621  Line 623 
623  #ifdef BFRAMES  #ifdef BFRAMES
624  void inc_frame_num(Encoder * pEnc)  void inc_frame_num(Encoder * pEnc)
625  {  {
         pEnc->iFrameNum++;  
626          pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;          pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
627    
628          pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;          pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
# Line 1042  Line 1043 
1043                  goto bvop_loop;                  goto bvop_loop;
1044          }          }
1045    
1046            pEnc->iFrameNum++;
1047    
1048          BitstreamPad(&bs);          BitstreamPad(&bs);
1049          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1050    
# Line 1249  Line 1252 
1252          DEBUG(temp);          DEBUG(temp);
1253  #endif  #endif
1254    
 #ifdef BFRAMES  
1255          inc_frame_num(pEnc);          inc_frame_num(pEnc);
 #else  
1256          pEnc->iFrameNum++;          pEnc->iFrameNum++;
 #endif  
   
1257    
1258          stop_global_timer();          stop_global_timer();
1259          write_timer();          write_timer();
# Line 1534  Line 1533 
1533                          stop_prediction_timer();                          stop_prediction_timer();
1534    
1535                          start_timer();                          start_timer();
1536                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1537                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1538                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1539                                    qcoeff[5*64+0]=0;
1540                            }
1541                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1542                          stop_coding_timer();                          stop_coding_timer();
1543                  }                  }
# Line 1555  Line 1559 
1559    
1560    
1561  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1562    #define BFRAME_SKIP_THRESHHOLD 16
1563    
1564  static int  static int
1565  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1569  Line 1574 
1574          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1575    
1576          int iLimit;          int iLimit;
1577          uint32_t x, y;          int x, y, k;
1578          int iSearchRange;          int iSearchRange;
1579          int bIntra;          int bIntra;
1580    
# Line 1697  Line 1702 
1702                          }                          }
1703    
1704                          start_timer();                          start_timer();
1705    
1706                            /* Finished processing the MB, now check if to CODE or SKIP */
1707    
1708                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1709                                    pMB->mvs[0].y == 0) {
1710    
1711    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1712    
1713    #ifdef BFRAMES
1714                                    int iSAD=BFRAME_SKIP_THRESHHOLD;
1715                                    int bSkip=1;
1716    
1717                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1718                                    {
1719                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1720                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1721                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1722                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD)
1723                                            {       bSkip = 0;
1724                                                    break;
1725                                            }
1726                                    }
1727                                    if (!bSkip)
1728                                    {
1729                                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1730                                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1731                                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1732                                                    qcoeff[5*64+0]=0;
1733                                            }
1734                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1735                                            pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */
1736                                    }
1737                                    else
1738                                            MBSkip(bs);
1739    
1740    #else
1741                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1742    
1743    #endif
1744    
1745                            } else {
1746                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1747                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1748                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1749                                            qcoeff[5*64+0]=0;
1750                                    }
1751                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1752                            }
1753    
1754                          stop_coding_timer();                          stop_coding_timer();
1755                  }                  }
1756          }          }
# Line 1734  Line 1787 
1787  #ifdef BFRAMES  #ifdef BFRAMES
1788          /* frame drop code */          /* frame drop code */
1789          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1790          if (pEnc->sStat.kblks + pEnc->sStat.mblks <=          if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1791                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1792          {          {
1793                  pEnc->sStat.kblks = pEnc->sStat.mblks = 0;                  pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
# Line 1758  Line 1811 
1811          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1812    
1813  #ifdef BFRAMES  #ifdef BFRAMES
1814          pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;          pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->current->ticks) %
1815          pEnc->last_pframe = pEnc->mbParam.m_ticks;                          (int32_t)pEnc->mbParam.fbase;
1816            pEnc->last_pframe = pEnc->current->ticks;
1817  #endif  #endif
1818    
1819          return 0;                                       // inter          return 0;                                       // inter
# Line 1818  Line 1872 
1872    
1873          start_timer();          start_timer();
1874          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1875            ((int32_t)pEnc->mbParam.fbase + (int32_t)pEnc->mbParam.m_ticks + 1 - (int32_t)pEnc->last_pframe) % pEnc->mbParam.fbase,                  ((int32_t)pEnc->mbParam.fbase + pEnc->last_pframe - frame->ticks) % pEnc->mbParam.fbase,
1876                                                  pEnc->time_pp,                                                  pEnc->time_pp,
1877                                                  pEnc->reference->mbs, f_ref,                                                  pEnc->reference->mbs, f_ref,
1878                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
# Line 1883  Line 1937 
1937                                                                    qcoeff);                                                                    qcoeff);
1938                          //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);                          //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);
1939    
1940                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1941                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT)                                  && (mb->deltamv.x == 0) && (mb->deltamv.y == 0) ) {
                                 && mb->cbp == 0 && mb->mvs[0].x == 0 && mb->mvs[0].y == 0) {  
1942                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
1943                          }                          }
1944    
1945    /* update predictors for forward and backward vectors */
1946                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1947                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1948                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1902  Line 1956 
1956                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1957                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1958                          }                          }
1959    
1960  //                      DPRINTF("%05i : [%i %i] M=%i CBP=%i MVS=%i,%i forward=%i,%i", pEnc->m_framenum, x, y, mb->mode, mb->cbp, mb->mvs[0].x, mb->mvs[0].y, forward.x, forward.y);  //                      DPRINTF("%05i : [%i %i] M=%i CBP=%i MVS=%i,%i forward=%i,%i", pEnc->m_framenum, x, y, mb->mode, mb->cbp, mb->mvs[0].x, mb->mvs[0].y, forward.x, forward.y);
1961    
1962  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
# Line 1929  Line 1984 
1984  #endif  #endif
1985  }  }
1986  #endif  #endif
1987    
1988    
1989    /*      in case internal output is needed somewhere... */
1990    /*      {
1991            FILE *filehandle;
1992            filehandle=fopen("last-b.pgm","wb");
1993            if (filehandle)
1994            {
1995                    fprintf(filehandle,"P5\n\n");           //
1996                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
1997                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
1998                    fclose(filehandle);
1999                    }
2000            }
2001    */

Legend:
Removed from v.327  
changed lines
  Added in v.358

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