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

Diff of /trunk/xvidcore/src/encoder.c

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

revision 1403, Sat Apr 3 10:41:42 2004 UTC revision 1766, Thu Dec 14 13:09:00 2006 UTC
# Line 21  Line 21 
21   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
22   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23   *   *
24   * $Id: encoder.c,v 1.104 2004-04-03 10:41:42 syskin Exp $   * $Id: encoder.c,v 1.129 2006-12-14 13:09:00 Isibaar Exp $
25   *   *
26   ****************************************************************************/   ****************************************************************************/
27    
# Line 49  Line 49 
49  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
50  #include "utils/mem_align.h"  #include "utils/mem_align.h"
51    
52    # include "motion/motion_smp.h"
53    
54    
55  /*****************************************************************************  /*****************************************************************************
56   * Local function prototypes   * Local function prototypes
57   ****************************************************************************/   ****************************************************************************/
# Line 85  Line 88 
88  /*  /*
89   * Simplify the "fincr/fbase" fraction   * Simplify the "fincr/fbase" fraction
90  */  */
91    static int
92    gcd(int a, int b)
93    {
94            int r ;
95    
96            if (b > a) {
97                    r = a;
98                    a = b;
99                    b = r;
100            }
101    
102            while ((r = a % b)) {
103                    a = b;
104                    b = r;
105            }
106            return b;
107    }
108    
109  static void  static void
110  simplify_time(int *inc, int *base)  simplify_time(int *inc, int *base)
111  {  {
112          /* common factor */          /* common factor */
113          int i = *inc;          const int s = gcd(*inc, *base);
114          while (i > 1) {    *inc  /= s;
115                  if (*inc % i == 0 && *base % i == 0) {    *base /= s;
116                          *inc /= i;  
117                          *base /= i;          if (*base > 65535 || *inc > 65535) {
118                          i = *inc;                  int *biggest;
119                          continue;                  int *other;
120                  }                  float div;
121                  i--;  
122                    if (*base > *inc) {
123                            biggest = base;
124                            other = inc;
125                    } else {
126                            biggest = inc;
127                            other = base;
128          }          }
129    
130          /* if neccessary, round to 65535 accuracy */                  div = ((float)*biggest)/((float)65535);
131          if (*base > 65535) {                  *biggest = (unsigned int)(((float)*biggest)/div);
132                  float div = (float) *base / 65535;                  *other = (unsigned int)(((float)*other)/div);
                 *base = (int) (*base / div);  
                 *inc = (int) (*inc / div);  
133          }          }
134  }  }
135    
# Line 135  Line 160 
160    
161          /* global flags */          /* global flags */
162          pEnc->mbParam.global_flags = create->global;          pEnc->mbParam.global_flags = create->global;
163      if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED))
164        pEnc->mbParam.global_flags |= XVID_GLOBAL_DIVX5_USERDATA;
165    
166          /* width, height */          /* width, height */
167          pEnc->mbParam.width = create->width;          pEnc->mbParam.width = create->width;
# Line 148  Line 175 
175          pEnc->mbParam.fincr = MAX(create->fincr, 0);          pEnc->mbParam.fincr = MAX(create->fincr, 0);
176          pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;          pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;
177          if (pEnc->mbParam.fincr>0)          if (pEnc->mbParam.fincr>0)
178                  simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);                  simplify_time((int*)&pEnc->mbParam.fincr, (int*)&pEnc->mbParam.fbase);
179    
180          /* zones */          /* zones */
181          if(create->num_zones > 0) {          if(create->num_zones > 0) {
# Line 179  Line 206 
206    
207                  memset(&pinfo, 0, sizeof(xvid_plg_info_t));                  memset(&pinfo, 0, sizeof(xvid_plg_info_t));
208                  pinfo.version = XVID_VERSION;                  pinfo.version = XVID_VERSION;
209                  if (create->plugins[n].func(0, XVID_PLG_INFO, &pinfo, 0) >= 0) {                  if (create->plugins[n].func(NULL, XVID_PLG_INFO, &pinfo, NULL) >= 0) {
210                          pEnc->mbParam.plugin_flags |= pinfo.flags;                          pEnc->mbParam.plugin_flags |= pinfo.flags;
211                  }                  }
212    
# Line 196  Line 223 
223                  pcreate.param = create->plugins[n].param;                  pcreate.param = create->plugins[n].param;
224    
225                  pEnc->plugins[n].func = NULL;   /* disable plugins that fail */                  pEnc->plugins[n].func = NULL;   /* disable plugins that fail */
226                  if (create->plugins[n].func(0, XVID_PLG_CREATE, &pcreate, &pEnc->plugins[n].param) >= 0) {                  if (create->plugins[n].func(NULL, XVID_PLG_CREATE, &pcreate, &pEnc->plugins[n].param) >= 0) {
227                          pEnc->plugins[n].func = create->plugins[n].func;                          pEnc->plugins[n].func = create->plugins[n].func;
228                  }                  }
229          }          }
# Line 214  Line 241 
241                          goto xvid_err_memory1a;                          goto xvid_err_memory1a;
242          }          }
243    
244            /* temp lambdas */
245            if (pEnc->mbParam.plugin_flags & XVID_REQLAMBDA) {
246                    pEnc->temp_lambda = (float *) xvid_malloc(pEnc->mbParam.mb_width *
247                                                    pEnc->mbParam.mb_height * 6 * sizeof(float), CACHE_LINE);
248                    if (pEnc->temp_lambda == NULL)
249                            goto xvid_err_memory1a;
250            }
251    
252          /* bframes */          /* bframes */
253          pEnc->mbParam.max_bframes = MAX(create->max_bframes, 0);          pEnc->mbParam.max_bframes = MAX(create->max_bframes, 0);
254          pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);          pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);
# Line 409  Line 444 
444          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
445          pEnc->fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
446    
447            /* multithreaded stuff */
448            if (create->num_threads > 0) {
449                    int t = create->num_threads;
450                    int rows_per_thread = (pEnc->mbParam.mb_height+t-1)/t;
451                    pEnc->num_threads = t;
452                    pEnc->motionData = xvid_malloc(t*sizeof(SMPmotionData), CACHE_LINE);
453                    if (!pEnc->motionData)
454                            goto xvid_err_nosmp;
455    
456                    for (n = 0; n < t; n++) {
457                            pEnc->motionData[n].complete_count_self =
458                                    xvid_malloc(rows_per_thread * sizeof(int), CACHE_LINE);
459    
460                            if (!pEnc->motionData[n].complete_count_self)
461                                    goto xvid_err_nosmp;
462    
463                            if (n != 0)
464                                    pEnc->motionData[n].complete_count_above =
465                                            pEnc->motionData[n-1].complete_count_self;
466                    }
467                    pEnc->motionData[0].complete_count_above =
468                            pEnc->motionData[t-1].complete_count_self - 1;
469    
470            } else {
471      xvid_err_nosmp:
472                    /* no SMP */
473                    create->num_threads = 0;
474                    pEnc->motionData = NULL;
475            }
476    
477          create->handle = (void *) pEnc;          create->handle = (void *) pEnc;
478    
479          init_timer();          init_timer();
# Line 495  Line 560 
560                  xvid_free(pEnc->temp_dquants);                  xvid_free(pEnc->temp_dquants);
561          }          }
562    
563            if(pEnc->mbParam.plugin_flags & XVID_REQLAMBDA) {
564                    xvid_free(pEnc->temp_lambda);
565            }
566    
567    xvid_err_memory0:    xvid_err_memory0:
568          for (n=0; n<pEnc->num_plugins;n++) {          for (n=0; n<pEnc->num_plugins;n++) {
569                  if (pEnc->plugins[n].func) {                  if (pEnc->plugins[n].func) {
570                          pEnc->plugins[n].func(pEnc->plugins[n].param, XVID_PLG_DESTROY, 0, 0);                          pEnc->plugins[n].func(pEnc->plugins[n].param, XVID_PLG_DESTROY, NULL, NULL);
571                  }                  }
572          }          }
573          xvid_free(pEnc->plugins);          xvid_free(pEnc->plugins);
# Line 593  Line 662 
662                  xvid_free(pEnc->temp_dquants);                  xvid_free(pEnc->temp_dquants);
663          }          }
664    
665            if ((pEnc->mbParam.plugin_flags & XVID_REQLAMBDA)) {
666                    xvid_free(pEnc->temp_lambda);
667            }
668    
669          if (pEnc->num_plugins>0) {          if (pEnc->num_plugins>0) {
670                  xvid_plg_destroy_t pdestroy;                  xvid_plg_destroy_t pdestroy;
# Line 603  Line 675 
675    
676                  for (i=0; i<pEnc->num_plugins;i++) {                  for (i=0; i<pEnc->num_plugins;i++) {
677                          if (pEnc->plugins[i].func) {                          if (pEnc->plugins[i].func) {
678                                  pEnc->plugins[i].func(pEnc->plugins[i].param, XVID_PLG_DESTROY, &pdestroy, 0);                                  pEnc->plugins[i].func(pEnc->plugins[i].param, XVID_PLG_DESTROY, &pdestroy, NULL);
679                          }                          }
680                  }                  }
681                  xvid_free(pEnc->plugins);                  xvid_free(pEnc->plugins);
# Line 611  Line 683 
683    
684          xvid_free(pEnc->mbParam.mpeg_quant_matrices);          xvid_free(pEnc->mbParam.mpeg_quant_matrices);
685    
686          if (pEnc->num_plugins>0)          if (pEnc->num_zones > 0)
687                  xvid_free(pEnc->zones);                  xvid_free(pEnc->zones);
688    
689            if (pEnc->num_threads > 0) {
690                    for (i = 0; i < pEnc->num_threads; i++)
691                            xvid_free(pEnc->motionData[i].complete_count_self);
692    
693                    xvid_free(pEnc->motionData);
694            }
695    
696          xvid_free(pEnc);          xvid_free(pEnc);
697    
698          return 0;  /* ok */          return 0;  /* ok */
# Line 627  Line 706 
706  static void call_plugins(Encoder * pEnc, FRAMEINFO * frame, IMAGE * original,  static void call_plugins(Encoder * pEnc, FRAMEINFO * frame, IMAGE * original,
707                                                   int opt, int * type, int * quant, xvid_enc_stats_t * stats)                                                   int opt, int * type, int * quant, xvid_enc_stats_t * stats)
708  {  {
709          unsigned int i, j;          unsigned int i, j, k;
710          xvid_plg_data_t data;          xvid_plg_data_t data;
711    
712          /* set data struct */          /* set data struct */
# Line 686  Line 765 
765                  if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {                  if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
766                          data.dquant = pEnc->temp_dquants;                          data.dquant = pEnc->temp_dquants;
767                          data.dquant_stride = pEnc->mbParam.mb_width;                          data.dquant_stride = pEnc->mbParam.mb_width;
768                          memset(data.dquant, 0, data.mb_width*data.mb_height);                          memset(data.dquant, 0, data.mb_width*data.mb_height*sizeof(int));
769                    }
770    
771                    if(pEnc->mbParam.plugin_flags & XVID_REQLAMBDA) {
772                            int block = 0;
773                            emms();
774                            data.lambda = pEnc->temp_lambda;
775                            for(i = 0;i < pEnc->mbParam.mb_height; i++)
776                                    for(j = 0;j < pEnc->mbParam.mb_width; j++)
777                                            for (k = 0; k < 6; k++)
778                                                    data.lambda[block++] = 1.0f;
779                  }                  }
780    
781          } else { /* XVID_PLG_AFTER */          } else { /* XVID_PLG_AFTER */
# Line 763  Line 852 
852          for (i=0; i<(unsigned int)pEnc->num_plugins;i++) {          for (i=0; i<(unsigned int)pEnc->num_plugins;i++) {
853                  emms();                  emms();
854                  if (pEnc->plugins[i].func) {                  if (pEnc->plugins[i].func) {
855                          if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {                          if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, NULL) < 0) {
856                                  continue;                                  continue;
857                          }                          }
858                  }                  }
# Line 792  Line 881 
881                                  frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;                                  frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;
882                          }                          }
883                  }                  }
884    
885                    if (pEnc->mbParam.plugin_flags & XVID_REQLAMBDA) {
886                            for (j = 0; j < pEnc->mbParam.mb_height; j++)
887                                    for (i = 0; i < pEnc->mbParam.mb_width; i++)
888                                            for (k = 0; k < 6; k++) {
889                                                    frame->mbs[j*pEnc->mbParam.mb_width + i].lambda[k] =
890                                                            (int) ((float)(1<<LAMBDA_EXP) * data.lambda[6 * (j * data.mb_width + i) + k]);
891                            }
892                    } else {
893                            for (j = 0; j<pEnc->mbParam.mb_height; j++)
894                                    for (i = 0; i<pEnc->mbParam.mb_width; i++)
895                                            for (k = 0; k < 6; k++) {
896                                                    frame->mbs[j*pEnc->mbParam.mb_width + i].lambda[k] = 1<<LAMBDA_EXP;
897                            }
898                    }
899    
900    
901                  frame->mbs[0].quant = data.quant; /* FRAME will not affect the quant in stats */                  frame->mbs[0].quant = data.quant; /* FRAME will not affect the quant in stats */
902          }          }
903    
# Line 861  Line 967 
967  #endif  #endif
968  }  }
969    
 static int  
 gcd(int a, int b)  
 {  
         int r ;  
   
         if (b > a) {  
                 r = a;  
                 a = b;  
                 b = r;  
         }  
   
         while ((r = a % b)) {  
                 a = b;  
                 b = r;  
         }  
         return b;  
 }  
   
970  static void  static void
971  simplify_par(int *par_width, int *par_height)  simplify_par(int *par_width, int *par_height)
972  {  {
# Line 1004  Line 1092 
1092                          }                          }
1093    
1094                          FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);                          FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);
1095                          call_plugins(pEnc, pEnc->bframes[pEnc->bframenum_head], &pEnc->sOriginal2, XVID_PLG_AFTER, 0, 0, stats);                          call_plugins(pEnc, pEnc->bframes[pEnc->bframenum_head], &pEnc->sOriginal2, XVID_PLG_AFTER, NULL, NULL, stats);
1096                          pEnc->bframenum_head++;                          pEnc->bframenum_head++;
1097    
1098                          goto done;                          goto done;
# Line 1036  Line 1124 
1124    
1125                          /* add the not-coded length to the reference frame size */                          /* add the not-coded length to the reference frame size */
1126                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;
1127                          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);                          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1128    
1129                          /* flush complete: reset counters */                          /* flush complete: reset counters */
1130                          pEnc->flush_bframes = 0;                          pEnc->flush_bframes = 0;
# Line 1064  Line 1152 
1152                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1153    
1154                          if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0) {                          if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0) {
1155                                  call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);                                  call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1156                          }                          }
1157    
1158                          /* if the very last frame is to be b-vop, we must change it to a p-vop */                          /* if the very last frame is to be b-vop, we must change it to a p-vop */
# Line 1093  Line 1181 
1181    
1182    
1183                                  if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail==0) {                                  if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail==0) {
1184                                          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);                                          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1185                                  }else{                                  }else{
1186                                          pEnc->flush_bframes = 1;                                          pEnc->flush_bframes = 1;
1187                                          goto done;                                          goto done;
# Line 1142  Line 1230 
1230          type = frame->type;          type = frame->type;
1231          pEnc->current->quant = frame->quant;          pEnc->current->quant = frame->quant;
1232    
1233          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_BEFORE, &type, &pEnc->current->quant, stats);          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_BEFORE, &type, (int*)&pEnc->current->quant, stats);
1234    
1235          if (type > 0){  /* XVID_TYPE_?VOP */          if (type > 0){  /* XVID_TYPE_?VOP */
1236                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */
# Line 1217  Line 1305 
1305          if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0)          if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0)
1306          {          {
1307                  if (pEnc->current->stamp > 0) {                  if (pEnc->current->stamp > 0) {
1308                          call_plugins(pEnc, pEnc->reference, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);                          call_plugins(pEnc, pEnc->reference, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1309                  }                  }
1310                  else                  else
1311                          stats->type = XVID_TYPE_NOTHING;                          stats->type = XVID_TYPE_NOTHING;
# Line 1245  Line 1333 
1333                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1334    
1335                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1336                          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, "CLOSED GOP BVOP->PVOP");
1337                  }                  }
1338    
1339                  /* convert B-VOP quant to P-VOP */                  /* convert B-VOP quant to P-VOP */
# Line 1306  Line 1394 
1394    
1395                  /* prevent vol/vop misuse */                  /* prevent vol/vop misuse */
1396    
                 if (!(pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))  
                         pEnc->current->vop_flags &= ~XVID_VOP_REDUCED;  
   
1397                  if (!(pEnc->current->vol_flags & XVID_VOL_INTERLACING))                  if (!(pEnc->current->vol_flags & XVID_VOL_INTERLACING))
1398                          pEnc->current->vop_flags &= ~(XVID_VOP_TOPFIELDFIRST|XVID_VOP_ALTERNATESCAN);                          pEnc->current->vop_flags &= ~(XVID_VOP_TOPFIELDFIRST|XVID_VOP_ALTERNATESCAN);
1399    
# Line 1343  Line 1428 
1428    
1429                  if ( FrameCodeP(pEnc, &bs) == 0 ) {                  if ( FrameCodeP(pEnc, &bs) == 0 ) {
1430                          /* N-VOP, we mustn't code b-frames yet */                          /* N-VOP, we mustn't code b-frames yet */
1431                          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);                          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) ||
1432                                     pEnc->mbParam.max_bframes == 0)
1433                                    call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1434                          goto done;                          goto done;
1435                  }                  }
1436          }          }
# Line 1364  Line 1451 
1451    
1452          /* packed or no-bframes or no-bframes-queued: output stats */          /* packed or no-bframes or no-bframes-queued: output stats */
1453          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) || pEnc->mbParam.max_bframes == 0 ) {          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) || pEnc->mbParam.max_bframes == 0 ) {
1454                  call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);                  call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1455          }          }
1456    
1457          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 1436  Line 1523 
1523    
1524          uint16_t x, y;          uint16_t x, y;
1525    
         if ((pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))  
         {  
                 mb_width = (pEnc->mbParam.width + 31) / 32;  
                 mb_height = (pEnc->mbParam.height + 31) / 32;  
   
                 /* 16x16->8x8 downsample requires 1 additional edge pixel*/  
                 /* XXX: setedges is overkill */  
                 start_timer();  
                 image_setedges(&pEnc->current->image,  
                         pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,  
                         pEnc->mbParam.width, pEnc->mbParam.height, 0);  
                 stop_edges_timer();  
         }  
   
1526          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1527          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1528          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
# Line 1467  Line 1540 
1540          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1, pEnc->current->mbs[0].quant);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1, pEnc->current->mbs[0].quant);
1541    
1542          pEnc->current->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1543            pEnc->current->sStat.iMVBits = 0;
1544          pEnc->current->sStat.kblks = mb_width * mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1545          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1546    
# Line 1485  Line 1559 
1559                          stop_prediction_timer();                          stop_prediction_timer();
1560    
1561                          start_timer();                          start_timer();
                         if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)  
                         {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */  
                                 qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */  
                                 qcoeff[5*64+0]=0;  
                         }  
1562                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1563                          stop_coding_timer();                          stop_coding_timer();
1564                  }                  }
1565    
         if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))  
         {  
                 image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,  
                         pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,  
                         16, 0);  
         }  
1566          emms();          emms();
1567    
1568          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */
# Line 1515  Line 1578 
1578          return 1;                                       /* intra */          return 1;                                       /* intra */
1579  }  }
1580    
1581    static __inline void
1582    updateFcode(Statistics * sStat, Encoder * pEnc)
1583    {
1584            float fSigma;
1585            int iSearchRange;
1586    
1587  #define INTRA_THRESHOLD 0.5          if (sStat->iMvCount == 0)
1588  #define BFRAME_SKIP_THRESHHOLD 30                  sStat->iMvCount = 1;
1589    
1590            fSigma = (float) sqrt((float) sStat->iMvSum / sStat->iMvCount);
1591    
1592            iSearchRange = 16 << pEnc->mbParam.m_fcode;
1593    
1594            if ((3.0 * fSigma > iSearchRange) && (pEnc->mbParam.m_fcode <= 5) )
1595                    pEnc->mbParam.m_fcode++;
1596    
1597            else if ((5.0 * fSigma < iSearchRange)
1598                               && (4.0 * pEnc->fMvPrevSigma < iSearchRange)
1599                               && (pEnc->mbParam.m_fcode >= 2) )
1600                    pEnc->mbParam.m_fcode--;
1601    
1602            pEnc->fMvPrevSigma = fSigma;
1603    }
1604    
1605    #define BFRAME_SKIP_THRESHHOLD 30
1606    
1607  /* FrameCodeP also handles S(GMC)-VOPs */  /* FrameCodeP also handles S(GMC)-VOPs */
1608  static int  static int
1609  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
1610                     Bitstream * bs)                     Bitstream * bs)
1611  {  {
         float fSigma;  
1612          int bits = BitstreamPos(bs);          int bits = BitstreamPos(bs);
1613    
1614          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1615          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1616    
1617          int x, y, k;          int x, y, k;
         int iSearchRange;  
         int skip_possible;  
1618          FRAMEINFO *const current = pEnc->current;          FRAMEINFO *const current = pEnc->current;
1619          FRAMEINFO *const reference = pEnc->reference;          FRAMEINFO *const reference = pEnc->reference;
1620          MBParam * const pParam = &pEnc->mbParam;          MBParam * const pParam = &pEnc->mbParam;
# Line 1541  Line 1622 
1622          int mb_height = pParam->mb_height;          int mb_height = pParam->mb_height;
1623          int coded = 1;          int coded = 1;
1624    
   
         /* IMAGE *pCurrent = &current->image; */  
1625          IMAGE *pRef = &reference->image;          IMAGE *pRef = &reference->image;
1626    
         if ((current->vop_flags & XVID_VOP_REDUCED))  
         {  
                 mb_width = (pParam->width + 31) / 32;  
                 mb_height = (pParam->height + 31) / 32;  
         }  
   
   
1627          if (!reference->is_edged) {          if (!reference->is_edged) {
1628                  start_timer();                  start_timer();
1629                  image_setedges(pRef, pParam->edged_width, pParam->edged_height,                  image_setedges(pRef, pParam->edged_width, pParam->edged_height,
# Line 1567  Line 1639 
1639          if ((current->vop_flags & XVID_VOP_HALFPEL)) {          if ((current->vop_flags & XVID_VOP_HALFPEL)) {
1640                  if (reference->is_interpolated != current->rounding_type) {                  if (reference->is_interpolated != current->rounding_type) {
1641                          start_timer();                          start_timer();
1642                          image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                          image_interpolate(pRef->y, pEnc->vInterH.y, pEnc->vInterV.y,
1643                                                            &pEnc->vInterHV, pParam->edged_width,                                                            pEnc->vInterHV.y, pParam->edged_width,
1644                                                            pParam->edged_height,                                                            pParam->edged_height,
1645                                                            (pParam->vol_flags & XVID_VOL_QUARTERPEL),                                                            (pParam->vol_flags & XVID_VOL_QUARTERPEL),
1646                                                            current->rounding_type);                                                            current->rounding_type);
# Line 1577  Line 1649 
1649                  }                  }
1650          }          }
1651    
1652            current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1653                    current->sStat.kblks = current->sStat.mblks = current->sStat.ublks =
1654                    current->sStat.iMVBits = 0;
1655    
1656          current->coding_type = P_VOP;          current->coding_type = P_VOP;
1657    
1658          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
# Line 1634  Line 1710 
1710                  }                  }
1711          }          }
1712    
1713    
1714            if (pEnc->num_threads > 0) {
1715                    /* multithreaded motion estimation - dispatch threads */
1716    
1717                    void * status;
1718                    int rows_per_thread = (pParam->mb_height + pEnc->num_threads - 1)/pEnc->num_threads;
1719    
1720                    for (k = 0; k < pEnc->num_threads; k++) {
1721                            memset(pEnc->motionData[k].complete_count_self, 0, rows_per_thread * sizeof(int));
1722                            pEnc->motionData[k].pParam = &pEnc->mbParam;
1723                            pEnc->motionData[k].current = current;
1724                            pEnc->motionData[k].reference = reference;
1725                            pEnc->motionData[k].pRefH = &pEnc->vInterH;
1726                            pEnc->motionData[k].pRefV = &pEnc->vInterV;
1727                            pEnc->motionData[k].pRefHV = &pEnc->vInterHV;
1728                            pEnc->motionData[k].pGMC = &pEnc->vGMC;
1729                            pEnc->motionData[k].y_step = pEnc->num_threads;
1730                            pEnc->motionData[k].start_y = k;
1731                            /* todo: sort out temp space once and for all */
1732                            pEnc->motionData[k].RefQ = pEnc->vInterH.u + 16*k*pParam->edged_width;
1733                    }
1734    
1735                    for (k = 1; k < pEnc->num_threads; k++) {
1736                            pthread_create(&pEnc->motionData[k].handle, NULL,
1737                                    (void*)MotionEstimateSMP, (void*)&pEnc->motionData[k]);
1738                    }
1739    
1740                    MotionEstimateSMP(&pEnc->motionData[0]);
1741    
1742                    for (k = 1; k < pEnc->num_threads; k++) {
1743                            pthread_join(pEnc->motionData[k].handle, &status);
1744                    }
1745    
1746                    current->fcode = 0;
1747                    for (k = 0; k < pEnc->num_threads; k++) {
1748                            current->sStat.iMvSum += pEnc->motionData[k].mvSum;
1749                            current->sStat.iMvCount += pEnc->motionData[k].mvCount;
1750                            if (pEnc->motionData[k].minfcode > current->fcode)
1751                                    current->fcode = pEnc->motionData[k].minfcode;
1752                    }
1753    
1754            } else {
1755                    /* regular ME */
1756    
1757          MotionEstimation(&pEnc->mbParam, current, reference,          MotionEstimation(&pEnc->mbParam, current, reference,
1758                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1759                                           &pEnc->vGMC, 256*4096);                                           &pEnc->vGMC, 256*4096);
1760            }
1761    
1762          stop_motion_timer();          stop_motion_timer();
1763    
# Line 1645  Line 1765 
1765    
1766          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1, current->mbs[0].quant);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1, current->mbs[0].quant);
1767    
         current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =  
                 current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;  
   
   
1768          for (y = 0; y < mb_height; y++) {          for (y = 0; y < mb_height; y++) {
1769                  for (x = 0; x < mb_width; x++) {                  for (x = 0; x < mb_width; x++) {
1770                          MACROBLOCK *pMB =                          MACROBLOCK *pMB = &current->mbs[x + y * pParam->mb_width];
1771                                  &current->mbs[x + y * pParam->mb_width];                          int skip_possible;
   
                         int bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);  
1772    
1773                          if (bIntra) {                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
1774                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1775                                  MBTransQuantIntra(&pEnc->mbParam, current, pMB, x, y,                                  MBTransQuantIntra(&pEnc->mbParam, current, pMB, x, y,
1776                                                                    dct_codes, qcoeff);                                                                    dct_codes, qcoeff);
# Line 1667  Line 1781 
1781    
1782                                  current->sStat.kblks++;                                  current->sStat.kblks++;
1783    
                                 if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)  
                                 {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */  
                                         qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */  
                                         qcoeff[5*64+0]=0;  
                                 }  
1784                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);
1785                                  stop_coding_timer();                                  stop_coding_timer();
1786                                  continue;                                  continue;
# Line 1686  Line 1795 
1795                                                                   pParam->height,                                                                   pParam->height,
1796                                                                   pParam->edged_width,                                                                   pParam->edged_width,
1797                                                                   (current->vol_flags & XVID_VOL_QUARTERPEL),                                                                   (current->vol_flags & XVID_VOL_QUARTERPEL),
                                                                  (current->vop_flags & XVID_VOP_REDUCED),  
1798                                                                   current->rounding_type);                                                                   current->rounding_type);
1799    
1800                          stop_comp_timer();                          stop_comp_timer();
1801    
1802                          pMB->field_pred = 0;                          pMB->field_pred = 0;
1803    
1804                          if (pMB->mode != MODE_NOT_CODED)                          if (pMB->cbp != 0) {
1805                          {       pMB->cbp =                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, current, pMB, x, y,
                                         MBTransQuantInter(&pEnc->mbParam, current, pMB, x, y,  
1806                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
1807                          }                          }
1808    
# Line 1715  Line 1822 
1822    
1823                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1824    
1825                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER);
                                                         (pMB->dquant == 0);  
1826    
1827                          if (current->coding_type == S_VOP)                          if (current->coding_type == S_VOP)
1828                                  skip_possible &= (pMB->mcsel == 1);                                  skip_possible &= (pMB->mcsel == 1);
1829                          else if (current->coding_type == P_VOP) {                          else { /* PVOP */
1830                                  if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))                                  const VECTOR * const mv = (pParam->vol_flags & XVID_VOL_QUARTERPEL) ?
1831                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );                                                                                  pMB->qmvs : pMB->mvs;
1832                                  else                                  skip_possible &= ((mv->x|mv->y) == 0);
                                         skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );  
1833                          }                          }
1834    
1835                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
   
1836  /* 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 */
   
                                 if (current->coding_type == P_VOP)      /* special rule for P-VOP's SKIP */  
                                 {  
1837                                          int bSkip = 1;                                          int bSkip = 1;
1838    
1839                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)                                  if (current->coding_type == P_VOP) {    /* special rule for P-VOP's SKIP */
1840                                          {  
1841                                            for (k = pEnc->bframenum_head; k < pEnc->bframenum_tail; k++) {
1842                                                  int iSAD;                                                  int iSAD;
1843                                                  iSAD = sad16(reference->image.y + 16*y*pParam->edged_width + 16*x,                                                  iSAD = sad16(reference->image.y + 16*y*pParam->edged_width + 16*x,
1844                                                                          pEnc->bframes[k]->image.y + 16*y*pParam->edged_width + 16*x,                                                                          pEnc->bframes[k]->image.y + 16*y*pParam->edged_width + 16*x,
1845                                                                  pParam->edged_width,BFRAME_SKIP_THRESHHOLD);                                                                                  pParam->edged_width, BFRAME_SKIP_THRESHHOLD * pMB->quant);
1846                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)                                                  if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant) {
1847                                                  {       bSkip = 0;                                                          bSkip = 0; /* could not SKIP */
1848                                                          break;                                                          if (pParam->vol_flags & XVID_VOL_QUARTERPEL) {
                                                 }  
                                         }  
   
                                         if (!bSkip) {   /* no SKIP, but trivial block */  
                                                 if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {  
1849                                                          VECTOR predMV = get_qpmv2(current->mbs, pParam->mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_qpmv2(current->mbs, pParam->mb_width, 0, x, y, 0);
1850                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1851                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1852                                                  }                                                          } else {
                                                 else {  
1853                                                          VECTOR predMV = get_pmv2(current->mbs, pParam->mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_pmv2(current->mbs, pParam->mb_width, 0, x, y, 0);
1854                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1855                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
1856                                                  }                                                  }
1857                                                  pMB->mode = MODE_INTER;                                                  pMB->mode = MODE_INTER;
1858                                                  pMB->cbp = 0;                                                  pMB->cbp = 0;
1859                                                  MBCoding(current, pMB, qcoeff, bs, &current->sStat);                                                          break;
1860                                                  stop_coding_timer();                                                  }
   
                                                 continue;       /* next MB */  
1861                                          }                                          }
1862                                  }                                  }
                                 /* do SKIP */  
1863    
1864                                    if (bSkip) {
1865                                            /* do SKIP */
1866                                  pMB->mode = MODE_NOT_CODED;                                  pMB->mode = MODE_NOT_CODED;
1867                                  MBSkip(bs);                                  MBSkip(bs);
1868                                  stop_coding_timer();                                  stop_coding_timer();
1869                                  continue;       /* next MB */                                  continue;       /* next MB */
1870                          }                          }
                         /* ordinary case: normal coded INTER/INTER4V block */  
   
                         if ((current->vop_flags & XVID_VOP_GREYSCALE))  
                         {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */  
                                 qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */  
                                 qcoeff[5*64+0]=0;  
                         }  
   
                         if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {  
                                 VECTOR predMV = get_qpmv2(current->mbs, pParam->mb_width, 0, x, y, 0);  
                                 pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  
                                 pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;  
                                 DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);  
                         } else {  
                                 VECTOR predMV = get_pmv2(current->mbs, pParam->mb_width, 0, x, y, 0);  
                                 pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;  
                                 pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;  
                                 DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);  
                         }  
   
   
                         if (pMB->mode == MODE_INTER4V)  
                         {       int k;  
                                 for (k=1;k<4;k++)  
                                 {  
                                         if((pParam->vol_flags & XVID_VOL_QUARTERPEL)) {  
                                                 VECTOR predMV = get_qpmv2(current->mbs, pParam->mb_width, 0, x, y, k);  
                                                 pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;  
                                                 pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;  
                                 DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);  
                                         } else {  
                                                 VECTOR predMV = get_pmv2(current->mbs, pParam->mb_width, 0, x, y, k);  
                                                 pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;  
                                                 pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;  
                                 DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);  
                                         }  
   
                                 }  
1871                          }                          }
1872    
1873                            /* ordinary case: normal coded INTER/INTER4V block */
1874                          MBCoding(current, pMB, qcoeff, bs, &pEnc->current->sStat);                          MBCoding(current, pMB, qcoeff, bs, &pEnc->current->sStat);
1875                          stop_coding_timer();                          stop_coding_timer();
   
1876                  }                  }
1877          }          }
1878    
         if ((current->vop_flags & XVID_VOP_REDUCED))  
         {  
                 image_deblock_rrv(&current->image, pParam->edged_width,  
                         current->mbs, mb_width, mb_height, pParam->mb_width,  
                         16, 0);  
         }  
   
1879          emms();          emms();
1880            updateFcode(&current->sStat, pEnc);
         if (current->sStat.iMvCount == 0)  
                 current->sStat.iMvCount = 1;  
   
         fSigma = (float) sqrt((float) current->sStat.iMvSum / current->sStat.iMvCount);  
   
         iSearchRange = 1 << (3 + pParam->m_fcode);  
   
         if ((fSigma > iSearchRange / 3)  
                 && (pParam->m_fcode <= (3 +  (pParam->vol_flags & XVID_VOL_QUARTERPEL?1:0)  ))) /* maximum search range 128 */  
         {  
                 pParam->m_fcode++;  
                 iSearchRange *= 2;  
         } else if ((fSigma < iSearchRange / 6)  
                            && (pEnc->fMvPrevSigma >= 0)  
                            && (pEnc->fMvPrevSigma < iSearchRange / 6)  
                            && (pParam->m_fcode >= (2 + (pParam->vol_flags & XVID_VOL_QUARTERPEL?1:0) )))        /* minimum search range 16 */  
         {  
                 pParam->m_fcode--;  
                 iSearchRange /= 2;  
         }  
   
         pEnc->fMvPrevSigma = fSigma;  
1881    
1882          /* frame drop code */          /* frame drop code */
1883  #if 0  #if 0
1884          DPRINTF(XVID_DEBUG_DEBUG, "kmu %i %i %i\n", current->sStat.kblks, current->sStat.mblks, current->sStat.ublks);          DPRINTF(XVID_DEBUG_DEBUG, "kmu %i %i %i\n", current->sStat.kblks, current->sStat.mblks, current->sStat.ublks);
1885  #endif  #endif
1886          if (current->sStat.kblks + current->sStat.mblks <=          if (current->sStat.kblks + current->sStat.mblks <=
1887                  (pParam->frame_drop_ratio * mb_width * mb_height) / 100)                  (pParam->frame_drop_ratio * mb_width * mb_height) / 100 &&
1888                    ( (pEnc->bframenum_head >= pEnc->bframenum_tail) || !(pEnc->mbParam.global_flags & XVID_GLOBAL_CLOSED_GOP)) )
1889          {          {
1890                  current->sStat.kblks = current->sStat.mblks = 0;                  current->sStat.kblks = current->sStat.mblks = current->sStat.iTextBits = 0;
1891                  current->sStat.ublks = mb_width * mb_height;                  current->sStat.ublks = mb_width * mb_height;
1892    
1893                  BitstreamReset(bs);                  BitstreamReset(bs);
# Line 1933  Line 1962 
1962                  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); \
1963          }          }
1964    
         /* XXX: pEnc->current->global_flags &= ~XVID_VOP_REDUCED;  reduced resoltion not yet supported */  
   
1965          if (!first){          if (!first){
1966                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
1967          }          }
# Line 1950  Line 1977 
1977    
1978          if (pEnc->reference->is_interpolated != 0) {          if (pEnc->reference->is_interpolated != 0) {
1979                  start_timer();                  start_timer();
1980                  image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                  image_interpolate(f_ref->y, pEnc->f_refh.y, pEnc->f_refv.y, pEnc->f_refhv.y,
1981                                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1982                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1983                  stop_inter_timer();                  stop_inter_timer();
# Line 1967  Line 1994 
1994    
1995          if (pEnc->current->is_interpolated != 0) {          if (pEnc->current->is_interpolated != 0) {
1996                  start_timer();                  start_timer();
1997                  image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(b_ref->y, pEnc->vInterH.y, pEnc->vInterV.y, pEnc->vInterHV.y,
1998                                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1999                                                  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);                                                  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
2000                  stop_inter_timer();                  stop_inter_timer();
# Line 1975  Line 2002 
2002          }          }
2003    
2004          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
2005          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);          call_plugins(pEnc, frame, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
2006    
2007            frame->fcode = frame->bcode = pEnc->current->fcode;
2008    
2009          start_timer();          start_timer();
2010            if (pEnc->num_threads > 0) {
2011                    void * status;
2012                    int k;
2013                    /* multithreaded motion estimation - dispatch threads */
2014                    int rows_per_thread = (pEnc->mbParam.mb_height + pEnc->num_threads - 1)/pEnc->num_threads;
2015    
2016                    for (k = 0; k < pEnc->num_threads; k++) {
2017                            memset(pEnc->motionData[k].complete_count_self, 0, rows_per_thread * sizeof(int));
2018                            pEnc->motionData[k].pParam = &pEnc->mbParam;
2019                            pEnc->motionData[k].current = frame;
2020                            pEnc->motionData[k].reference = pEnc->current;
2021                            pEnc->motionData[k].fRef = f_ref;
2022                            pEnc->motionData[k].fRefH = &pEnc->f_refh;
2023                            pEnc->motionData[k].fRefV = &pEnc->f_refv;
2024                            pEnc->motionData[k].fRefHV = &pEnc->f_refhv;
2025                            pEnc->motionData[k].pRef = b_ref;
2026                            pEnc->motionData[k].pRefH = &pEnc->vInterH;
2027                            pEnc->motionData[k].pRefV = &pEnc->vInterV;
2028                            pEnc->motionData[k].pRefHV = &pEnc->vInterHV;
2029                            pEnc->motionData[k].time_bp = (int32_t)(pEnc->current->stamp - frame->stamp);
2030                            pEnc->motionData[k].time_pp = (int32_t)(pEnc->current->stamp - pEnc->reference->stamp);
2031                            pEnc->motionData[k].y_step = pEnc->num_threads;
2032                            pEnc->motionData[k].start_y = k;
2033                            /* todo: sort out temp space once and for all */
2034                            pEnc->motionData[k].RefQ = pEnc->vInterH.u + 16*k*pEnc->mbParam.edged_width;
2035                    }
2036    
2037                    for (k = 1; k < pEnc->num_threads; k++) {
2038                            pthread_create(&pEnc->motionData[k].handle, NULL,
2039                                    (void*)SMPMotionEstimationBVOP, (void*)&pEnc->motionData[k]);
2040                    }
2041    
2042                    SMPMotionEstimationBVOP(&pEnc->motionData[0]);
2043    
2044                    for (k = 1; k < pEnc->num_threads; k++) {
2045                            pthread_join(pEnc->motionData[k].handle, &status);
2046                    }
2047    
2048                    frame->fcode = frame->bcode = 0;
2049                    for (k = 0; k < pEnc->num_threads; k++) {
2050                            if (pEnc->motionData[k].minfcode > frame->fcode)
2051                                    frame->fcode = pEnc->motionData[k].minfcode;
2052                            if (pEnc->motionData[k].minbcode > frame->bcode)
2053                                    frame->bcode = pEnc->motionData[k].minbcode;
2054                    }
2055            } else {
2056          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
2057                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */
2058                                                   ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),    /* time_pp */                                                   ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),    /* time_pp */
# Line 1985  Line 2060 
2060                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
2061                                                   pEnc->current, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
2062                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
2063            }
2064          stop_motion_timer();          stop_motion_timer();
2065    
2066          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
2067          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1, frame->quant);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1, frame->quant);
2068    
2069          frame->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
2070            frame->sStat.iMVBits = 0;
2071          frame->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
2072          frame->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
2073          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
# Line 2005  Line 2082 
2082                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
2083                                  if (pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {                                  if (pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
2084                                          MBMotionCompensation(mb, x, y, f_ref, NULL, f_ref, NULL, NULL, &frame->image,                                          MBMotionCompensation(mb, x, y, f_ref, NULL, f_ref, NULL, NULL, &frame->image,
2085                                                                                          NULL, 0, 0, pEnc->mbParam.edged_width, 0, 0, 0);                                                                                          NULL, 0, 0, pEnc->mbParam.edged_width, 0, 0);
2086                                  }                                  }
   
2087                                  continue;                                  continue;
2088                          }                          }
2089    
2090                          if (mb->mode != MODE_DIRECT_NONE_MV || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {                          mb->quant = frame->quant;
2091    
2092                            if (mb->cbp != 0 || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
2093                                    /* we have to motion-compensate, transfer etc,
2094                                            because there might be blocks to code */
2095    
2096                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
2097                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
2098                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
2099                                                                           &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->vInterV, &pEnc->vInterHV,
2100                                                                           dct_codes);                                                                           dct_codes);
2101    
                                 if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;  
                                 mb->quant = frame->quant;  
   
                                 if (mb->mode != MODE_DIRECT_NONE_MV)  
2102                                          mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);                                          mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);
   
                                 if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)  
                                         && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {  
                                         mb->mode = MODE_DIRECT_NONE_MV; /* skipped */  
                                 }  
2103                          }                          }
2104    
2105                          /* keep only bits 5-2 -- Chroma blocks will just be skipped by the                          if (mb->mode == MODE_DIRECT_NO4V)
2106                           * coding function for BFrames, that's why we don't zero teh DC                                  mb->mode = MODE_DIRECT;
2107                           * coeffs */  
2108                          if ((frame->vop_flags & XVID_VOP_GREYSCALE))                          if (mb->mode == MODE_DIRECT && (mb->cbp | mb->pmvs[3].x | mb->pmvs[3].y) == 0)
2109                                    mb->mode = MODE_DIRECT_NONE_MV; /* skipped */
2110                            else
2111                                    if (frame->vop_flags & XVID_VOP_GREYSCALE)
2112                                            /* keep only bits 5-2 -- Chroma blocks will just be skipped by MBCodingBVOP */
2113                                  mb->cbp &= 0x3C;                                  mb->cbp &= 0x3C;
2114    
2115                          start_timer();                          start_timer();
# Line 2042  Line 2118 
2118                          stop_coding_timer();                          stop_coding_timer();
2119                  }                  }
2120          }          }
   
2121          emms();          emms();
2122    
         /* TODO: dynamic fcode/bcode ??? */  
   
2123          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */
2124          frame->length = (BitstreamPos(bs) - bits) / 8;          frame->length = (BitstreamPos(bs) - bits) / 8;
2125    

Legend:
Removed from v.1403  
changed lines
  Added in v.1766

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