[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 1617, Mon May 23 09:29:43 2005 UTC revision 1770, Thu Feb 8 13:10:24 2007 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.118 2005-05-23 09:29:43 Skal Exp $   * $Id: encoder.c,v 1.130 2007-02-08 13:10:24 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 203  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 220  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 238  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 433  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 519  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 617  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 627  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 635  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 651  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 710  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 787  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 816  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 1010  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 1042  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 1070  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 1099  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 1223  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 if (stats) {
1311                          stats->type = XVID_TYPE_NOTHING;                          stats->type = XVID_TYPE_NOTHING;
1312          }          }
1313            }
1314    
1315          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1316           * closed-gop           * closed-gop
# Line 1346  Line 1429 
1429    
1430                  if ( FrameCodeP(pEnc, &bs) == 0 ) {                  if ( FrameCodeP(pEnc, &bs) == 0 ) {
1431                          /* N-VOP, we mustn't code b-frames yet */                          /* N-VOP, we mustn't code b-frames yet */
1432                          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);                          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) ||
1433                                     pEnc->mbParam.max_bframes == 0)
1434                                    call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1435                          goto done;                          goto done;
1436                  }                  }
1437          }          }
# Line 1367  Line 1452 
1452    
1453          /* packed or no-bframes or no-bframes-queued: output stats */          /* packed or no-bframes or no-bframes-queued: output stats */
1454          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 ) {
1455                  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);
1456          }          }
1457    
1458          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 1456  Line 1541 
1541          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1, pEnc->current->mbs[0].quant);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1, pEnc->current->mbs[0].quant);
1542    
1543          pEnc->current->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1544            pEnc->current->sStat.iMVBits = 0;
1545          pEnc->current->sStat.kblks = mb_width * mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1546          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1547    
# Line 1554  Line 1640 
1640          if ((current->vop_flags & XVID_VOP_HALFPEL)) {          if ((current->vop_flags & XVID_VOP_HALFPEL)) {
1641                  if (reference->is_interpolated != current->rounding_type) {                  if (reference->is_interpolated != current->rounding_type) {
1642                          start_timer();                          start_timer();
1643                          image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                          image_interpolate(pRef->y, pEnc->vInterH.y, pEnc->vInterV.y,
1644                                                            &pEnc->vInterHV, pParam->edged_width,                                                            pEnc->vInterHV.y, pParam->edged_width,
1645                                                            pParam->edged_height,                                                            pParam->edged_height,
1646                                                            (pParam->vol_flags & XVID_VOL_QUARTERPEL),                                                            (pParam->vol_flags & XVID_VOL_QUARTERPEL),
1647                                                            current->rounding_type);                                                            current->rounding_type);
# Line 1565  Line 1651 
1651          }          }
1652    
1653          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1654                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks =
1655                    current->sStat.iMVBits = 0;
1656    
1657          current->coding_type = P_VOP;          current->coding_type = P_VOP;
1658    
# Line 1624  Line 1711 
1711                  }                  }
1712          }          }
1713    
1714    
1715            if (pEnc->num_threads > 0) {
1716                    /* multithreaded motion estimation - dispatch threads */
1717    
1718                    void * status;
1719                    int rows_per_thread = (pParam->mb_height + pEnc->num_threads - 1)/pEnc->num_threads;
1720    
1721                    for (k = 0; k < pEnc->num_threads; k++) {
1722                            memset(pEnc->motionData[k].complete_count_self, 0, rows_per_thread * sizeof(int));
1723                            pEnc->motionData[k].pParam = &pEnc->mbParam;
1724                            pEnc->motionData[k].current = current;
1725                            pEnc->motionData[k].reference = reference;
1726                            pEnc->motionData[k].pRefH = &pEnc->vInterH;
1727                            pEnc->motionData[k].pRefV = &pEnc->vInterV;
1728                            pEnc->motionData[k].pRefHV = &pEnc->vInterHV;
1729                            pEnc->motionData[k].pGMC = &pEnc->vGMC;
1730                            pEnc->motionData[k].y_step = pEnc->num_threads;
1731                            pEnc->motionData[k].start_y = k;
1732                            /* todo: sort out temp space once and for all */
1733                            pEnc->motionData[k].RefQ = pEnc->vInterH.u + 16*k*pParam->edged_width;
1734                    }
1735    
1736                    for (k = 1; k < pEnc->num_threads; k++) {
1737                            pthread_create(&pEnc->motionData[k].handle, NULL,
1738                                    (void*)MotionEstimateSMP, (void*)&pEnc->motionData[k]);
1739                    }
1740    
1741                    MotionEstimateSMP(&pEnc->motionData[0]);
1742    
1743                    for (k = 1; k < pEnc->num_threads; k++) {
1744                            pthread_join(pEnc->motionData[k].handle, &status);
1745                    }
1746    
1747                    current->fcode = 0;
1748                    for (k = 0; k < pEnc->num_threads; k++) {
1749                            current->sStat.iMvSum += pEnc->motionData[k].mvSum;
1750                            current->sStat.iMvCount += pEnc->motionData[k].mvCount;
1751                            if (pEnc->motionData[k].minfcode > current->fcode)
1752                                    current->fcode = pEnc->motionData[k].minfcode;
1753                    }
1754    
1755            } else {
1756                    /* regular ME */
1757    
1758          MotionEstimation(&pEnc->mbParam, current, reference,          MotionEstimation(&pEnc->mbParam, current, reference,
1759                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1760                                           &pEnc->vGMC, 256*4096);                                           &pEnc->vGMC, 256*4096);
1761            }
1762    
1763          stop_motion_timer();          stop_motion_timer();
1764    
# Line 1757  Line 1888 
1888                  (pParam->frame_drop_ratio * mb_width * mb_height) / 100 &&                  (pParam->frame_drop_ratio * mb_width * mb_height) / 100 &&
1889                  ( (pEnc->bframenum_head >= pEnc->bframenum_tail) || !(pEnc->mbParam.global_flags & XVID_GLOBAL_CLOSED_GOP)) )                  ( (pEnc->bframenum_head >= pEnc->bframenum_tail) || !(pEnc->mbParam.global_flags & XVID_GLOBAL_CLOSED_GOP)) )
1890          {          {
1891                  current->sStat.kblks = current->sStat.mblks = 0;                  current->sStat.kblks = current->sStat.mblks = current->sStat.iTextBits = 0;
1892                  current->sStat.ublks = mb_width * mb_height;                  current->sStat.ublks = mb_width * mb_height;
1893    
1894                  BitstreamReset(bs);                  BitstreamReset(bs);
# Line 1847  Line 1978 
1978    
1979          if (pEnc->reference->is_interpolated != 0) {          if (pEnc->reference->is_interpolated != 0) {
1980                  start_timer();                  start_timer();
1981                  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,
1982                                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1983                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1984                  stop_inter_timer();                  stop_inter_timer();
# Line 1864  Line 1995 
1995    
1996          if (pEnc->current->is_interpolated != 0) {          if (pEnc->current->is_interpolated != 0) {
1997                  start_timer();                  start_timer();
1998                  image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(b_ref->y, pEnc->vInterH.y, pEnc->vInterV.y, pEnc->vInterHV.y,
1999                                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
2000                                                  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);                                                  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
2001                  stop_inter_timer();                  stop_inter_timer();
# Line 1872  Line 2003 
2003          }          }
2004    
2005          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
2006          call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);          call_plugins(pEnc, frame, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
2007    
2008            frame->fcode = frame->bcode = pEnc->current->fcode;
2009    
2010          start_timer();          start_timer();
2011            if (pEnc->num_threads > 0) {
2012                    void * status;
2013                    int k;
2014                    /* multithreaded motion estimation - dispatch threads */
2015                    int rows_per_thread = (pEnc->mbParam.mb_height + pEnc->num_threads - 1)/pEnc->num_threads;
2016    
2017                    for (k = 0; k < pEnc->num_threads; k++) {
2018                            memset(pEnc->motionData[k].complete_count_self, 0, rows_per_thread * sizeof(int));
2019                            pEnc->motionData[k].pParam = &pEnc->mbParam;
2020                            pEnc->motionData[k].current = frame;
2021                            pEnc->motionData[k].reference = pEnc->current;
2022                            pEnc->motionData[k].fRef = f_ref;
2023                            pEnc->motionData[k].fRefH = &pEnc->f_refh;
2024                            pEnc->motionData[k].fRefV = &pEnc->f_refv;
2025                            pEnc->motionData[k].fRefHV = &pEnc->f_refhv;
2026                            pEnc->motionData[k].pRef = b_ref;
2027                            pEnc->motionData[k].pRefH = &pEnc->vInterH;
2028                            pEnc->motionData[k].pRefV = &pEnc->vInterV;
2029                            pEnc->motionData[k].pRefHV = &pEnc->vInterHV;
2030                            pEnc->motionData[k].time_bp = (int32_t)(pEnc->current->stamp - frame->stamp);
2031                            pEnc->motionData[k].time_pp = (int32_t)(pEnc->current->stamp - pEnc->reference->stamp);
2032                            pEnc->motionData[k].y_step = pEnc->num_threads;
2033                            pEnc->motionData[k].start_y = k;
2034                            /* todo: sort out temp space once and for all */
2035                            pEnc->motionData[k].RefQ = pEnc->vInterH.u + 16*k*pEnc->mbParam.edged_width;
2036                    }
2037    
2038                    for (k = 1; k < pEnc->num_threads; k++) {
2039                            pthread_create(&pEnc->motionData[k].handle, NULL,
2040                                    (void*)SMPMotionEstimationBVOP, (void*)&pEnc->motionData[k]);
2041                    }
2042    
2043                    SMPMotionEstimationBVOP(&pEnc->motionData[0]);
2044    
2045                    for (k = 1; k < pEnc->num_threads; k++) {
2046                            pthread_join(pEnc->motionData[k].handle, &status);
2047                    }
2048    
2049                    frame->fcode = frame->bcode = 0;
2050                    for (k = 0; k < pEnc->num_threads; k++) {
2051                            if (pEnc->motionData[k].minfcode > frame->fcode)
2052                                    frame->fcode = pEnc->motionData[k].minfcode;
2053                            if (pEnc->motionData[k].minbcode > frame->bcode)
2054                                    frame->bcode = pEnc->motionData[k].minbcode;
2055                    }
2056            } else {
2057          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
2058                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */
2059                                                   ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),    /* time_pp */                                                   ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),    /* time_pp */
# Line 1882  Line 2061 
2061                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                   &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
2062                                                   pEnc->current, b_ref, &pEnc->vInterH,                                                   pEnc->current, b_ref, &pEnc->vInterH,
2063                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
2064            }
2065          stop_motion_timer();          stop_motion_timer();
2066    
2067          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
2068          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1, frame->quant);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1, frame->quant);
2069    
2070          frame->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
2071            frame->sStat.iMVBits = 0;
2072          frame->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
2073          frame->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
2074          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
# Line 1938  Line 2119 
2119                          stop_coding_timer();                          stop_coding_timer();
2120                  }                  }
2121          }          }
   
2122          emms();          emms();
2123    
2124          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */

Legend:
Removed from v.1617  
changed lines
  Added in v.1770

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