[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.4, Sat Sep 28 13:01:02 2002 UTC revision 1.76.2.25, Sun Dec 8 06:43:34 2002 UTC
# 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 233  Line 224 
224    
225          pEnc->mbParam.m_quant_type = H263_QUANT;          pEnc->mbParam.m_quant_type = H263_QUANT;
226    
227          pEnc->sStat.fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
228    
229          /* Fill rate control parameters */          /* Fill rate control parameters */
230    
# 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 411  Line 403 
403          pEnc->queue_size = 0;          pEnc->queue_size = 0;
404    
405          pEnc->mbParam.m_stamp = 0;          pEnc->mbParam.m_stamp = 0;
406    
407          pEnc->m_framenum = 0;          pEnc->m_framenum = 0;
408            pEnc->current->stamp = 0;
409            pEnc->reference->stamp = 0;
410    
411          pParam->handle = (void *) pEnc;          pParam->handle = (void *) pEnc;
412    
# Line 600  Line 595 
595    
596  static __inline void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
597  {  {
598            pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
599          pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;          pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
         pEnc->current->stamp = pEnc->mbParam.m_stamp;  
600  }  }
601    
602    
# Line 622  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 637  Line 632 
632                  pCur->ticks = (int32_t)pCur->stamp % time_base;                  pCur->ticks = (int32_t)pCur->stamp % time_base;
633                  pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;                  pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
634    
635  /*              HEAVY DEBUG OUTPUT      remove when timecodes prove to be stable                  //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
636    
637                  fprintf(stderr,"WriteVop:   %d - %d \n",  /*              fprintf(stderr,"WriteVop:   %d - %d \n",
638                          ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));                          ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
639                  fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",                  fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
640                          pCur->coding_type, pCur->stamp, pRef->stamp, time_base);                          pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
# Line 672  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 712  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 730  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    
742          if (pEnc->bframenum_head > 0) {          if (pEnc->bframenum_head > 0) {
743                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
744    
745                    /* write an empty marker to the bitstream.
746    
747                       for divx5 decoder compatibility, this marker must consist
748                       of a not-coded p-vop, with a time_base of zero, and time_increment
749                       indentical to the future-referece frame.
750                    */
751    
752                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {
753                            int tmp;
754    
755                          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",
756                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
757                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
758    
                         set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);  
                         BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);  
759                          BitstreamPad(&bs);                          BitstreamPad(&bs);
760                          BitstreamPutBits(&bs, 0x7f, 8);  
761                            tmp = pEnc->current->seconds;
762                            pEnc->current->seconds = 0; /* force time_base = 0 */
763                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
764                            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 788  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 812  Line 828 
828                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
829                  pEnc->queue_size--;                  pEnc->queue_size--;
830    
831          } else if (BitstreamPos(&bs) == 0) {          } else {
832    
833                    /* if nothing was encoded, write an 'ignore this frame' flag
834                       to the bitstream */
835    
836                    if (BitstreamPos(&bs) == 0) {
837    
838                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
839                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
840                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
841    
842                  pFrame->intra = 0;                          BitstreamPutBits(&bs, 0x7f, 8);
843                            pFrame->intra = 5;
844                  set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);                  }
                 BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP  
                 BitstreamPad(&bs);  
                 pFrame->length = BitstreamLength(&bs);  
   
                 return XVID_ERR_OK;  
   
         } else {  
845    
846                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
847                    emms();
848                  return XVID_ERR_OK;                  return XVID_ERR_OK;
849          }          }
850    
# Line 869  Line 884 
884    
885                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
886                          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,
887                                  "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);                                  "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
888                  }                  }
889    
890          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 911  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 946  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 960  Line 990 
990                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
991    
992                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
993                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
994                          input_valid = 0;                          input_valid = 0;
995                          goto ipvop_loop;                          goto ipvop_loop;
996                  }                  }
# Line 970  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 983  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                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1023                          input_valid = 0;                          input_valid = 0;
1024                          goto ipvop_loop;                          goto ipvop_loop;
1025                  }                  }
# Line 1002  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    
1070          if (pResult) {          if (pResult) {
1071                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1072                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1073                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1074                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1075                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1076          }          }
1077    
1078          emms();          emms();
# Line 1067  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 1109  Line 1138 
1138          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1139          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1140    
1141            inc_frame_num(pEnc);
1142    
1143          /* disable alternate scan flag if interlacing is not enabled */          /* disable alternate scan flag if interlacing is not enabled */
1144          if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&          if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1145                  !(pEnc->current->global_flags & XVID_INTERLACING))                  !(pEnc->current->global_flags & XVID_INTERLACING))
# Line 1119  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 1138  Line 1169 
1169                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1170          }          }
1171    
1172            if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1173                    pEnc->mbParam.m_quarterpel = 1;
1174            else
1175                    pEnc->mbParam.m_quarterpel = 0;
1176    
1177          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1178                  int *temp_dquants =                  int *temp_dquants =
1179                          (int *) xvid_malloc(pEnc->mbParam.mb_width *                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
# Line 1221  Line 1257 
1257    
1258          if (pResult) {          if (pResult) {
1259                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1260                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);
1261                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->current->sStat.kblks;
1262                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->current->sStat.mblks;
1263                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->current->sStat.ublks;
1264          }          }
1265    
1266          emms();          emms();
# Line 1243  Line 1279 
1279          DEBUG(temp);          DEBUG(temp);
1280  #endif  #endif
1281    
         inc_frame_num(pEnc);  
1282          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1283    
1284          stop_global_timer();          stop_global_timer();
# Line 1492  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 1501  Line 1537 
1537                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1538          }          }
1539    
1540    #define XVID_ID "XviD" XVID_BS_VERSION
1541            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1542    
1543          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1544          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1545    
1546          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1547    
1548          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1549          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1550          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1551    
1552          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++)
1553                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
# Line 1530  Line 1569 
1569                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1570                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1571                          }                          }
1572                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1573                          stop_coding_timer();                          stop_coding_timer();
1574                  }                  }
1575    
1576          emms();          emms();
1577    
1578          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1579          pEnc->sStat.fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1580          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1581    
 //      pEnc->time_pp = ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp));  
   
1582          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1583                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1584          }          }
 //      pEnc->last_pframe = (int32_t)pEnc->mbParam.m_stamp;  
1585    
1586          return 1;                                       // intra          return 1;                                       // intra
1587  }  }
# Line 1571  Line 1605 
1605          int iLimit;          int iLimit;
1606          int x, y, k;          int x, y, k;
1607          int iSearchRange;          int iSearchRange;
1608          int bIntra;          int bIntra, skip_possible;
1609    
1610          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1611          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
# Line 1583  Line 1617 
1617    
1618          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1619          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1620            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1621          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1622    
1623          if (!force_inter)          if (!force_inter)
# Line 1597  Line 1632 
1632                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1633                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1634                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1635                                                      pEnc->mbParam.m_quarterpel,
1636                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1637                  stop_inter_timer();                  stop_inter_timer();
1638          }          }
1639    
1640            if (pEnc->current->global_flags & XVID_GMC) {
1641    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1642                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1643                    pEnc->current->coding_type = S_VOP;
1644            } else
1645                    pEnc->current->coding_type = P_VOP;
1646    
1647          start_timer();          start_timer();
1648          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1649                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1650                  if (bIntra == 0) MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,          if (bIntra == 0) {
1651                            pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);
1652                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1653                                                                                          &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                                                                                          &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1654                    }
1655    
1656          } else {          } else {
1657    
# Line 1613  Line 1659 
1659                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1660                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1661                           iLimit);                           iLimit);
   
1662          }          }
1663          stop_motion_timer();          stop_motion_timer();
1664    
1665          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1666    
1667          pEnc->current->coding_type = P_VOP;          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1668                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1669    
1670    
1671          if (vol_header)          if (vol_header)
1672                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
# Line 1630  Line 1677 
1677    
1678          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1679    
1680          pEnc->sStat.iTextBits = pEnc->sStat.iMvSum = pEnc->sStat.iMvCount =          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1681                  pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1682    
1683          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1684                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
# Line 1648  Line 1695 
1695                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1696                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1697                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1698                                                                             pEnc->mbParam.m_quarterpel,
1699                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1700                                  stop_comp_timer();                                  stop_comp_timer();
1701    
# Line 1680  Line 1728 
1728                          stop_prediction_timer();                          stop_prediction_timer();
1729    
1730                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
1731                                  pEnc->sStat.kblks++;                                  pEnc->current->sStat.kblks++;
1732                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1733                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1734                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1735                                  pEnc->sStat.mblks++;                                  pEnc->current->sStat.mblks++;
1736                          }  else {                          }  else {
1737                                  pEnc->sStat.ublks++;                                  pEnc->current->sStat.ublks++;
1738                          }                          }
1739    
1740                          start_timer();                          start_timer();
1741    
1742                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1743    
1744                          if ((pMB->mode == MODE_NOT_CODED) ||                          skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1745                                  (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&                                                          (pMB->dquant == NO_CHANGE);
1746                                  pMB->mvs[0].y == 0 && pMB->dquant == NO_CHANGE)) {  
1747                            if(pEnc->mbParam.m_quarterpel)
1748                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1749                            }
1750                            else
1751                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1752                            }
1753    
1754  /* This is a candidate for SKIPping, but check intermediate B-frames first */                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1755    
1756    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1757                                  int bSkip = 1;                                  int bSkip = 1;
                                 pMB->mode = MODE_NOT_CODED;  
1758    
1759                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1760                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1761                                  {                                  {
1762                                          int iSAD;                                          int iSAD;
# Line 1713  Line 1768 
1768                                                  break;                                                  break;
1769                                          }                                          }
1770                                  }                                  }
1771    
1772                                  if (!bSkip)                                  if (!bSkip)
1773                                  {                                  {
1774                                          VECTOR predMV;                                          VECTOR predMV;
1775                                            if(pEnc->mbParam.m_quarterpel) {
1776                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1777                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1778                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1779                                            }
1780                                            else {
1781                                          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);
1782                                          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)! */
1783                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1784                                            }
1785                                          pMB->mode = MODE_INTER;                                          pMB->mode = MODE_INTER;
1786                                          pMB->cbp = 0;                                          pMB->cbp = 0;
1787                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1788                                    }
1789                                    else
1790                                    {
1791                                            pMB->mode = MODE_NOT_CODED;
1792                                            MBSkip(bs);
1793                                  }                                  }
                                 else MBSkip(bs);  
1794    
1795                          } else {                          } else {
1796                                  if (pEnc->current->global_flags & XVID_GREYSCALE)                                  if (pEnc->current->global_flags & XVID_GREYSCALE)
# Line 1730  Line 1798 
1798                                          qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */                                          qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1799                                          qcoeff[5*64+0]=0;                                          qcoeff[5*64+0]=0;
1800                                  }                                  }
1801                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1802                          }                          }
1803    
1804                          stop_coding_timer();                          stop_coding_timer();
# Line 1743  Line 1811 
1811                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1812          }          }
1813    
1814          if (pEnc->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
1815                  pEnc->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
1816    
1817          fSigma = (float) sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
1818    
1819          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1820    
1821          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1822                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1823          {          {
1824                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1825                  iSearchRange *= 2;                  iSearchRange *= 2;
1826          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1827                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1828                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1829                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1830          {          {
1831                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1832                  iSearchRange /= 2;                  iSearchRange /= 2;
1833          }          }
1834    
1835          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1836    
 #ifdef FRAMEDROP  
1837          /* frame drop code */          /* frame drop code */
1838          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1839          if (pEnc->sStat.kblks + pEnc->sStat.mblks <          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1840                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1841          {          {
1842                  pEnc->sStat.kblks = pEnc->sStat.mblks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1843                  pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;                  pEnc->current->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1844    
1845                  BitstreamReset(bs);                  BitstreamReset(bs);
1846    
# Line 1784  Line 1851 
1851                  pEnc->current->quant = pEnc->reference->quant;                  pEnc->current->quant = pEnc->reference->quant;
1852                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  pEnc->current->motion_flags = pEnc->reference->motion_flags;
1853                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  pEnc->current->rounding_type = pEnc->reference->rounding_type;
1854                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1855                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1856                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1857                  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);
1858                  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) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1859    
1860          }          }
 #endif  
1861    
1862          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1863    
 //      pEnc->time_pp = ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp));  
 //      pEnc->last_pframe = (int32_t)pEnc->mbParam.m_stamp;  
   
1864          return 0;                                       // inter          return 0;                                       // inter
1865  }  }
1866    
1867    
1868  static __inline void  static void
1869  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1870                     FRAMEINFO * frame,                     FRAMEINFO * frame,
1871                     Bitstream * bs,                     Bitstream * bs,
# Line 1826  Line 1890 
1890          }          }
1891  #endif  #endif
1892    
1893            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1894    
1895          // forward          // forward
1896          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1897                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1833  Line 1899 
1899          start_timer();          start_timer();
1900          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1901                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1902                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1903          stop_inter_timer();          stop_inter_timer();
1904    
1905          // backward          // backward
# Line 1843  Line 1909 
1909          start_timer();          start_timer();
1910          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1911                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1912                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1913          stop_inter_timer();          stop_inter_timer();
1914    
1915          start_timer();          start_timer();
1916    
1917          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1918                  ((int32_t)(frame->stamp - pEnc->reference->stamp)),                             // time_bp                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1919                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1920                          pEnc->reference->mbs, f_ref,                          pEnc->reference->mbs, f_ref,
1921                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1922                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1923                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1924    
1925    
# Line 1871  Line 1937 
1937    
1938          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1939    
1940          pEnc->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
1941          pEnc->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
1942          pEnc->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
1943          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
1944    
1945    
1946          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
# Line 1912  Line 1978 
1978  #endif  #endif
1979                          start_timer();                          start_timer();
1980                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1981                                                   &pEnc->sStat, direction);                                                   &frame->sStat, direction);
1982                          stop_coding_timer();                          stop_coding_timer();
1983                  }                  }
1984          }          }

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

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