[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.11, Thu Oct 3 12:06:42 2002 UTC revision 1.76.2.27, Tue Dec 10 11:13:50 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    
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 333  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->frame_drop_ratio = pParam->frame_drop_ratio;          pEnc->mbParam.bquant_offset = pParam->bquant_offset;
331            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 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 751  Line 749 
749                     indentical to the future-referece frame.                     indentical to the future-referece frame.
750                  */                  */
751    
752                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
753                          int tmp;                          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",
# 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 784  Line 784 
784                  SWAP(pEnc->current, pEnc->reference);                  SWAP(pEnc->current, pEnc->reference);
785                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
786    
787                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
788                          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");
789                  }                  }
790    
# 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 878  Line 882 
882    
883                  emms();                  emms();
884    
885                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.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", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);                                  "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
888                  }                  }
# 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->mbParam.iMaxKeyInterval > 0 &&
933                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                   pEnc->iFrameNum >= pEnc->mbParam.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->mbParam.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,
959                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
960    
961                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
962                          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");
963                  }                  }
964    
965                  // 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
966    
967                  if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
968    
969                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
970                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
971    
972                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
973                          if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                          if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
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 970  Line 989 
989    
990                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
991    
992                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
993                          BitstreamPadAlways(&bs);                          BitstreamPadAlways(&bs);
994                          input_valid = 0;                          input_valid = 0;
995                          goto ipvop_loop;                          goto ipvop_loop;
# 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 989  Line 1009 
1009                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1010                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1011    
1012                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1013                          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");
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->mbParam.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 1008  Line 1029 
1029                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1030                   */                   */
1031    
1032                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1033                          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");
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->mbParam.bquant_ratio) / 2) + pEnc->mbParam.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 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 1151  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 1212  Line 1235 
1235    
1236          if (pFrame->intra < 0) {          if (pFrame->intra < 0) {
1237                  if ((pEnc->iFrameNum == 0)                  if ((pEnc->iFrameNum == 0)
1238                          || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->mbParam.iMaxKeyInterval > 0)
1239                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {                                  && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {
1240                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1241                  } else {                  } else {
1242                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
# Line 1234  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 1495  Line 1518 
1518                     Bitstream * bs,                     Bitstream * bs,
1519                     uint32_t * pBits)                     uint32_t * pBits)
1520  {  {
1521            int mb_width = pEnc->mbParam.mb_width;
1522            int mb_height = pEnc->mbParam.mb_height;
1523    
1524          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1525          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1526    
1527          uint16_t x, y;          uint16_t x, y;
1528    
1529            if ((pEnc->current->global_flags & XVID_REDUCED))
1530            {
1531                    mb_width = (pEnc->mbParam.width + 31) / 32;
1532                    mb_height = (pEnc->mbParam.height + 31) / 32;
1533    
1534                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1535                    /* XXX: setedges is overkill */
1536                    start_timer();
1537                    image_setedges(&pEnc->current->image,
1538                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1539                            pEnc->mbParam.width, pEnc->mbParam.height);
1540                    stop_edges_timer();
1541            }
1542    
1543          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1544          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1545          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1546            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1547          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1548    
1549          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1550    
1551            /* XXX: move this stuff to BitstreamWriteVolHeader */
1552  #define DIVX501B481P "DivX501b481p"  #define DIVX501B481P "DivX501b481p"
1553          if ((pEnc->global & XVID_GLOBAL_PACKED)) {          if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
1554                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));                  BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1555          }          }
1556    
1557    #define XVID_ID "XviD" XVID_BS_VERSION
1558            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1559    
1560          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1561          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1562    
1563          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1564    
1565          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1566          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1567          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1568    
1569          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1570                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1571                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1572                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1573    
# Line 1542  Line 1586 
1586                                  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 */
1587                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1588                          }                          }
1589                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1590                          stop_coding_timer();                          stop_coding_timer();
1591                  }                  }
1592    
1593            if ((pEnc->current->global_flags & XVID_REDUCED))
1594            {
1595                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1596                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width);
1597            }
1598          emms();          emms();
1599    
1600          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1601          pEnc->sStat.fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1602          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1603    
1604          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
# Line 1577  Line 1624 
1624          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1625          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1626    
1627            int mb_width = pEnc->mbParam.mb_width;
1628            int mb_height = pEnc->mbParam.mb_height;
1629    
1630          int iLimit;          int iLimit;
1631          int x, y, k;          int x, y, k;
1632          int iSearchRange;          int iSearchRange;
1633          int bIntra;          int bIntra, skip_possible;
1634    
1635          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1636          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1637    
1638            if ((pEnc->current->global_flags & XVID_REDUCED))
1639            {
1640                    mb_width = (pEnc->mbParam.width + 31) / 32;
1641                    mb_height = (pEnc->mbParam.height + 31) / 32;
1642            }
1643    
1644    
1645          start_timer();          start_timer();
1646          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1647                                     pEnc->mbParam.width, pEnc->mbParam.height);                                     pEnc->mbParam.width, pEnc->mbParam.height);
# Line 1592  Line 1649 
1649    
1650          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1651          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1652            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1653          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1654    
1655          if (!force_inter)          if (!force_inter)
1656                  iLimit =                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
                         (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *  
                                    INTRA_THRESHOLD);  
1657          else          else
1658                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1659    
1660          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1661                  start_timer();                  start_timer();
1662                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1663                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1664                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1665                                                      pEnc->mbParam.m_quarterpel,
1666                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1667                  stop_inter_timer();                  stop_inter_timer();
1668          }          }
1669    
1670            if (pEnc->current->global_flags & XVID_GMC) {
1671    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1672                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1673                    pEnc->current->coding_type = S_VOP;
1674            } else
1675                    pEnc->current->coding_type = P_VOP;
1676    
1677          start_timer();          start_timer();
1678          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
1679                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
# Line 1625  Line 1689 
1689                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1690                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1691                           iLimit);                           iLimit);
   
1692          }          }
1693          stop_motion_timer();          stop_motion_timer();
1694    
1695          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1696    
1697          pEnc->current->coding_type = P_VOP;          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1698                            pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1699    
1700    
1701          if (vol_header)          if (vol_header)
1702                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
# Line 1642  Line 1707 
1707    
1708          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1709    
1710          pEnc->sStat.iTextBits = pEnc->sStat.iMvSum = pEnc->sStat.iMvCount =          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1711                  pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1712    
1713          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1714                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1715                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1716                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1717    
# Line 1660  Line 1725 
1725                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1726                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1727                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1728                                                                             pEnc->mbParam.m_quarterpel,
1729                                                                             (pEnc->current->global_flags & XVID_REDUCED),
1730                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1731                                  stop_comp_timer();                                  stop_comp_timer();
1732    
# Line 1692  Line 1759 
1759                          stop_prediction_timer();                          stop_prediction_timer();
1760    
1761                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
1762                                  pEnc->sStat.kblks++;                                  pEnc->current->sStat.kblks++;
1763                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1764                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1765                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1766                                  pEnc->sStat.mblks++;                                  pEnc->current->sStat.mblks++;
1767                          }  else {                          }  else {
1768                                  pEnc->sStat.ublks++;                                  pEnc->current->sStat.ublks++;
1769                          }                          }
1770    
1771                          start_timer();                          start_timer();
1772    
1773                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1774    
1775                          if ((pMB->mode == MODE_NOT_CODED) ||                          skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1776                                  (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&                                                          (pMB->dquant == NO_CHANGE);
1777                                  pMB->mvs[0].y == 0 && pMB->dquant == NO_CHANGE)) {  
1778                            if(pEnc->mbParam.m_quarterpel)
1779                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1780                            }
1781                            else
1782                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1783                            }
1784    
1785  /* This is a candidate for SKIPping, but check intermediate B-frames first */                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1786    
1787    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1788                                  int bSkip = 1;                                  int bSkip = 1;
                                 pMB->mode = MODE_NOT_CODED;  
1789    
1790                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1791                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                  for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1792                                  {                                  {
1793                                          int iSAD;                                          int iSAD;
# Line 1725  Line 1799 
1799                                                  break;                                                  break;
1800                                          }                                          }
1801                                  }                                  }
1802    
1803                                  if (!bSkip)                                  if (!bSkip)
1804                                  {                                  {
1805                                          VECTOR predMV;                                          VECTOR predMV;
1806                                            if(pEnc->mbParam.m_quarterpel) {
1807                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1808                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1809                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1810                                            }
1811                                            else {
1812                                          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);
1813                                          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)! */
1814                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1815                                            }
1816                                          pMB->mode = MODE_INTER;                                          pMB->mode = MODE_INTER;
1817                                          pMB->cbp = 0;                                          pMB->cbp = 0;
1818                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1819                                    }
1820                                    else
1821                                    {
1822                                            pMB->mode = MODE_NOT_CODED;
1823                                            MBSkip(bs);
1824                                  }                                  }
                                 else MBSkip(bs);  
1825    
1826                          } else {                          } else {
1827                                  if (pEnc->current->global_flags & XVID_GREYSCALE)                                  if (pEnc->current->global_flags & XVID_GREYSCALE)
# Line 1742  Line 1829 
1829                                          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 */
1830                                          qcoeff[5*64+0]=0;                                          qcoeff[5*64+0]=0;
1831                                  }                                  }
1832                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1833                          }                          }
1834    
1835                          stop_coding_timer();                          stop_coding_timer();
1836                  }                  }
1837          }          }
1838    
1839            if ((pEnc->current->global_flags & XVID_REDUCED))
1840            {
1841                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1842                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width);
1843            }
1844    
1845          emms();          emms();
1846    
1847          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1848                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1849          }          }
1850    
1851          if (pEnc->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
1852                  pEnc->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
1853    
1854          fSigma = (float) sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
1855    
1856          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1857    
1858          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1859                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1860          {          {
1861                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1862                  iSearchRange *= 2;                  iSearchRange *= 2;
1863          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1864                             && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1865                             && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1866                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1867          {          {
1868                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1869                  iSearchRange /= 2;                  iSearchRange /= 2;
1870          }          }
1871    
1872          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1873    
 #ifdef FRAMEDROP  
1874          /* frame drop code */          /* frame drop code */
1875          // 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);
1876          if (pEnc->sStat.kblks + pEnc->sStat.mblks <          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1877                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1878          {          {
1879                  pEnc->sStat.kblks = pEnc->sStat.mblks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1880                  pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;                  pEnc->current->sStat.ublks = mb_width * mb_height;
1881    
1882                  BitstreamReset(bs);                  BitstreamReset(bs);
1883    
# Line 1796  Line 1888 
1888                  pEnc->current->quant = pEnc->reference->quant;                  pEnc->current->quant = pEnc->reference->quant;
1889                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  pEnc->current->motion_flags = pEnc->reference->motion_flags;
1890                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  pEnc->current->rounding_type = pEnc->reference->rounding_type;
1891                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1892                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1893                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1894                  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);
1895                  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);
1896            }
1897    
1898            /* XXX: debug
1899            {
1900                    char s[100];
1901                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1902                    image_dump_yuvpgm(&pEnc->current->image,
1903                            pEnc->mbParam.edged_width,
1904                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1905    
1906                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1907                    image_dump_yuvpgm(&pEnc->reference->image,
1908                            pEnc->mbParam.edged_width,
1909                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1910          }          }
1911  #endif          */
1912    
1913    
1914          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1915    
# Line 1810  Line 1917 
1917  }  }
1918    
1919    
1920  static __inline void  static void
1921  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1922                     FRAMEINFO * frame,                     FRAMEINFO * frame,
1923                     Bitstream * bs,                     Bitstream * bs,
# Line 1830  Line 1937 
1937                  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); \
1938          }          }
1939    
1940            pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */
1941    
1942          if (!first){          if (!first){
1943                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
1944          }          }
1945  #endif  #endif
1946    
1947            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1948    
1949          // forward          // forward
1950          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1951                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
# Line 1842  Line 1953 
1953          start_timer();          start_timer();
1954          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,
1955                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1956                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1957          stop_inter_timer();          stop_inter_timer();
1958    
1959          // backward          // backward
# Line 1852  Line 1963 
1963          start_timer();          start_timer();
1964          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1965                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1966                                            0);                                            pEnc->mbParam.m_quarterpel, 0);
1967          stop_inter_timer();          stop_inter_timer();
1968    
1969          start_timer();          start_timer();
# Line 1862  Line 1973 
1973                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1974                          pEnc->reference->mbs, f_ref,                          pEnc->reference->mbs, f_ref,
1975                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1976                                                   pEnc->current->mbs, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
1977                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1978    
1979    
# Line 1880  Line 1991 
1991    
1992          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1993    
1994          pEnc->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
1995          pEnc->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
1996          pEnc->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
1997          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
1998    
1999    
2000          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
2001                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
2002                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
2003                          int direction = pEnc->global & XVID_ALTERNATESCAN ? 2 : 0;                          int direction = pEnc->mbParam.global & XVID_ALTERNATESCAN ? 2 : 0;
2004    
2005                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
2006                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
# Line 1921  Line 2032 
2032  #endif  #endif
2033                          start_timer();                          start_timer();
2034                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
2035                                                   &pEnc->sStat, direction);                                                   &frame->sStat, direction);
2036                          stop_coding_timer();                          stop_coding_timer();
2037                  }                  }
2038          }          }

Legend:
Removed from v.1.76.2.11  
changed lines
  Added in v.1.76.2.27

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