[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 387, Tue Sep 3 17:25:45 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.76 2002-09-03 17:25:18 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 421  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            pEnc->last_sync = 0;
429  #endif  #endif
430    
431          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
# Line 617  Line 621 
621  }  }
622    
623    
 #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    #ifdef BFRAMES
629            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
630            if (pEnc->mbParam.m_ticks < pEnc->last_sync)
631                    pEnc->mbParam.m_seconds = 1;            // more than 1 second since last I or P is not supported.
632            else
633                    pEnc->mbParam.m_seconds = 0;
634    
635            if (pEnc->current->coding_type != B_VOP)
636                    pEnc->last_sync = pEnc->mbParam.m_ticks;
637    #else
638    
639          pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;          pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
640          pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;          pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
641  }  
642  #endif  #endif
643    
644    }
645    
646    
647  #ifdef BFRAMES  #ifdef BFRAMES
648  void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)  void queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
# Line 823  Line 838 
838    
839                  pFrame->intra = 0;                  pFrame->intra = 0;
840    
841                  BitstreamPutBits(&bs, 0x7f, 8);                  BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP
842                  BitstreamPad(&bs);                  BitstreamPad(&bs);
843                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
844    
# Line 852  Line 867 
867                  else                  else
868                          pEnc->current->quant = pFrame->quant;                          pEnc->current->quant = pFrame->quant;
869    
870                  if (pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
871                          pEnc->current->quant = 1;                          pEnc->current->quant = 1;
872    
873                  if (pEnc->current->quant > 31)                  if (pEnc->current->quant > 31)
874                          pEnc->current->quant = 31;                          pEnc->current->quant = 31;
875    */
876                  pEnc->current->global_flags = pFrame->general;                  pEnc->current->global_flags = pFrame->general;
877                  pEnc->current->motion_flags = pFrame->motion;                  pEnc->current->motion_flags = pFrame->motion;
878    
# Line 1004  Line 1019 
1019                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1020                   */                   */
1021    
                 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);  
   
1022                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1023                          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");
1024                  }                  }
# Line 1019  Line 1030 
1030                  } else {                  } else {
1031                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1032                  }                  }
1033                    if (pEnc->current->quant < 1)
1034                            pEnc->current->quant = 1;
1035    
1036                    if (pEnc->current->quant > 31)
1037                            pEnc->current->quant = 31;
1038    
1039    
1040                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1041                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1042                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1043    
1044    
1045    
1046                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1047                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 1033  Line 1056 
1056                  goto bvop_loop;                  goto bvop_loop;
1057          }          }
1058    
1059            pEnc->iFrameNum++;
1060    
1061          BitstreamPad(&bs);          BitstreamPad(&bs);
1062          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1063    
# Line 1107  Line 1132 
1132    
1133          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1134          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
 #ifdef BFRAMES  
1135          pEnc->current->seconds = pEnc->mbParam.m_seconds;          pEnc->current->seconds = pEnc->mbParam.m_seconds;
1136          pEnc->current->ticks = pEnc->mbParam.m_ticks;          pEnc->current->ticks = pEnc->mbParam.m_ticks;
 #endif  
1137          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1138    
1139          start_timer();          start_timer();
# Line 1240  Line 1263 
1263          DEBUG(temp);          DEBUG(temp);
1264  #endif  #endif
1265    
 #ifdef BFRAMES  
1266          inc_frame_num(pEnc);          inc_frame_num(pEnc);
 #else  
1267          pEnc->iFrameNum++;          pEnc->iFrameNum++;
 #endif  
   
1268    
1269          stop_global_timer();          stop_global_timer();
1270          write_timer();          write_timer();
# Line 1525  Line 1544 
1544                          stop_prediction_timer();                          stop_prediction_timer();
1545    
1546                          start_timer();                          start_timer();
1547                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1548                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1549                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1550                                    qcoeff[5*64+0]=0;
1551                            }
1552                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1553                          stop_coding_timer();                          stop_coding_timer();
1554                  }                  }
# Line 1546  Line 1570 
1570    
1571    
1572  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1573    #define BFRAME_SKIP_THRESHHOLD 16
1574    
1575  static int  static int
1576  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
# Line 1560  Line 1585 
1585          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1586    
1587          int iLimit;          int iLimit;
1588          uint32_t x, y;          int x, y, k;
1589          int iSearchRange;          int iSearchRange;
1590          int bIntra;          int bIntra;
1591    
# Line 1688  Line 1713 
1713                          }                          }
1714    
1715                          start_timer();                          start_timer();
1716    
1717                            /* Finished processing the MB, now check if to CODE or SKIP */
1718    
1719                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1720                                    pMB->mvs[0].y == 0) {
1721    
1722    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1723    
1724    #ifdef BFRAMES
1725                                    int iSAD=BFRAME_SKIP_THRESHHOLD;
1726                                    int bSkip=1;
1727    
1728                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1729                                    {
1730                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1731                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1732                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1733                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD)
1734                                            {       bSkip = 0;
1735                                                    break;
1736                                            }
1737                                    }
1738                                    if (!bSkip)
1739                                    {
1740                                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1741                                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1742                                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1743                                                    qcoeff[5*64+0]=0;
1744                                            }
1745                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1746                                            pMB->cbp = 0x80;                /* trick! so cbp!=0, but still nothing is written to bs */
1747                                    }
1748                                    else
1749                                            MBSkip(bs);
1750    
1751    #else
1752                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1753    
1754    #endif
1755    
1756                            } else {
1757                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1758                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1759                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1760                                            qcoeff[5*64+0]=0;
1761                                    }
1762                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1763                            }
1764    
1765                          stop_coding_timer();                          stop_coding_timer();
1766                  }                  }
1767          }          }
# Line 1722  Line 1795 
1795    
1796          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1797    
1798    #ifdef BFRAMES
1799            /* frame drop code */
1800            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1801            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1802                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1803            {
1804                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1805                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1806    
1807                    BitstreamReset(bs);
1808                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1809    
1810                    // copy reference frame details into the current frame
1811                    pEnc->current->quant = pEnc->reference->quant;
1812                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1813                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1814                    pEnc->current->fcode = pEnc->reference->fcode;
1815                    pEnc->current->bcode = pEnc->reference->bcode;
1816                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1817                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1818    
1819            }
1820    #endif
1821    
1822          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1823    
1824          pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->mbParam.m_ticks) % (int32_t)pEnc->mbParam.fbase;  #ifdef BFRAMES
1825          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);          pEnc->time_pp = ((int32_t)pEnc->mbParam.fbase - (int32_t)pEnc->last_pframe + (int32_t)pEnc->current->ticks) %
1826                            (int32_t)pEnc->mbParam.fbase;
1827            pEnc->last_pframe = pEnc->current->ticks;
1828    #endif
1829    
         pEnc->last_pframe = pEnc->mbParam.m_ticks;  
1830          return 0;                                       // inter          return 0;                                       // inter
1831  }  }
1832    
# Line 1783  Line 1882 
1882          stop_inter_timer();          stop_inter_timer();
1883    
1884          start_timer();          start_timer();
         fprintf(stderr,"m_ticks =%d\n",(int32_t)pEnc->mbParam.m_ticks+1);  
1885          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1886            ((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,
1887                                                  pEnc->time_pp,                                                  pEnc->time_pp,
1888                                                  pEnc->reference->mbs, f_ref,                                                  pEnc->reference->mbs, f_ref,
1889                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
# Line 1846  Line 1944 
1944    
1945                          mb->quant = frame->quant;                          mb->quant = frame->quant;
1946                          mb->cbp =                          mb->cbp =
1947                                  MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes,                                  MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
                                                                   qcoeff);  
1948                          //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);
1949    
1950                            if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1951                          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) {  
1952                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped                                  mb->mode = MODE_DIRECT_NONE_MV; // skipped
1953                          }                          }
1954    
1955    /* update predictors for forward and backward vectors */
1956                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD) {
1957                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1958                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;                                  mb->pmvs[0].y = mb->mvs[0].y - forward.y;
# Line 1869  Line 1966 
1966                                  backward.x = mb->b_mvs[0].x;                                  backward.x = mb->b_mvs[0].x;
1967                                  backward.y = mb->b_mvs[0].y;                                  backward.y = mb->b_mvs[0].y;
1968                          }                          }
1969    
1970  //                      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);
1971    
1972  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
# Line 1896  Line 1994 
1994  #endif  #endif
1995  }  }
1996  #endif  #endif
1997    
1998    
1999    /*      in case internal output is needed somewhere... */
2000    /*      {
2001            FILE *filehandle;
2002            filehandle=fopen("last-b.pgm","wb");
2003            if (filehandle)
2004            {
2005                    fprintf(filehandle,"P5\n\n");           //
2006                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2007                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2008                    fclose(filehandle);
2009                    }
2010            }
2011    */

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

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