[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 602, Thu Oct 17 19:10:57 2002 UTC revision 688, Thu Nov 28 14:45:21 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.76.2.13 2002-10-17 19:10:57 Isibaar Exp $   *  $Id: encoder.c,v 1.76.2.23 2002-11-28 14:45:21 syskin Exp $
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
# Line 54  Line 54 
54  #include "global.h"  #include "global.h"
55  #include "utils/timer.h"  #include "utils/timer.h"
56  #include "image/image.h"  #include "image/image.h"
 #ifdef BFRAMES  
57  #include "image/font.h"  #include "image/font.h"
58  #include "motion/sad.h"  #include "motion/sad.h"
 #endif  
59  #include "motion/motion.h"  #include "motion/motion.h"
60  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
61  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 109  Line 107 
107  };  };
108    
109    
 static void __inline  
 image_null(IMAGE * image)  
 {  
         image->y = image->u = image->v = NULL;  
 }  
   
   
110  /*****************************************************************************  /*****************************************************************************
111   * Encoder creation   * Encoder creation
112   *   *
# Line 336  Line 327 
327          pEnc->global = pParam->global;          pEnc->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->bquant_ratio = pParam->bquant_ratio;
330            pEnc->bquant_offset = pParam->bquant_offset;
331          pEnc->frame_drop_ratio = pParam->frame_drop_ratio;          pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
332          pEnc->bframes = NULL;          pEnc->bframes = NULL;
333    
# Line 625  Line 617 
617          start_timer();          start_timer();
618          if (image_input          if (image_input
619                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
620                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
621                  return;                  return;
622          stop_conv_timer();          stop_conv_timer();
623    
# Line 675  Line 667 
667          uint32_t bits, mode;          uint32_t bits, mode;
668    
669          int input_valid = 1;          int input_valid = 1;
670            int bframes_count = 0;
671    
672  #ifdef _DEBUG_PSNR  #ifdef _DEBUG_PSNR
673          float psnr;          float psnr;
# Line 715  Line 708 
708                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
709    
710                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
711                            bframes_count = 0;
712    
713                          BitstreamPad(&bs);                          BitstreamPad(&bs);
714                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
715                          pFrame->intra = 0;                          pFrame->intra = 0;
716    
717                            emms();
718    
719                          return XVID_ERR_OK;                          return XVID_ERR_OK;
720                  }                  }
721    
# Line 733  Line 729 
729    
730                  BitstreamPad(&bs);                  BitstreamPad(&bs);
731                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
732                  pFrame->intra = 0;                  pFrame->intra = 2;
733    
734                  if (input_valid)                  if (input_valid)
735                          queue_image(pEnc, pFrame);                          queue_image(pEnc, pFrame);
736    
737                    emms();
738    
739                  return XVID_ERR_OK;                  return XVID_ERR_OK;
740          }          }
741    
# Line 766  Line 764 
764                          pEnc->current->seconds = tmp;                          pEnc->current->seconds = tmp;
765    
766                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
767                          pFrame->intra = 0;                          pFrame->intra = 4;
768    
769                          if (input_valid)                          if (input_valid)
770                                  queue_image(pEnc, pFrame);                                  queue_image(pEnc, pFrame);
771    
772                            emms();
773    
774                          return XVID_ERR_OK;                          return XVID_ERR_OK;
775                  }                  }
776          }          }
# Line 801  Line 801 
801                  start_timer();                  start_timer();
802                  if (image_input                  if (image_input
803                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
804                          pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))                          pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
805                    {
806                            emms();
807                          return XVID_ERR_FORMAT;                          return XVID_ERR_FORMAT;
808                    }
809                  stop_conv_timer();                  stop_conv_timer();
810    
811                  // queue input frame, and dequue next image                  // queue input frame, and dequue next image
# Line 837  Line 840 
840                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
841    
842                          BitstreamPutBits(&bs, 0x7f, 8);                          BitstreamPutBits(&bs, 0x7f, 8);
843                          pFrame->intra = 0;                          pFrame->intra = 5;
844                  }                  }
845    
846                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
847                    emms();
848                  return XVID_ERR_OK;                  return XVID_ERR_OK;
849          }          }
850    
# Line 922  Line 926 
926          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
927           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
928           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
929            pEnc->iFrameNum++;
930    
931          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
932                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
933                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
934                  || /*image_mad(&pEnc->reference->image, &pEnc->current->image,                  || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,
935                                           pEnc->mbParam.edged_width, pEnc->mbParam.width,                                                                          &pEnc->mbParam, pEnc->iMaxKeyInterval,
936                                           pEnc->mbParam.height) > 30) {*/                                                                          (pFrame->intra < 0) ? pEnc->iFrameNum : 0,
937                          2 == (mode = MEanalysis(&pEnc->reference->image, &pEnc->current->image,                                                                          bframes_count++))) {
                                          &pEnc->mbParam, pEnc->current->mbs, pEnc->current->fcode))) {  
938    
939                  /*                  /*
940                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
941                   */                   */
942                    if ((pEnc->current->global_flags & XVID_QUARTERPEL))
943                            pEnc->mbParam.m_quarterpel = 1;
944                    else
945                            pEnc->mbParam.m_quarterpel = 0;
946    
947                    if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;
948    
949                    if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
950                            if (pFrame->quant_intra_matrix != NULL)
951                                    set_intra_matrix(pFrame->quant_intra_matrix);
952                            if (pFrame->quant_inter_matrix != NULL)
953                                    set_inter_matrix(pFrame->quant_inter_matrix);
954                    }
955    
956    
957                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
958                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
# Line 957  Line 974 
974                                  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");
975                          }                          }
976                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
977                            bframes_count = 0;
978    
979                          pFrame->intra = 0;                          pFrame->intra = 0;
980    
981                  } else {                  } else {
982    
983                          FrameCodeI(pEnc, &bs, &bits);                          FrameCodeI(pEnc, &bs, &bits);
984                            bframes_count = 0;
985                          pFrame->intra = 1;                          pFrame->intra = 1;
986    
987                          pEnc->bframenum_dx50bvop = -1;                          pEnc->bframenum_dx50bvop = -1;
# Line 981  Line 1000 
1000                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1001                   */                   */
1002          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1003    //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
1004                  /*                  /*
1005                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1006                   */                   */
# Line 994  Line 1014 
1014                  }                  }
1015    
1016                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
1017                    bframes_count = 0;
1018                  pFrame->intra = 0;                  pFrame->intra = 0;
1019                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1020    
1021                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1022                          BitstreamPadAlways(&bs);                          BitstreamPadAlways(&bs);
1023                          input_valid = 0;                          input_valid = 0;
1024                          goto ipvop_loop;                          goto ipvop_loop;
# Line 1013  Line 1034 
1034                  }                  }
1035    
1036                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1037                          pEnc->current->quant =                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1038                                  ((pEnc->reference->quant +                                  pEnc->bquant_ratio) / 2) + pEnc->bquant_offset)/100;
1039                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;  
1040                  } else {                  } else {
1041                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1042                  }                  }
1043    
1044                  if (pEnc->current->quant < 1)                  if (pEnc->current->quant < 1)
1045                          pEnc->current->quant = 1;                          pEnc->current->quant = 1;
1046                    else if (pEnc->current->quant > 31)
                 if (pEnc->current->quant > 31)  
1047                          pEnc->current->quant = 31;                          pEnc->current->quant = 31;
1048    
   
1049                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1050                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1051                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1052    
   
   
1053                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1054                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1055                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
1056    
1057                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1058    
1059                  pFrame->intra = 0;  // bframe report by koepi
1060                    pFrame->intra = 2;
1061                  pFrame->length = 0;                  pFrame->length = 0;
1062    
1063                  input_valid = 0;                  input_valid = 0;
1064                  goto bvop_loop;                  goto bvop_loop;
1065          }          }
1066    
         pEnc->iFrameNum++;  
   
1067          BitstreamPad(&bs);          BitstreamPad(&bs);
1068          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1069    
# Line 1078  Line 1095 
1095          stop_global_timer();          stop_global_timer();
1096          write_timer();          write_timer();
1097    
1098            emms();
1099          return XVID_ERR_OK;          return XVID_ERR_OK;
1100  }  }
1101    
# Line 1132  Line 1150 
1150          start_timer();          start_timer();
1151          if (image_input          if (image_input
1152                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1153                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1154                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1155          stop_conv_timer();          stop_conv_timer();
1156    
# Line 1509  Line 1527 
1527          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1528          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1529          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1530            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1531          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1532    
1533          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
# Line 1600  Line 1619 
1619    
1620          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1621          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1622            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1623          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1624    
1625          if (!force_inter)          if (!force_inter)
# Line 1619  Line 1639 
1639                  stop_inter_timer();                  stop_inter_timer();
1640          }          }
1641    
1642            if (pEnc->current->global_flags & XVID_GMC) {
1643    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1644                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1645                    pEnc->current->coding_type = S_VOP;
1646            } else
1647                    pEnc->current->coding_type = P_VOP;
1648    
1649          start_timer();          start_timer();
1650          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1651                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
# Line 1634  Line 1661 
1661                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1662                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1663                           iLimit);                           iLimit);
   
1664          }          }
1665          stop_motion_timer();          stop_motion_timer();
1666    
1667          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1668    
1669          pEnc->current->coding_type = P_VOP;          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1670                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1671    
1672    
1673          if (vol_header)          if (vol_header)
1674                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
# Line 1719  Line 1747 
1747                                                          (pMB->dquant == NO_CHANGE);                                                          (pMB->dquant == NO_CHANGE);
1748    
1749                          if(pEnc->mbParam.m_quarterpel)                          if(pEnc->mbParam.m_quarterpel)
1750                                  skip_possible &= (pMB->qmvs[0].x == 0) & (pMB->qmvs[0].y == 0);                          {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1751                            }
1752                          else                          else
1753                                  skip_possible &= (pMB->mvs[0].x == 0) & (pMB->mvs[0].y == 0);                          {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1754                            }
1755    
1756                          if ((pMB->mode == MODE_NOT_CODED) || (skip_possible)) {                          if ((pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
 /* This is a candidate for SKIPping, but check intermediate B-frames first */  
1757    
1758    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1759                                  int bSkip = 1;                                  int bSkip = 1;
                                 pMB->mode = MODE_NOT_CODED;  
1760    
1761                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1762                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1763                                  {                                  {
1764                                          int iSAD;                                          int iSAD;
# Line 1740  Line 1770 
1770                                                  break;                                                  break;
1771                                          }                                          }
1772                                  }                                  }
1773    
1774                                  if (!bSkip)                                  if (!bSkip)
1775                                  {                                  {
1776                                          VECTOR predMV;                                          VECTOR predMV;
1777                                          if(pEnc->mbParam.m_quarterpel)                                          if(pEnc->mbParam.m_quarterpel) {
1778                                                  predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                  predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1779                                          else                                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1780                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1781                                            }
1782                                            else {
1783                                                  predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                  predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1784                                          pMB->pmvs[0].x = -predMV.x; pMB->pmvs[0].y = -predMV.y;                                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1785                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1786                                            }
1787                                          pMB->mode = MODE_INTER;                                          pMB->mode = MODE_INTER;
1788                                          pMB->cbp = 0;                                          pMB->cbp = 0;
1789                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1790                                  }                                  }
1791                                  else MBSkip(bs);                                  else
1792                                    {
1793                                            pMB->mode = MODE_NOT_CODED;
1794                                            MBSkip(bs);
1795                                    }
1796    
1797                          } else {                          } else {
1798                                  if (pEnc->current->global_flags & XVID_GREYSCALE)                                  if (pEnc->current->global_flags & XVID_GREYSCALE)
# Line 1814  Line 1854 
1854                  pEnc->current->quant = pEnc->reference->quant;                  pEnc->current->quant = pEnc->reference->quant;
1855                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  pEnc->current->motion_flags = pEnc->reference->motion_flags;
1856                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  pEnc->current->rounding_type = pEnc->reference->rounding_type;
1857                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1858                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1859                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1860                  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);
# Line 1853  Line 1894 
1894          }          }
1895  #endif  #endif
1896    
1897            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1898    
1899          // forward          // forward
1900          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1901                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1880  Line 1923 
1923                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1924                          pEnc->reference->mbs, f_ref,                          pEnc->reference->mbs, f_ref,
1925                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1926                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1927                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1928    
1929    

Legend:
Removed from v.602  
changed lines
  Added in v.688

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