[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.76.2.25, Sun Dec 8 06:43:34 2002 UTC revision 1.76.2.29, Thu Dec 12 12:42:31 2002 UTC
# Line 231  Line 231 
231          pEnc->bitrate = pParam->rc_bitrate;          pEnc->bitrate = pParam->rc_bitrate;
232    
233          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
234          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->mbParam.iMaxKeyInterval = pParam->max_key_interval;
235    
236          /* try to allocate frame memory */          /* try to allocate frame memory */
237    
# Line 324  Line 324 
324    
325          /* B Frames specific init */          /* B Frames specific init */
326    
327          pEnc->global = pParam->global;          pEnc->mbParam.global = pParam->global;
328          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
329          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->mbParam.bquant_ratio = pParam->bquant_ratio;
330          pEnc->bquant_offset = pParam->bquant_offset;          pEnc->mbParam.bquant_offset = pParam->bquant_offset;
331          pEnc->frame_drop_ratio = pParam->frame_drop_ratio;          pEnc->mbParam.frame_drop_ratio = pParam->frame_drop_ratio;
332          pEnc->bframes = NULL;          pEnc->bframes = NULL;
333    
334          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 646  Line 646 
646    
647    
648    
649    /* convert pFrame->intra to coding_type */
650    static int intra2coding_type(int intra)
651    {
652            if (intra < 0)          return -1;
653            if (intra == 1)         return I_VOP;
654            if (intra == 2)         return B_VOP;
655    
656            return P_VOP;
657    }
658    
659    
660    
661  /*****************************************************************************  /*****************************************************************************
# Line 749  Line 759 
759                     indentical to the future-referece frame.                     indentical to the future-referece frame.
760                  */                  */
761    
762                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
763                          int tmp;                          int tmp;
764    
765                          DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                          DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
# Line 784  Line 794 
794                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
795                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
796    
797                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
798                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
799                  }                  }
800    
# Line 855  Line 865 
865          // only inc frame num, adapt quant, etc. if we havent seen it before          // only inc frame num, adapt quant, etc. if we havent seen it before
866          if (pEnc->bframenum_dx50bvop < 0 )          if (pEnc->bframenum_dx50bvop < 0 )
867          {          {
868                    mode = intra2coding_type(pFrame->intra);
869                  if (pFrame->quant == 0)                  if (pFrame->quant == 0)
870                          pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                          pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
871                  else                  else
# Line 882  Line 893 
893    
894                  emms();                  emms();
895    
896                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
897                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
898                                  "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);                                  "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
899                  }                  }
# Line 928  Line 939 
939           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
940          pEnc->iFrameNum++;          pEnc->iFrameNum++;
941    
942          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||          if (pEnc->iFrameNum == 0 || pEnc->bframenum_dx50bvop >= 0 ||
943                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (mode < 0 && pEnc->mbParam.iMaxKeyInterval > 0 &&
944                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                          pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))
945                  || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,          {
946                                                                          &pEnc->mbParam, pEnc->iMaxKeyInterval,                  mode = I_VOP;
947                                                                          (pFrame->intra < 0) ? pEnc->iFrameNum : 0,          }else{
948                                                                          bframes_count++))) {                  mode = MEanalysis(&pEnc->reference->image, pEnc->current,
949                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
950                                            (mode < 0) ? pEnc->iFrameNum : 0,
951                                            bframes_count++);
952            }
953    
954            if (mode == I_VOP) {
955                  /*                  /*
956                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
957                   */                   */
# Line 958  Line 974 
974                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
975                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
976    
977                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
978                          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");
979                  }                  }
980    
981                  // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe                  // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
982    
983                  if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
984    
985                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
986                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
987    
988                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
989                          if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                          if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
990                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
991                          }                          }
992                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
# Line 989  Line 1005 
1005    
1006                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1007    
1008                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1009                          BitstreamPadAlways(&bs);                          BitstreamPadAlways(&bs);
1010                          input_valid = 0;                          input_valid = 0;
1011                          goto ipvop_loop;                          goto ipvop_loop;
# Line 999  Line 1015 
1015                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
1016                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1017                   */                   */
1018          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {          } else if (mode == P_VOP || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
 //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {  
1019                  /*                  /*
1020                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1021                   */                   */
# Line 1009  Line 1024 
1024                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1025                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1026    
1027                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1028                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1029                  }                  }
1030    
# Line 1018  Line 1033 
1033                  pFrame->intra = 0;                  pFrame->intra = 0;
1034                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1035    
1036                  if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1037                          BitstreamPadAlways(&bs);                          BitstreamPadAlways(&bs);
1038                          input_valid = 0;                          input_valid = 0;
1039                          goto ipvop_loop;                          goto ipvop_loop;
1040                  }                  }
1041    
1042          } else {          } else {        /* mode == B_VOP */
1043                  /*                  /*
1044                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1045                   */                   */
1046    
1047                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1048                          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");
1049                  }                  }
1050    
1051                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1052                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1053                                  pEnc->bquant_ratio) / 2) + pEnc->bquant_offset)/100;                                  pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1054    
1055                  } else {                  } else {
1056                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
# Line 1235  Line 1250 
1250    
1251          if (pFrame->intra < 0) {          if (pFrame->intra < 0) {
1252                  if ((pEnc->iFrameNum == 0)                  if ((pEnc->iFrameNum == 0)
1253                          || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->mbParam.iMaxKeyInterval > 0)
1254                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {                                  && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {
1255                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1256                  } else {                  } else {
1257                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
# Line 1518  Line 1533 
1533                     Bitstream * bs,                     Bitstream * bs,
1534                     uint32_t * pBits)                     uint32_t * pBits)
1535  {  {
1536            int mb_width = pEnc->mbParam.mb_width;
1537            int mb_height = pEnc->mbParam.mb_height;
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          uint16_t x, y;          uint16_t x, y;
1543    
1544            if ((pEnc->current->global_flags & XVID_REDUCED))
1545            {
1546                    mb_width = (pEnc->mbParam.width + 31) / 32;
1547                    mb_height = (pEnc->mbParam.height + 31) / 32;
1548    
1549                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1550                    /* XXX: setedges is overkill */
1551                    start_timer();
1552                    image_setedges(&pEnc->current->image,
1553                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1554                            pEnc->mbParam.width, pEnc->mbParam.height);
1555                    stop_edges_timer();
1556            }
1557    
1558          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1559          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1560          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
# Line 1532  Line 1563 
1563    
1564          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1565    
1566            /* XXX: move this stuff to BitstreamWriteVolHeader */
1567  #define DIVX501B481P "DivX501b481p"  #define DIVX501B481P "DivX501b481p"
1568          if ((pEnc->global & XVID_GLOBAL_PACKED)) {          if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
1569                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1570          }          }
1571    
# Line 1546  Line 1578 
1578          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1579    
1580          pEnc->current->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1581          pEnc->current->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1582          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1583    
1584          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1585                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1586                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1587                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1588    
# Line 1573  Line 1605 
1605                          stop_coding_timer();                          stop_coding_timer();
1606                  }                  }
1607    
1608            if ((pEnc->current->global_flags & XVID_REDUCED))
1609            {
1610                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1611                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width);
1612            }
1613          emms();          emms();
1614    
1615          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
# Line 1602  Line 1639 
1639          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1640          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1641    
1642            int mb_width = pEnc->mbParam.mb_width;
1643            int mb_height = pEnc->mbParam.mb_height;
1644    
1645          int iLimit;          int iLimit;
1646          int x, y, k;          int x, y, k;
1647          int iSearchRange;          int iSearchRange;
# Line 1610  Line 1650 
1650          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1651          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1652    
1653            if ((pEnc->current->global_flags & XVID_REDUCED))
1654            {
1655                    mb_width = (pEnc->mbParam.width + 31) / 32;
1656                    mb_height = (pEnc->mbParam.height + 31) / 32;
1657            }
1658    
1659    
1660          start_timer();          start_timer();
1661          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1662                                     pEnc->mbParam.width, pEnc->mbParam.height);                                     pEnc->mbParam.width, pEnc->mbParam.height);
# Line 1621  Line 1668 
1668          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1669    
1670          if (!force_inter)          if (!force_inter)
1671                  iLimit =                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
                         (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *  
                                    INTRA_THRESHOLD);  
1672          else          else
1673                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1674    
1675          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1676                  start_timer();                  start_timer();
# Line 1648  Line 1693 
1693          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1694                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1695          if (bIntra == 0) {          if (bIntra == 0) {
                         pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);  
1696                          MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1697                                                                                          &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                                                                                          &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1698                  }                  }
# Line 1680  Line 1724 
1724          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1725                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1726    
1727          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1728                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1729                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1730                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1731    
# Line 1696  Line 1740 
1740                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1741                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1742                                                                           pEnc->mbParam.m_quarterpel,                                                                           pEnc->mbParam.m_quarterpel,
1743                                                                             (pEnc->current->global_flags & XVID_REDUCED),
1744                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1745                                  stop_comp_timer();                                  stop_comp_timer();
1746    
# Line 1805  Line 1850 
1850                  }                  }
1851          }          }
1852    
1853            if ((pEnc->current->global_flags & XVID_REDUCED))
1854            {
1855                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1856                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width);
1857            }
1858    
1859          emms();          emms();
1860    
1861          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
# Line 1837  Line 1888 
1888          /* frame drop code */          /* frame drop code */
1889          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1890          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1891                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1892          {          {
1893                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1894                  pEnc->current->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;                  pEnc->current->sStat.ublks = mb_width * mb_height;
1895    
1896                  BitstreamReset(bs);                  BitstreamReset(bs);
1897    
# Line 1855  Line 1906 
1906                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1907                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1908                  image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);                  image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1909                  memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);                  memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1910            }
1911    
1912            /* XXX: debug
1913            {
1914                    char s[100];
1915                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1916                    image_dump_yuvpgm(&pEnc->current->image,
1917                            pEnc->mbParam.edged_width,
1918                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1919    
1920                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1921                    image_dump_yuvpgm(&pEnc->reference->image,
1922                            pEnc->mbParam.edged_width,
1923                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1924          }          }
1925            */
1926    
1927    
1928          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1929    
# Line 1885  Line 1951 
1951                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1952          }          }
1953    
1954            pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */
1955    
1956          if (!first){          if (!first){
1957                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
1958          }          }
# Line 1946  Line 2014 
2014          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
2015                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
2016                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
2017                          int direction = pEnc->global & XVID_ALTERNATESCAN ? 2 : 0;                          int direction = pEnc->mbParam.global & XVID_ALTERNATESCAN ? 2 : 0;
2018    
2019                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
2020                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {

Legend:
Removed from v.1.76.2.25  
changed lines
  Added in v.1.76.2.29

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