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

Diff of /trunk/xvidcore/src/encoder.c

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

revision 317, Fri Jul 19 14:56:00 2002 UTC revision 347, Sun Jul 28 13:06:46 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.57 2002-07-19 14:56:00 chl Exp $   *  $Id: encoder.c,v 1.65 2002-07-28 13:06:45 chl 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 209  Line 211 
211    
212          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
213    
214          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
215                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
216    
217          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
# Line 344  Line 346 
346          pEnc->global = pParam->global;          pEnc->global = pParam->global;
347          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
348          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->bquant_ratio = pParam->bquant_ratio;
349            pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
350          pEnc->bframes = NULL;          pEnc->bframes = NULL;
351    
352          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 852  Line 855 
855                  else                  else
856                          pEnc->current->quant = pFrame->quant;                          pEnc->current->quant = pFrame->quant;
857    
858                  if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
859                          pEnc->current->quant = 1;                          pEnc->current->quant = 1;
860    
861                  if (pEnc->current->quant > 31)                  if (pEnc->current->quant > 31)
862                          pEnc->current->quant = 31;                          pEnc->current->quant = 31;
863    */
864                  pEnc->current->global_flags = pFrame->general;                  pEnc->current->global_flags = pFrame->general;
865                  pEnc->current->motion_flags = pFrame->motion;                  pEnc->current->motion_flags = pFrame->motion;
866    
# Line 1004  Line 1007 
1007                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1008                   */                   */
1009    
                 DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",  
                                 pEnc->bframenum_head, pEnc->bframenum_tail,  
                                 pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);  
   
1010                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1011                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1012                  }                  }
# Line 1019  Line 1018 
1018                  } else {                  } else {
1019                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1020                  }                  }
1021                    if (pEnc->current->quant < 1)
1022                            pEnc->current->quant = 1;
1023    
1024                    if (pEnc->current->quant > 31)
1025                            pEnc->current->quant = 31;
1026    
1027    
1028                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1029                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1030                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1031    
1032    
1033    
1034                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1035                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 1546  Line 1557 
1557    
1558    
1559  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1560    #define BFRAME_SKIP_THRESHHOLD 16
1561    
1562  static int  static int
1563  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1560  Line 1572 
1572          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1573    
1574          int iLimit;          int iLimit;
1575          uint32_t x, y;          int k;
1576            int x, y;
1577          int iSearchRange;          int iSearchRange;
1578          int bIntra;          int bIntra;
1579    
# Line 1688  Line 1701 
1701                          }                          }
1702    
1703                          start_timer();                          start_timer();
1704    
1705                            /* Finished processing the MB, now check if to CODE or SKIP */
1706    
1707                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1708                                    pMB->mvs[0].y == 0) {
1709    
1710    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1711    
1712    #ifdef BFRAMES
1713                                    int iSAD=BFRAME_SKIP_THRESHHOLD;
1714                                    int bSkip=1;
1715    
1716                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1717                                    {
1718                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1719                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1720                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1721                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD)
1722                                            {       bSkip = 0;
1723                                                    break;
1724                                            }
1725                                    }
1726                                    if (!bSkip)
1727                                    {
1728                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1729                                            pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */
1730                                    }
1731                                    else
1732                                            MBSkip(bs);
1733    
1734    
1735    #else
1736                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1737    
1738    #endif
1739    
1740                            } else {
1741                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1742                            }
1743    
1744                          stop_coding_timer();                          stop_coding_timer();
1745                  }                  }
1746          }          }
# Line 1722  Line 1774 
1774    
1775          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1776    
1777    #ifdef BFRAMES
1778            /* frame drop code */
1779            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1780            if (pEnc->sStat.kblks + pEnc->sStat.mblks <=
1781                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1782            {
1783                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1784                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1785    
1786                    BitstreamReset(bs);
1787                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1788    
1789                    // copy reference frame details into the current frame
1790                    pEnc->current->quant = pEnc->reference->quant;
1791                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1792                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1793                    pEnc->current->fcode = pEnc->reference->fcode;
1794                    pEnc->current->bcode = pEnc->reference->bcode;
1795                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1796                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1797    
1798            }
1799    #endif
1800    
1801          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1802    
1803    #ifdef BFRAMES
1804          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->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;
         fprintf(stderr,"fbase=%d last_p=%d ticks=%d time_pp = %d\n",pEnc->mbParam.fbase,pEnc->last_pframe,pEnc->mbParam.m_ticks,pEnc->time_pp);  
   
1805          pEnc->last_pframe = pEnc->mbParam.m_ticks;          pEnc->last_pframe = pEnc->mbParam.m_ticks;
1806    #endif
1807    
1808          return 0;                                       // inter          return 0;                                       // inter
1809  }  }
1810    
# Line 1783  Line 1860 
1860          stop_inter_timer();          stop_inter_timer();
1861    
1862          start_timer();          start_timer();
         fprintf(stderr,"m_ticks =%d\n",(int32_t)pEnc->mbParam.m_ticks+1);  
1863          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1864            ((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 + (int32_t)pEnc->mbParam.m_ticks + 1 - (int32_t)pEnc->last_pframe) % pEnc->mbParam.fbase,
1865                                                  pEnc->time_pp,                                                  pEnc->time_pp,
# Line 1850  Line 1926 
1926                                                                    qcoeff);                                                                    qcoeff);
1927                          //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);
1928    
1929                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1930                          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) {  
1931                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
1932                          }                          }
1933    
1934    /* update predictors for forward and backward vectors */
1935                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1936                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1937                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1869  Line 1945 
1945                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1946                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1947                          }                          }
1948    
1949  //                      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);
1950    
1951  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
# Line 1896  Line 1973 
1973  #endif  #endif
1974  }  }
1975  #endif  #endif
1976    
1977    
1978    /*      in case internal output is needed somewhere... */
1979    /*      {
1980            FILE *filehandle;
1981            filehandle=fopen("last-b.pgm","wb");
1982            if (filehandle)
1983            {
1984                    fprintf(filehandle,"P5\n\n");           //
1985                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
1986                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
1987                    fclose(filehandle);
1988                    }
1989            }
1990    */

Legend:
Removed from v.317  
changed lines
  Added in v.347

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