[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 1665, Sat Dec 17 12:04:52 2005 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.122 2005-12-17 12:04:52 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 441  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 629  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 647  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 722  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) {                  if(pEnc->mbParam.plugin_flags & XVID_REQLAMBDA) {
772                          int block = 0;                          int block = 0;
773                            emms();
774                          data.lambda = pEnc->temp_lambda;                          data.lambda = pEnc->temp_lambda;
775                          for(i = 0;i < pEnc->mbParam.mb_height; i++)                          for(i = 0;i < pEnc->mbParam.mb_height; i++)
776                                  for(j = 0;j < pEnc->mbParam.mb_width; j++)                                  for(j = 0;j < pEnc->mbParam.mb_width; j++)
# Line 1384  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                            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);                          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, NULL, NULL, stats);
1434                          goto done;                          goto done;
1435                  }                  }
# Line 1494  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 1603  Line 1650 
1650          }          }
1651    
1652          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1653                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;                  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    
# Line 1662  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 1795  Line 1887 
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)) )                  ( (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 1912  Line 2004 
2004          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
2005          call_plugins(pEnc, frame, 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 1920  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 1976  Line 2118 
2118                          stop_coding_timer();                          stop_coding_timer();
2119                  }                  }
2120          }          }
   
2121          emms();          emms();
2122    
2123          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */          BitstreamPadAlways(bs); /* next_start_code() at the end of VideoObjectPlane() */

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

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