[cvs] / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /xvidcore/src/encoder.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.76.2.25, Sun Dec 8 06:43:34 2002 UTC revision 1.76.2.37, Mon Jan 13 14:33:24 2003 UTC
# Line 43  Line 43 
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
   
46  #include <stdlib.h>  #include <stdlib.h>
47  #include <stdio.h>  #include <stdio.h>
48  #include <math.h>  #include <math.h>
# Line 73  Line 72 
72   ****************************************************************************/   ****************************************************************************/
73    
74  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT
75  #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }  #define SWAP(_T_,A,B)    { _T_ tmp = A; A = B; B = tmp; }
76    
77  /*****************************************************************************  /*****************************************************************************
78   * Local function prototypes   * Local function prototypes
# Line 231  Line 230 
230          pEnc->bitrate = pParam->rc_bitrate;          pEnc->bitrate = pParam->rc_bitrate;
231    
232          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
233          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->mbParam.iMaxKeyInterval = pParam->max_key_interval;
234    
235          /* try to allocate frame memory */          /* try to allocate frame memory */
236    
# Line 320  Line 319 
319                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
320                  goto xvid_err_memory3;                  goto xvid_err_memory3;
321    
322    /* Create full bitplane for GMC, this might be wasteful */
323            if (image_create
324                    (&pEnc->vGMC, pEnc->mbParam.edged_width,
325                     pEnc->mbParam.edged_height) < 0)
326                    goto xvid_err_memory3;
327    
328    
329          /* B Frames specific init */          /* B Frames specific init */
330    
331          pEnc->global = pParam->global;          pEnc->mbParam.global = pParam->global;
332          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
333          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->mbParam.bquant_ratio = pParam->bquant_ratio;
334          pEnc->bquant_offset = pParam->bquant_offset;          pEnc->mbParam.bquant_offset = pParam->bquant_offset;
335          pEnc->frame_drop_ratio = pParam->frame_drop_ratio;          pEnc->mbParam.frame_drop_ratio = pParam->frame_drop_ratio;
336          pEnc->bframes = NULL;          pEnc->bframes = NULL;
337    
338          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
# Line 487  Line 491 
491          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
492                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
493    
494    /* destroy GMC image */
495            image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
496                                      pEnc->mbParam.edged_height);
497    
498    
499    xvid_err_memory2:    xvid_err_memory2:
500          xvid_free(pEnc->current->mbs);          xvid_free(pEnc->current->mbs);
501          xvid_free(pEnc->reference->mbs);          xvid_free(pEnc->reference->mbs);
# Line 646  Line 655 
655    
656    
657    
658    /* convert pFrame->intra to coding_type */
659    static int intra2coding_type(int intra)
660    {
661            if (intra < 0)          return -1;
662            if (intra == 1)         return I_VOP;
663            if (intra == 2)         return B_VOP;
664    
665            return P_VOP;
666    }
667    
668    
669    
670  /*****************************************************************************  /*****************************************************************************
# Line 664  Line 683 
683  {  {
684          uint16_t x, y;          uint16_t x, y;
685          Bitstream bs;          Bitstream bs;
686          uint32_t bits, mode;          uint32_t bits;
687            int mode;
688    
689          int input_valid = 1;          int input_valid = 1;
690          int bframes_count = 0;          int bframes_count = 0;
# Line 703  Line 723 
723                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
724    
725                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
726                          SWAP(pEnc->current, pEnc->reference);                          SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
727    
728                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
729    
730                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
731                          bframes_count = 0;                          bframes_count = 0;
732    
733                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
734                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
735                          pFrame->intra = 0;                          pFrame->intra = 0;
736    
# Line 727  Line 747 
747                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);                  FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
748                  pEnc->bframenum_head++;                  pEnc->bframenum_head++;
749    
750                  BitstreamPad(&bs);                  BitstreamPadAlways(&bs);
751                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
752                  pFrame->intra = 2;                  pFrame->intra = 2;
753    
# Line 749  Line 769 
769                     indentical to the future-referece frame.                     indentical to the future-referece frame.
770                  */                  */
771    
772                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {
773                          int tmp;                          int tmp;
774    
775                          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",
776                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
777                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
778    
                         BitstreamPad(&bs);  
779    
780                          tmp = pEnc->current->seconds;                          tmp = pEnc->current->seconds;
781                          pEnc->current->seconds = 0; /* force time_base = 0 */                          pEnc->current->seconds = 0; /* force time_base = 0 */
782    
783                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
784                          pEnc->current->seconds = tmp;                          pEnc->current->seconds = tmp;
785    
786                            BitstreamPadAlways(&bs);
787                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
788                          pFrame->intra = 4;                          pFrame->intra = 4;
789    
# Line 781  Line 802 
802          if (pEnc->bframenum_dx50bvop != -1)          if (pEnc->bframenum_dx50bvop != -1)
803          {          {
804    
805                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
806                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
807    
808                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
809                          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");
810                  }                  }
811    
# Line 796  Line 817 
817    
818          } else if (input_valid) {          } else if (input_valid) {
819    
820                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
821    
822                  start_timer();                  start_timer();
823                  if (image_input                  if (image_input
# Line 822  Line 843 
843    
844          } else if (pEnc->queue_size > 0) {          } else if (pEnc->queue_size > 0) {
845    
846                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
847    
848                  image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);                  image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
849                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;                  pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
# Line 839  Line 860 
860                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
861                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
862    
863                          BitstreamPutBits(&bs, 0x7f, 8);                  //      BitstreamPutBits(&bs, 0x7f, 8);
864                          pFrame->intra = 5;                          pFrame->intra = 5;
865                  }                  }
866    
# Line 855  Line 876 
876          // only inc frame num, adapt quant, etc. if we havent seen it before          // only inc frame num, adapt quant, etc. if we havent seen it before
877          if (pEnc->bframenum_dx50bvop < 0 )          if (pEnc->bframenum_dx50bvop < 0 )
878          {          {
879                    mode = intra2coding_type(pFrame->intra);
880                  if (pFrame->quant == 0)                  if (pFrame->quant == 0)
881                          pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                          pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
882                  else                  else
# Line 882  Line 904 
904    
905                  emms();                  emms();
906    
907                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
908                          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,
909                                  "%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);
910                  }                  }
# Line 928  Line 950 
950           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
951          pEnc->iFrameNum++;          pEnc->iFrameNum++;
952    
953          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||          if (pEnc->iFrameNum == 0 || pEnc->bframenum_dx50bvop >= 0 ||
954                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&                  (mode < 0 && pEnc->mbParam.iMaxKeyInterval > 0 &&
955                   pEnc->iFrameNum >= pEnc->iMaxKeyInterval)                          pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))
956                  || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,          {
957                                                                          &pEnc->mbParam, pEnc->iMaxKeyInterval,                  mode = I_VOP;
958                                                                          (pFrame->intra < 0) ? pEnc->iFrameNum : 0,          }else{
959                                                                          bframes_count++))) {                  mode = MEanalysis(&pEnc->reference->image, pEnc->current,
960                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
961                                            (mode < 0) ? pEnc->iFrameNum : 0,
962                                            bframes_count++);
963            }
964    
965            if (mode == I_VOP) {
966                  /*                  /*
967                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
968                   */                   */
# Line 958  Line 985 
985                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
986                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
987    
988                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
989                          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");
990                  }                  }
991    
992                  // 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
993    
994                  if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
995    
996                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
997                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
998    
999                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                          SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
1000                          if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                          if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1001                                  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");
1002                          }                          }
1003                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
# Line 989  Line 1016 
1016    
1017                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1018    
1019                  if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1020                          BitstreamPadAlways(&bs);                          BitstreamPadAlways(&bs);
1021                          input_valid = 0;                          input_valid = 0;
1022                          goto ipvop_loop;                          goto ipvop_loop;
# Line 999  Line 1026 
1026                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
1027                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
1028                   */                   */
1029          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {          } else if (mode == P_VOP || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
 //      } else if (pFrame->intra == 0 || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {  
1030                  /*                  /*
1031                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
1032                   */                   */
# Line 1009  Line 1035 
1035                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1036                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1037    
1038                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1039                          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");
1040                  }                  }
1041    
# Line 1018  Line 1044 
1044                  pFrame->intra = 0;                  pFrame->intra = 0;
1045                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1046    
1047                  if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1048                          BitstreamPadAlways(&bs);                          BitstreamPadAlways(&bs);
1049                          input_valid = 0;                          input_valid = 0;
1050                          goto ipvop_loop;                          goto ipvop_loop;
1051                  }                  }
1052    
1053          } else {          } else {        /* mode == B_VOP */
1054                  /*                  /*
1055                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1056                   */                   */
1057    
1058                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {
1059                          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");
1060                  }                  }
1061    
1062                  if (pFrame->bquant < 1) {                  if (pFrame->bquant < 1) {
1063                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1064                                  pEnc->bquant_ratio) / 2) + pEnc->bquant_offset)/100;                                  pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1065    
1066                  } else {                  } else {
1067                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
# Line 1051  Line 1077 
1077                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1078    
1079                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1080                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1081                  SWAP(pEnc->current, pEnc->reference);                  SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
1082    
1083                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1084    
# Line 1064  Line 1090 
1090                  goto bvop_loop;                  goto bvop_loop;
1091          }          }
1092    
1093          BitstreamPad(&bs);          BitstreamPadAlways(&bs);
1094          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1095    
1096          if (pResult) {          if (pResult) {
# Line 1083  Line 1109 
1109                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
1110                                     pEnc->mbParam.height);                                     pEnc->mbParam.height);
1111    
1112          snprintf(temp, 127, "PSNR: %f\n", psnr);          printf("PSNR: %f\n", psnr);
1113          DEBUG(temp);  //      DEBUG(temp);
1114  #endif  #endif
1115    
1116          if (pFrame->quant == 0) {          if (pFrame->quant == 0) {
# Line 1132  Line 1158 
1158          ENC_CHECK(pFrame->bitstream);          ENC_CHECK(pFrame->bitstream);
1159          ENC_CHECK(pFrame->image);          ENC_CHECK(pFrame->image);
1160    
1161          SWAP(pEnc->current, pEnc->reference);          SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);
1162    
1163          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
1164          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
# Line 1235  Line 1261 
1261    
1262          if (pFrame->intra < 0) {          if (pFrame->intra < 0) {
1263                  if ((pEnc->iFrameNum == 0)                  if ((pEnc->iFrameNum == 0)
1264                          || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->mbParam.iMaxKeyInterval > 0)
1265                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {                                  && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {
1266                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1267                  } else {                  } else {
1268                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
# Line 1250  Line 1276 
1276    
1277          }          }
1278    
1279          BitstreamPutBits(&bs, 0xFFFF, 16);  //      BitstreamPutBits(&bs, 0xFFFF, 16);
1280          BitstreamPutBits(&bs, 0xFFFF, 16);  //      BitstreamPutBits(&bs, 0xFFFF, 16);
1281          BitstreamPad(&bs);          BitstreamPadAlways(&bs);
1282          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1283    
1284          if (pResult) {          if (pResult) {
# Line 1276  Line 1302 
1302                                     pEnc->mbParam.height);                                     pEnc->mbParam.height);
1303    
1304          snprintf(temp, 127, "PSNR: %f\n", psnr);          snprintf(temp, 127, "PSNR: %f\n", psnr);
1305          DEBUG(temp);  //      DEBUG(temp);
1306  #endif  #endif
1307    
1308          pEnc->iFrameNum++;          pEnc->iFrameNum++;
# Line 1443  Line 1469 
1469    
1470          if (intra) {          if (intra) {
1471                  if (!hint->rawhints) {                  if (!hint->rawhints) {
1472                          BitstreamPad(&bs);                          BitstreamPadAlways(&bs);
1473                          hint->hintlength = BitstreamLength(&bs);                          hint->hintlength = BitstreamLength(&bs);
1474                  }                  }
1475                  return;                  return;
# Line 1518  Line 1544 
1544                     Bitstream * bs,                     Bitstream * bs,
1545                     uint32_t * pBits)                     uint32_t * pBits)
1546  {  {
1547            int mb_width = pEnc->mbParam.mb_width;
1548            int mb_height = pEnc->mbParam.mb_height;
1549    
1550          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1551          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1552    
1553          uint16_t x, y;          uint16_t x, y;
1554    
1555            if ((pEnc->current->global_flags & XVID_REDUCED))
1556            {
1557                    mb_width = (pEnc->mbParam.width + 31) / 32;
1558                    mb_height = (pEnc->mbParam.height + 31) / 32;
1559    
1560                    /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1561                    /* XXX: setedges is overkill */
1562                    start_timer();
1563                    image_setedges(&pEnc->current->image,
1564                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1565                            pEnc->mbParam.width, pEnc->mbParam.height);
1566                    stop_edges_timer();
1567            }
1568    
1569          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1570          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1571          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
# Line 1532  Line 1574 
1574    
1575          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1576    
 #define DIVX501B481P "DivX501b481p"  
         if ((pEnc->global & XVID_GLOBAL_PACKED)) {  
                 BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));  
         }  
   
 #define XVID_ID "XviD" XVID_BS_VERSION  
         BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));  
   
1577          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1578    
1579            BitstreamPadAlways(bs);
1580          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1581    
1582          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1583    
1584          pEnc->current->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1585          pEnc->current->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1586          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1587    
1588          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1589                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1590                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1591                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1592    
# Line 1573  Line 1609 
1609                          stop_coding_timer();                          stop_coding_timer();
1610                  }                  }
1611    
1612            if ((pEnc->current->global_flags & XVID_REDUCED))
1613            {
1614                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1615                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1616                            16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);
1617            }
1618          emms();          emms();
1619    
1620          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
# Line 1590  Line 1632 
1632  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1633  #define BFRAME_SKIP_THRESHHOLD 30  #define BFRAME_SKIP_THRESHHOLD 30
1634    
1635    
1636    /* FrameCodeP also handles S(GMC)-VOPs */
1637  static int  static int
1638  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
1639                     Bitstream * bs,                     Bitstream * bs,
# Line 1602  Line 1646 
1646          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1647          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1648    
1649            int mb_width = pEnc->mbParam.mb_width;
1650            int mb_height = pEnc->mbParam.mb_height;
1651    
1652          int iLimit;          int iLimit;
1653          int x, y, k;          int x, y, k;
1654          int iSearchRange;          int iSearchRange;
# Line 1610  Line 1657 
1657          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1658          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1659    
1660            if ((pEnc->current->global_flags & XVID_REDUCED))
1661            {
1662                    mb_width = (pEnc->mbParam.width + 31) / 32;
1663                    mb_height = (pEnc->mbParam.height + 31) / 32;
1664            }
1665    
1666    
1667          start_timer();          start_timer();
1668          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1669                                     pEnc->mbParam.width, pEnc->mbParam.height);                                     pEnc->mbParam.width, pEnc->mbParam.height);
# Line 1621  Line 1675 
1675          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1676    
1677          if (!force_inter)          if (!force_inter)
1678                  iLimit =                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
                         (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *  
                                    INTRA_THRESHOLD);  
1679          else          else
1680                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1681    
1682          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1683                  start_timer();                  start_timer();
# Line 1637  Line 1689 
1689                  stop_inter_timer();                  stop_inter_timer();
1690          }          }
1691    
         if (pEnc->current->global_flags & XVID_GMC) {  
 //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);  
                 DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);  
                 pEnc->current->coding_type = S_VOP;  
         } else  
1692                  pEnc->current->coding_type = P_VOP;                  pEnc->current->coding_type = P_VOP;
1693    
1694          start_timer();          start_timer();
1695          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {          if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1696                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1697          if (bIntra == 0) {          else
                         pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);  
                         MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,  
                                                                                         &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);  
                 }  
   
         } else {  
   
1698                  bIntra =                  bIntra =
1699                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1700                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1701                           iLimit);                           iLimit);
1702          }  
1703          stop_motion_timer();          stop_motion_timer();
1704    
1705          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1706    
1707          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )          if ( ( pEnc->current->global_flags & XVID_GMC )
1708                          pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */                  && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )
1709            {
1710                    pEnc->current->coding_type = S_VOP;
1711    
1712          if (vol_header)                  generate_GMCparameters( 2, 16, &pEnc->current->warp,
1713                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                                          pEnc->mbParam.width, pEnc->mbParam.height,
1714                                            &pEnc->current->gmc_data);
1715    
1716                    generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,
1717                                    pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,
1718                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,
1719                                    pEnc->mbParam.m_fcode, pEnc->mbParam.m_quarterpel, 0,
1720                                    pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);
1721    
1722            }
1723    
1724          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1725            if (vol_header)
1726            {       BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1727                    BitstreamPadAlways(bs);
1728            }
1729    
1730          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1731    
1732          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
# Line 1680  Line 1734 
1734          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1735                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1736    
1737          for (y = 0; y < pEnc->mbParam.mb_height; y++) {  
1738                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {          for (y = 0; y < mb_height; y++) {
1739                    for (x = 0; x < mb_width; x++) {
1740                          MACROBLOCK *pMB =                          MACROBLOCK *pMB =
1741                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1742    
1743    /* Mode decision: Check, if the block should be INTRA / INTER or GMC-coded */
1744    /* For a start, leave INTRA decision as is, only choose only between INTER/GMC  - gruel, 9.1.2002 */
1745    
1746                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1747    
1748                          if (!bIntra) {                          if (bIntra) {
1749                                    CodeIntraMB(pEnc, pMB);
1750                                    MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1751                                                                      dct_codes, qcoeff);
1752    
1753                                    start_timer();
1754                                    MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1755                                    stop_prediction_timer();
1756    
1757                                    pEnc->current->sStat.kblks++;
1758    
1759                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1760                                    stop_coding_timer();
1761                                    continue;
1762                            }
1763    
1764                            if (pEnc->current->coding_type == S_VOP) {
1765    
1766                                    int32_t iSAD = sad16(pEnc->current->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1767                                            pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1768                                            pEnc->mbParam.edged_width, 65536);
1769    
1770                                    if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1771    
1772                                            if (pEnc->mbParam.m_quarterpel)
1773                                                    pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1774                                            else
1775                                                    pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
1776    
1777                                            pMB->mode = MODE_INTER;
1778                                            pMB->mcsel = 1;
1779                                            pMB->sad16 = iSAD;
1780                                    } else {
1781                                            pMB->mcsel = 0;
1782                                    }
1783                            } else {
1784                                    pMB->mcsel = 0; /* just a precaution */
1785                            }
1786    
1787                                  start_timer();                                  start_timer();
1788                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
1789                                                                           &pEnc->vInterH, &pEnc->vInterV,                                                                           &pEnc->vInterH, &pEnc->vInterV,
1790                                                                           &pEnc->vInterHV, &pEnc->current->image,                                                                   &pEnc->vInterHV, &pEnc->vGMC,
1791                                                                     &pEnc->current->image,
1792                                                                           dct_codes, pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
1793                                                                           pEnc->mbParam.height,                                                                           pEnc->mbParam.height,
1794                                                                           pEnc->mbParam.edged_width,                                                                           pEnc->mbParam.edged_width,
1795                                                                           pEnc->mbParam.m_quarterpel,                                                                           pEnc->mbParam.m_quarterpel,
1796                                                                     (pEnc->current->global_flags & XVID_REDUCED),
1797                                                                           pEnc->current->rounding_type);                                                                           pEnc->current->rounding_type);
1798    
1799                                  stop_comp_timer();                                  stop_comp_timer();
1800    
1801                                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {                                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
# Line 1714  Line 1813 
1813                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1814    
1815                                  if (pMB->mode != MODE_NOT_CODED)                                  if (pMB->mode != MODE_NOT_CODED)
1816                                          pMB->cbp =                          {       pMB->cbp =
1817                                                  MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,                                                  MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1818                                                                                    dct_codes, qcoeff);                                                                                    dct_codes, qcoeff);
                         } else {  
                                 CodeIntraMB(pEnc, pMB);  
                                 MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,  
                                                                   dct_codes, qcoeff);  
1819                          }                          }
1820    
1821                          start_timer();                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
                         MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);  
                         stop_prediction_timer();  
   
                         if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {  
                                 pEnc->current->sStat.kblks++;  
                         } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||  
1822                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1823                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1824                                  pEnc->current->sStat.mblks++;                                  pEnc->current->sStat.mblks++;
# Line 1741  Line 1830 
1830    
1831                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1832    
1833                          skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1834                                                          (pMB->dquant == NO_CHANGE);                                                          (pMB->dquant == NO_CHANGE);
1835    
1836                            if (pEnc->current->coding_type == S_VOP)
1837                                    skip_possible &= (pMB->mcsel == 1);
1838                            else if (pEnc->current->coding_type == P_VOP) {
1839                          if(pEnc->mbParam.m_quarterpel)                          if(pEnc->mbParam.m_quarterpel)
1840                          {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
                         }  
1841                          else                          else
1842                          {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );
1843                          }                          }
1844    
1845                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1846    
1847  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
                                 int bSkip = 1;  
1848    
1849                                  if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */                                  if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1850                                    {
1851                                            int bSkip = 1;
1852    
1853                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1854                                          {                                          {
1855                                                  int iSAD;                                                  int iSAD;
# Line 1769  Line 1862 
1862                                                  }                                                  }
1863                                          }                                          }
1864    
1865                                  if (!bSkip)                                          if (!bSkip) {   /* no SKIP, but trivial block */
                                 {  
                                         VECTOR predMV;  
1866                                          if(pEnc->mbParam.m_quarterpel) {                                          if(pEnc->mbParam.m_quarterpel) {
1867                                                  predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1868                                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */                                                          pMB->pmvs[0].x = - predMV.x;
1869                                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1870                                          }                                          }
1871                                          else {                                          else {
1872                                                  predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1873                                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */                                                          pMB->pmvs[0].x = - predMV.x;
1874                                                  pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1875                                          }                                          }
1876                                          pMB->mode = MODE_INTER;                                          pMB->mode = MODE_INTER;
1877                                          pMB->cbp = 0;                                          pMB->cbp = 0;
1878                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1879                                                    stop_coding_timer();
1880    
1881                                                    continue;       /* next MB */
1882                                  }                                  }
1883                                  else                                  }
1884                                  {                                  /* do SKIP */
1885    
1886                                          pMB->mode = MODE_NOT_CODED;                                          pMB->mode = MODE_NOT_CODED;
1887                                          MBSkip(bs);                                          MBSkip(bs);
1888                                    stop_coding_timer();
1889                                    continue;       /* next MB */
1890                                  }                                  }
1891                            /* ordinary case: normal coded INTER/INTER4V block */
1892    
                         } else {  
1893                                  if (pEnc->current->global_flags & XVID_GREYSCALE)                                  if (pEnc->current->global_flags & XVID_GREYSCALE)
1894                                  {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                                  {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1895                                          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 */
1896                                          qcoeff[5*64+0]=0;                                          qcoeff[5*64+0]=0;
1897                                  }                                  }
1898                                  MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);  
1899                            if(pEnc->mbParam.m_quarterpel) {
1900                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1901                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1902                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1903                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1904                            } else {
1905                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1906                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;
1907                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1908                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1909                            }
1910    
1911    
1912                            if (pMB->mode == MODE_INTER4V)
1913                            {       int k;
1914                                    for (k=1;k<4;k++)
1915                                    {
1916                                            if(pEnc->mbParam.m_quarterpel) {
1917                                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1918                                                    pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1919                                                    pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
1920                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1921                                            } else {
1922                                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1923                                                    pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;
1924                                                    pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;
1925                                    DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1926                                            }
1927    
1928                                    }
1929                          }                          }
1930    
1931                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1932                          stop_coding_timer();                          stop_coding_timer();
1933    
1934                    }
1935                  }                  }
1936    
1937            if ((pEnc->current->global_flags & XVID_REDUCED))
1938            {
1939                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1940                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1941                            16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);
1942          }          }
1943    
1944          emms();          emms();
# Line 1835  Line 1971 
1971          pEnc->fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1972    
1973          /* frame drop code */          /* frame drop code */
1974          // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);          DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1975          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1976                  (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1977          {          {
1978                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1979                  pEnc->current->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;                  pEnc->current->sStat.ublks = mb_width * mb_height;
1980    
1981                  BitstreamReset(bs);                  BitstreamReset(bs);
1982    
# Line 1855  Line 1991 
1991                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1992                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1993                  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);
1994                  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);
1995            }
1996    
1997            /* XXX: debug
1998            {
1999                    char s[100];
2000                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
2001                    image_dump_yuvpgm(&pEnc->current->image,
2002                            pEnc->mbParam.edged_width,
2003                            pEnc->mbParam.width, pEnc->mbParam.height, s);
2004    
2005                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
2006                    image_dump_yuvpgm(&pEnc->reference->image,
2007                            pEnc->mbParam.edged_width,
2008                            pEnc->mbParam.width, pEnc->mbParam.height, s);
2009          }          }
2010            */
2011    
2012    
2013          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
2014    
# Line 1871  Line 2022 
2022                     Bitstream * bs,                     Bitstream * bs,
2023                     uint32_t * pBits)                     uint32_t * pBits)
2024  {  {
2025          int16_t dct_codes[6 * 64];          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
2026          int16_t qcoeff[6 * 64];          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
2027          uint32_t x, y;          uint32_t x, y;
2028    
2029          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
# Line 1885  Line 2036 
2036                  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); \
2037          }          }
2038    
2039            pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */
2040    
2041          if (!first){          if (!first){
2042                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
2043          }          }
# Line 1946  Line 2099 
2099          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
2100                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
2101                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
2102                          int direction = pEnc->global & XVID_ALTERNATESCAN ? 2 : 0;                          int direction = pEnc->mbParam.global & XVID_ALTERNATESCAN ? 2 : 0;
2103    
2104                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
2105                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
# Line 1997  Line 2150 
2150          }          }
2151  #endif  #endif
2152  }  }
   
   
 /*      in case internal output is needed somewhere... */  
 /*      {  
         FILE *filehandle;  
         filehandle=fopen("last-b.pgm","wb");  
         if (filehandle)  
         {  
                 fprintf(filehandle,"P5\n\n");           //  
                 fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);  
                 fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);  
                 fclose(filehandle);  
                 }  
         }  
 */  

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

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