[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.95.2.35, Tue Jul 29 23:02:29 2003 UTC revision 1.95.2.55, Thu Nov 20 12:07:19 2003 UTC
# Line 117  Line 117 
117          Encoder *pEnc;          Encoder *pEnc;
118      int n;      int n;
119    
120          if (XVID_MAJOR(create->version) != 1)   /* v1.x.x */          if (XVID_VERSION_MAJOR(create->version) != 1) /* v1.x.x */
121                  return XVID_ERR_VERSION;                  return XVID_ERR_VERSION;
122    
123          if (create->width%2 || create->height%2)          if (create->width%2 || create->height%2)
# Line 188  Line 188 
188          pcreate.zones = pEnc->zones;          pcreate.zones = pEnc->zones;
189          pcreate.width = pEnc->mbParam.width;          pcreate.width = pEnc->mbParam.width;
190          pcreate.height = pEnc->mbParam.height;          pcreate.height = pEnc->mbParam.height;
191                    pcreate.mb_width = pEnc->mbParam.mb_width;
192                    pcreate.mb_height = pEnc->mbParam.mb_height;
193          pcreate.fincr = pEnc->mbParam.fincr;          pcreate.fincr = pEnc->mbParam.fincr;
194          pcreate.fbase = pEnc->mbParam.fbase;          pcreate.fbase = pEnc->mbParam.fbase;
195          pcreate.param = create->plugins[n].param;          pcreate.param = create->plugins[n].param;
# Line 226  Line 228 
228          pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);          pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);
229    
230      /* max keyframe interval */      /* max keyframe interval */
231      pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <= 0 ?          pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <= 0 ? (10 * (int)pEnc->mbParam.fbase) / (int)pEnc->mbParam.fincr : create->max_key_interval;
                 (10 * pEnc->mbParam.fbase) / pEnc->mbParam.fincr : create->max_key_interval;  
232    
233      /* allocate working frame-image memory */      /* allocate working frame-image memory */
234    
# Line 264  Line 265 
265          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
266          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
267          image_null(&pEnc->vInterV);          image_null(&pEnc->vInterV);
         image_null(&pEnc->vInterVf);  
268          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
         image_null(&pEnc->vInterHVf);  
269    
270          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
271          if (image_create          if (image_create
# Line 310  Line 309 
309                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
310                  goto xvid_err_memory3;                  goto xvid_err_memory3;
311          if (image_create          if (image_create
                 (&pEnc->vInterVf, pEnc->mbParam.edged_width,  
                  pEnc->mbParam.edged_height) < 0)  
                 goto xvid_err_memory3;  
         if (image_create  
312                  (&pEnc->vInterHV, pEnc->mbParam.edged_width,                  (&pEnc->vInterHV, pEnc->mbParam.edged_width,
313                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
314                  goto xvid_err_memory3;                  goto xvid_err_memory3;
         if (image_create  
                 (&pEnc->vInterHVf, pEnc->mbParam.edged_width,  
                  pEnc->mbParam.edged_height) < 0)  
                 goto xvid_err_memory3;  
315    
316  /* Create full bitplane for GMC, this might be wasteful */  /* Create full bitplane for GMC, this might be wasteful */
317          if (image_create          if (image_create
# Line 390  Line 381 
381                  image_null(&pEnc->queue[n].image);                  image_null(&pEnc->queue[n].image);
382    
383    
384          for (n = 0; n < pEnc->mbParam.max_bframes+1; n++)          for (n = 0; n < pEnc->mbParam.max_bframes+1; n++) {
         {  
385                  if (image_create                  if (image_create
386                          (&pEnc->queue[n].image, pEnc->mbParam.edged_width,                          (&pEnc->queue[n].image, pEnc->mbParam.edged_width,
387                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
388                          goto xvid_err_memory5;                          goto xvid_err_memory5;
   
389          }          }
390    
   
391          /* timestamp stuff */          /* timestamp stuff */
392    
393          pEnc->mbParam.m_stamp = 0;          pEnc->mbParam.m_stamp = 0;
# Line 424  Line 412 
412    
413    xvid_err_memory5:    xvid_err_memory5:
414    
415          if (pEnc->mbParam.max_bframes > 0) {          for (n = 0; n < pEnc->mbParam.max_bframes+1; n++) {
416          int i;                          image_destroy(&pEnc->queue[n].image, pEnc->mbParam.edged_width,
   
                 for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {  
                         image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,  
417                                                    pEnc->mbParam.edged_height);                                                    pEnc->mbParam.edged_height);
418                  }                  }
419    
420                  xvid_free(pEnc->queue);                  xvid_free(pEnc->queue);
         }  
421    
422    xvid_err_memory4:    xvid_err_memory4:
423    
# Line 446  Line 431 
431    
432                          image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,                          image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
433                                                    pEnc->mbParam.edged_height);                                                    pEnc->mbParam.edged_height);
   
434                          xvid_free(pEnc->bframes[i]->mbs);                          xvid_free(pEnc->bframes[i]->mbs);
   
435                          xvid_free(pEnc->bframes[i]);                          xvid_free(pEnc->bframes[i]);
   
436                  }                  }
437    
438                  xvid_free(pEnc->bframes);                  xvid_free(pEnc->bframes);
# Line 480  Line 462 
462                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
463          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
464                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
465          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
466                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
467    
468  /* destroy GMC image */  /* destroy GMC image */
469          image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
# Line 539  Line 517 
517          int i;          int i;
518    
519          /* B Frames specific */          /* B Frames specific */
         if (pEnc->mbParam.max_bframes > 0) {  
   
520                  for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {                  for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {
   
521                          image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,                          image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,
522                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
523                  }                  }
                 xvid_free(pEnc->queue);  
         }  
524    
525            xvid_free(pEnc->queue);
526    
527          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
528    
# Line 559  Line 533 
533    
534                          image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,                          image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
535                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
   
536                          xvid_free(pEnc->bframes[i]->mbs);                          xvid_free(pEnc->bframes[i]->mbs);
   
537                          xvid_free(pEnc->bframes[i]);                          xvid_free(pEnc->bframes[i]);
538                  }                  }
539    
# Line 579  Line 551 
551                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
552          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
553                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
554          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
555                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
   
556          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
557                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
558          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
# Line 664  Line 631 
631      data.mb_height = pEnc->mbParam.mb_height;      data.mb_height = pEnc->mbParam.mb_height;
632      data.fincr = frame->fincr;      data.fincr = frame->fincr;
633      data.fbase = pEnc->mbParam.fbase;      data.fbase = pEnc->mbParam.fbase;
634            data.bquant_ratio = pEnc->mbParam.bquant_ratio;
635            data.bquant_offset = pEnc->mbParam.bquant_offset;
636    
637      for (i=0; i<3; i++) {      for (i=0; i<3; i++) {
638          data.min_quant[i] = pEnc->mbParam.min_quant[i];          data.min_quant[i] = pEnc->mbParam.min_quant[i];
# Line 692  Line 661 
661          data.type = *type;          data.type = *type;
662          data.quant = *quant;          data.quant = *quant;
663    
664                    data.vol_flags = frame->vol_flags;
665                    data.vop_flags = frame->vop_flags;
666                    data.motion_flags = frame->motion_flags;
667    
668            } else if (opt == XVID_PLG_FRAME) {
669                    data.type = coding2type(frame->coding_type);
670                    data.quant = frame->quant;
671    
672                  if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {                  if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
673              data.dquant = pEnc->temp_dquants;              data.dquant = pEnc->temp_dquants;
674              data.dquant_stride = pEnc->mbParam.mb_width;              data.dquant_stride = pEnc->mbParam.mb_width;
675                          memset(data.dquant, 0, data.mb_width*data.mb_height);                          memset(data.dquant, 0, data.mb_width*data.mb_height);
676          }          }
677    
         data.vol_flags = frame->vol_flags;  
         data.vop_flags = frame->vop_flags;  
         data.motion_flags = frame->motion_flags;  
   
678      } else { /* XVID_PLG_AFTER */      } else { /* XVID_PLG_AFTER */
679          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
680              data.original.csp = XVID_CSP_USER;              data.original.csp = XVID_CSP_USER;
# Line 741  Line 714 
714    
715              for (j=0; j<pEnc->mbParam.mb_height; j++)              for (j=0; j<pEnc->mbParam.mb_height; j++)
716              for (i=0; i<pEnc->mbParam.mb_width; i++) {              for (i=0; i<pEnc->mbParam.mb_width; i++) {
717                  data.dquant[j*data.dquant_stride + i] = frame->mbs[j*pEnc->mbParam.mb_width + i].dquant;;                                  data.dquant[j*data.dquant_stride + i] = frame->mbs[j*pEnc->mbParam.mb_width + i].dquant;
718              }              }
719          }          }
720    
# Line 771  Line 744 
744      }      }
745    
746      /* call plugins */      /* call plugins */
747      for (i=0; i<pEnc->num_plugins;i++) {          for (i=0; i<(unsigned int)pEnc->num_plugins;i++) {
748          emms();          emms();
749          if (pEnc->plugins[i].func) {          if (pEnc->plugins[i].func) {
750              if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {              if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {
# Line 786  Line 759 
759          *type = data.type;          *type = data.type;
760          *quant = data.quant > 0 ? data.quant : 2;   /* default */          *quant = data.quant > 0 ? data.quant : 2;   /* default */
761    
762                    frame->vol_flags = data.vol_flags;
763                    frame->vop_flags = data.vop_flags;
764                    frame->motion_flags = data.motion_flags;
765    
766            } else if (opt == XVID_PLG_FRAME) {
767    
768          if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {          if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
769              for (j=0; j<pEnc->mbParam.mb_height; j++)              for (j=0; j<pEnc->mbParam.mb_height; j++)
770              for (i=0; i<pEnc->mbParam.mb_width; i++) {              for (i=0; i<pEnc->mbParam.mb_width; i++) {
# Line 797  Line 776 
776                  frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;                  frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;
777              }              }
778          }          }
779                    frame->mbs[0].quant = data.quant; /* FRAME will not affect the quant in stats */
         frame->vol_flags = data.vol_flags;  
         frame->vop_flags = data.vop_flags;  
         frame->motion_flags = data.motion_flags;  
     }  
780  }  }
781    
782    
783    }
784    
785    
786  static __inline void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
# Line 822  Line 798 
798      pEnc->m_framenum--; /* debug ticker */      pEnc->m_framenum--; /* debug ticker */
799  }  }
800    
801    static __inline void
802    MBSetDquant(MACROBLOCK * pMB, int x, int y, MBParam * mbParam)
803    {
804            if (pMB->cbp == 0) {
805                    /* we want to code dquant but the quantizer value will not be used yet
806                            let's find out if we can postpone dquant to next MB
807                    */
808                    if (x == mbParam->mb_width-1 && y == mbParam->mb_height-1) {
809                            pMB->dquant = 0; /* it's the last MB of all, the easiest case */
810                            return;
811                    } else {
812                            MACROBLOCK * next = pMB + 1;
813                            const MACROBLOCK * prev = pMB - 1;
814                            if (next->mode != MODE_INTER4V && next->mode != MODE_NOT_CODED)
815                                    /* mode allows dquant change in the future */
816                                    if (abs(next->quant - prev->quant) <= 2) {
817                                            /* quant change is not out of range */
818                                            pMB->quant = prev->quant;
819                                            pMB->dquant = 0;
820                                            next->dquant = next->quant - prev->quant;
821                                            return;
822                                    }
823                    }
824            }
825            /* couldn't skip this dquant */
826            pMB->mode = MODE_INTER_Q;
827    }
828    
829    
830    
831  static __inline void  static __inline void
# Line 867  Line 871 
871          int type;          int type;
872          Bitstream bs;          Bitstream bs;
873    
874          if (XVID_MAJOR(xFrame->version) != 1 || (stats && XVID_MAJOR(stats->version) != 1))     /* v1.x.x */          if (XVID_VERSION_MAJOR(xFrame->version) != 1 || (stats && XVID_VERSION_MAJOR(stats->version) != 1))     /* v1.x.x */
875                  return XVID_ERR_VERSION;                  return XVID_ERR_VERSION;
876    
877          xFrame->out_flags = 0;          xFrame->out_flags = 0;
# Line 965  Line 969 
969                          tmp = pEnc->current->seconds;                          tmp = pEnc->current->seconds;
970                          pEnc->current->seconds = 0; /* force time_base = 0 */                          pEnc->current->seconds = 0; /* force time_base = 0 */
971    
972                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0, pEnc->current->quant);
973                          BitstreamPad(&bs);                          BitstreamPad(&bs);
974                          pEnc->current->seconds = tmp;                          pEnc->current->seconds = tmp;
975    
# Line 1010  Line 1014 
1014                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1015    
1016                                  /* convert B-VOP to P-VOP */                                  /* convert B-VOP to P-VOP */
1017                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;                                  pEnc->current->quant  = 100*pEnc->current->quant - pEnc->mbParam.bquant_offset;
1018                                    pEnc->current->quant += pEnc->mbParam.bquant_ratio - 1; /* to avoid rouding issues */
1019                                    pEnc->current->quant /= pEnc->mbParam.bquant_ratio;
1020    
1021                  if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {                  if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1022                              image_copy(&pEnc->sOriginal, &pEnc->current->image,                              image_copy(&pEnc->sOriginal, &pEnc->current->image,
# Line 1085  Line 1091 
1091                  }else{                  }else{
1092                          type = MEanalysis(&pEnc->reference->image, pEnc->current,                          type = MEanalysis(&pEnc->reference->image, pEnc->current,
1093                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
1094                                          pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold);                                                            pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold,
1095                                                              (pEnc->bframes) ? pEnc->bframes[pEnc->bframenum_head]->mbs: NULL);
1096                  }                  }
1097          }          }
1098    
# Line 1098  Line 1105 
1105    
1106          if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {          if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1107                  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,
1108                          "%i  st:%i  if:%i", pEnc->current->frame_num, pEnc->current->stamp, pEnc->iFrameNum);                          "%d  st:%lld  if:%d", pEnc->current->frame_num, pEnc->current->stamp, pEnc->iFrameNum);
1109          }          }
1110    
1111          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 1177  Line 1184 
1184                  }                  }
1185    
1186                  /* convert B-VOP quant to P-VOP */                  /* convert B-VOP quant to P-VOP */
1187                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;                  pEnc->current->quant  = 100*pEnc->current->quant - pEnc->mbParam.bquant_offset;
1188                    pEnc->current->quant += pEnc->mbParam.bquant_ratio - 1; /* to avoid rouding issues */
1189                    pEnc->current->quant /= pEnc->mbParam.bquant_ratio;
1190          type = P_VOP;          type = P_VOP;
1191      }      }
1192    
# Line 1200  Line 1209 
1209    
1210                  /* ---- update vol flags at IVOP ----------- */                  /* ---- update vol flags at IVOP ----------- */
1211                  pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;                  pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
1212                    switch(frame->par) {
1213                    case XVID_PAR_11_VGA:
1214                    case XVID_PAR_43_PAL:
1215                    case XVID_PAR_43_NTSC:
1216                    case XVID_PAR_169_PAL:
1217                    case XVID_PAR_169_NTSC:
1218                    case XVID_PAR_EXT:
1219                            pEnc->mbParam.par = frame->par;
1220                            break;
1221                    default:
1222                            pEnc->mbParam.par = XVID_PAR_EXT;
1223                            break;
1224                    }
1225                    pEnc->mbParam.par_width = (frame->par_width)?frame->par_width:1;
1226                    pEnc->mbParam.par_height = (frame->par_height)?frame->par_height:1;
1227    
1228          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {
1229                          if (frame->quant_intra_matrix != NULL)                          if (frame->quant_intra_matrix != NULL)
# Line 1253  Line 1277 
1277           * on next enc_encode call we must flush bframes           * on next enc_encode call we must flush bframes
1278           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1279    
1280  done_flush:  /*done_flush:*/
1281    
1282      pEnc->flush_bframes = 1;      pEnc->flush_bframes = 1;
1283    
# Line 1283  Line 1307 
1307    
1308  static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)  static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)
1309  {  {
1310      unsigned int i,j;          unsigned int i;
1311      int quant = frame->quant;          MACROBLOCK * pMB = frame->mbs;
1312            int quant = frame->mbs[0].quant; /* set by XVID_PLG_FRAME */
1313            if (quant > 31)
1314                    frame->quant = quant = 31;
1315            else if (quant < 1)
1316                    frame->quant = quant = 1;
1317    
1318      for (j=0; j<pParam->mb_height; j++)          for (i = 0; i < pParam->mb_height * pParam->mb_width; i++) {
     for (i=0; i<pParam->mb_width; i++) {  
         MACROBLOCK * pMB = &frame->mbs[j*pParam->mb_width + i];  
1319          quant += pMB->dquant;          quant += pMB->dquant;
1320          if (quant > 31)          if (quant > 31)
1321                          quant = 31;                          quant = 31;
1322                  if (quant < 1)                  else if (quant < 1)
1323                          quant = 1;                          quant = 1;
1324          pMB->quant = quant;          pMB->quant = quant;
1325                    pMB++;
1326      }      }
1327  }  }
1328    
# Line 1350  Line 1378 
1378          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1379          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1380    
1381            call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
1382    
1383      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1384    
1385          BitstreamWriteVolHeader(bs, &pEnc->mbParam);          BitstreamWriteVolHeader(bs, &pEnc->mbParam);
# Line 1358  Line 1388 
1388    
1389          BitstreamPad(bs);          BitstreamPad(bs);
1390    
1391          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1, pEnc->current->mbs[0].quant);
1392    
1393          pEnc->current->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1394          pEnc->current->sStat.kblks = mb_width * mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
# Line 1403  Line 1433 
1433          pEnc->fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
1434          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1435    
1436            pEnc->current->is_edged = 0; /* not edged */
1437            pEnc->current->is_interpolated = -1; /* not interpolated (fake rounding -1) */
1438    
1439          return 1;                                       /* intra */          return 1;                                       /* intra */
1440  }  }
1441    
# Line 1445  Line 1478 
1478          }          }
1479    
1480    
1481            if (!reference->is_edged) {
1482          start_timer();          start_timer();
1483          image_setedges(pRef, pParam->edged_width, pParam->edged_height,          image_setedges(pRef, pParam->edged_width, pParam->edged_height,
1484                                     pParam->width, pParam->height);                                     pParam->width, pParam->height);
1485          stop_edges_timer();          stop_edges_timer();
1486                    reference->is_edged = 1;
1487            }
1488    
1489          pParam->m_rounding_type = 1 - pParam->m_rounding_type;          pParam->m_rounding_type = 1 - pParam->m_rounding_type;
1490          current->rounding_type = pParam->m_rounding_type;          current->rounding_type = pParam->m_rounding_type;
# Line 1460  Line 1496 
1496                  iLimit = mb_width * mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1497    
1498          if ((current->vop_flags & XVID_VOP_HALFPEL)) {          if ((current->vop_flags & XVID_VOP_HALFPEL)) {
1499                    if (reference->is_interpolated != current->rounding_type) {
1500                  start_timer();                  start_timer();
1501                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1502                                                    &pEnc->vInterHV, pParam->edged_width,                                                    &pEnc->vInterHV, pParam->edged_width,
# Line 1467  Line 1504 
1504                                                    (pParam->vol_flags & XVID_VOL_QUARTERPEL),                                                    (pParam->vol_flags & XVID_VOL_QUARTERPEL),
1505                                                    current->rounding_type);                                                    current->rounding_type);
1506                  stop_inter_timer();                  stop_inter_timer();
1507                            reference->is_interpolated = current->rounding_type;
1508                    }
1509          }          }
1510    
1511          current->coding_type = P_VOP;          current->coding_type = P_VOP;
1512    
1513            call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
1514    
1515      SetMacroblockQuants(&pEnc->mbParam, current);      SetMacroblockQuants(&pEnc->mbParam, current);
1516    
# Line 1480  Line 1520 
1520                  current->warp = GlobalMotionEst( current->mbs, pParam, current, reference,                  current->warp = GlobalMotionEst( current->mbs, pParam, current, reference,
1521                                                                   &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                                                                   &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1522    
1523                  if (current->motion_flags & XVID_GME_REFINE) {                  if (current->motion_flags & XVID_ME_GME_REFINE) {
1524                          gmcval = GlobalMotionEstRefine(&current->warp,                          gmcval = GlobalMotionEstRefine(&current->warp,
1525                                                                  current->mbs, pParam,                                                                  current->mbs, pParam,
1526                                                                  current, reference,                                                                  current, reference,
# Line 1489  Line 1529 
1529                                                                  &pEnc->vInterH,                                                                  &pEnc->vInterH,
1530                                                                  &pEnc->vInterV,                                                                  &pEnc->vInterV,
1531                                                                  &pEnc->vInterHV);                                                                  &pEnc->vInterHV);
1532                          gmcval += /*current->quant */ 2 * (int)(pParam->mb_width*pParam->mb_height);                  } else {
                 }  
   
1533                  gmcval = globalSAD(&current->warp, pParam, current->mbs,                  gmcval = globalSAD(&current->warp, pParam, current->mbs,
1534                                                          current,                                                          current,
1535                                                          &reference->image,                                                          &reference->image,
1536                                                          &current->image,                                                          &current->image,
1537                                                          pEnc->vGMC.y);                                                          pEnc->vGMC.y);
1538                    }
1539    
1540                  gmcval += /*current->quant*/ 2 * (int)(pParam->mb_width*pParam->mb_height);                  gmcval += /*current->quant*/ 2 * (int)(pParam->mb_width*pParam->mb_height);
1541    
1542  /* 1st '3': 3 warpoints, 2nd '3': 16th pel res (2<<3) */  /* 1st '3': 3 warpoints, 2nd '3': 16th pel res (2<<3) */
# Line 1541  Line 1581 
1581                  BitstreamPad(bs);                  BitstreamPad(bs);
1582          }          }
1583    
1584          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1, current->mbs[0].quant);
1585    
1586          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1587                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;
# Line 1565  Line 1605 
1605    
1606                                  current->sStat.kblks++;                                  current->sStat.kblks++;
1607    
1608                                    if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)
1609                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1610                                            qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1611                                            qcoeff[5*64+0]=0;
1612                                    }
1613                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);
1614                                  stop_coding_timer();                                  stop_coding_timer();
1615                                  continue;                                  continue;
# Line 1584  Line 1629 
1629    
1630                          stop_comp_timer();                          stop_comp_timer();
1631    
                         if (pMB->dquant != 0) {  
                 pMB->mode = MODE_INTER_Q;  
                         }  
   
1632                          pMB->field_pred = 0;                          pMB->field_pred = 0;
1633    
1634                          if (pMB->mode != MODE_NOT_CODED)                          if (pMB->mode != MODE_NOT_CODED)
# Line 1596  Line 1637 
1637                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
1638                          }                          }
1639    
1640                            if (pMB->dquant != 0)
1641                                    MBSetDquant(pMB, x, y, &pEnc->mbParam);
1642    
1643    
1644                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1645                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1646                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
# Line 1757  Line 1802 
1802                  BitstreamReset(bs);                  BitstreamReset(bs);
1803    
1804                  set_timecodes(current,reference,pParam->fbase);                  set_timecodes(current,reference,pParam->fbase);
1805                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 0);                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 0, current->mbs[0].quant);
1806    
1807                  /* copy reference frame details into the current frame */                  /* copy reference frame details into the current frame */
1808                  current->quant = reference->quant;                  current->quant = reference->quant;
# Line 1769  Line 1814 
1814                  memcpy(current->mbs, reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);                  memcpy(current->mbs, reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1815          }          }
1816    
1817            pEnc->current->is_edged = 0; /* not edged */
1818            pEnc->current->is_interpolated = -1; /* not interpolated (fake rounding -1) */
1819    
1820            /* what was this frame's interpolated reference will become
1821                    forward (past) reference in b-frame coding */
1822    
1823            image_swap(&pEnc->vInterH, &pEnc->f_refh);
1824            image_swap(&pEnc->vInterV, &pEnc->f_refv);
1825            image_swap(&pEnc->vInterHV, &pEnc->f_refhv);
1826    
1827    
1828          /* XXX: debug          /* XXX: debug
1829          {          {
1830                  char s[100];                  char s[100];
# Line 1820  Line 1876 
1876  #endif  #endif
1877    
1878          /* forward  */          /* forward  */
1879            if (!pEnc->reference->is_edged) {
1880          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
1881                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1882                                     pEnc->mbParam.height);                                     pEnc->mbParam.height);
1883                    pEnc->current->is_edged = 1;
1884            }
1885    
1886            if (pEnc->reference->is_interpolated != 0) {
1887          start_timer();          start_timer();
1888          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,
1889                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1890                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1891          stop_inter_timer();          stop_inter_timer();
1892                    pEnc->reference->is_interpolated = 0;
1893            }
1894    
1895          /* backward */          /* backward */
1896            if (!pEnc->current->is_edged) {
1897          image_setedges(b_ref, pEnc->mbParam.edged_width,          image_setedges(b_ref, pEnc->mbParam.edged_width,
1898                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,                                     pEnc->mbParam.edged_height, pEnc->mbParam.width,
1899                                     pEnc->mbParam.height);                                     pEnc->mbParam.height);
1900                    pEnc->current->is_edged = 1;
1901            }
1902    
1903            if (pEnc->current->is_interpolated != 0) {
1904          start_timer();          start_timer();
1905          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1906                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1907                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1908          stop_inter_timer();          stop_inter_timer();
1909                    pEnc->current->is_interpolated = 0;
1910            }
1911    
1912            frame->coding_type = B_VOP;
1913            call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
1914    
1915          start_timer();          start_timer();
1916          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
# Line 1849  Line 1922 
1922                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1923          stop_motion_timer();          stop_motion_timer();
1924    
         frame->coding_type = B_VOP;  
   
1925          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1926          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1, frame->quant);
1927    
1928          frame->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
1929          frame->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
# Line 1864  Line 1935 
1935          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1936                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1937                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
                         int direction = frame->vop_flags & XVID_VOP_ALTERNATESCAN ? 2 : 0;  
1938    
1939                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */
1940                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
1941                                  /* mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0; */                                  if (pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
1942                                            MBMotionCompensation(mb, x, y, f_ref, NULL, f_ref, NULL, NULL, &frame->image,
1943                                                                                            NULL, 0, 0, pEnc->mbParam.edged_width, 0, 0, 0);
1944                                    }
1945    
1946                                  continue;                                  continue;
1947                          }                          }
1948    
# Line 1891  Line 1965 
1965                                  }                                  }
1966                          }                          }
1967    
1968  #ifdef BFRAMES_DEC_DEBUG                          /* keep only bits 5-2 -- Chroma blocks will just be skipped by the
1969          BFRAME_DEBUG                           * coding function for BFrames, that's why we don't zero teh DC
1970  #endif                           * coeffs */
1971                            if ((frame->vop_flags & XVID_VOP_GREYSCALE))
1972                                    mb->cbp &= 0x3C;
1973    
1974                          start_timer();                          start_timer();
1975                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,                          MBCodingBVOP(frame, mb, qcoeff, frame->fcode, frame->bcode, bs,
1976                                                   &frame->sStat, direction);                                                   &frame->sStat);
1977                          stop_coding_timer();                          stop_coding_timer();
1978                  }                  }
1979          }          }

Legend:
Removed from v.1.95.2.35  
changed lines
  Added in v.1.95.2.55

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