Ignore:
Timestamp:
26 Nov 2012, 22:32:00 (12 years ago)
Author:
tech
Message:

Changed macro switch names to match conventions.

Location:
branches/HTM-5.0-Qualcomm/source/App/TAppEncoder
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncCfg.cpp

    r194 r195  
    329329  /* Camera Paremetes */
    330330  ("CameraParameterFile,cpf", m_pchCameraParameterFile,    (Char *) 0, "Camera Parameter File Name")
    331 #if MVHEVC
     331#if QC_MVHEVC_B0046
    332332  ("BaseViewCameraNumbers" ,  m_aiVId,     std::vector<Int>(1, MAX_VIEW_NUM), "Numbers of base views")
    333333#endif
     
    789789}
    790790#else
    791 #if !MVHEVC
     791#if !QC_MVHEVC_B0046
    792792  m_cCameraData     .init     ( (UInt)m_iNumberOfViews,
    793793    m_uiInputBitDepth,
     
    806806  // check validity of input parameters
    807807  xCheckParameter();
    808 #if !MVHEVC
     808#if !QC_MVHEVC_B0046
    809809  m_cCameraData.check( false, true );
    810810#endif
  • branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncCfg.h

    r194 r195  
    109109  std::vector<Double>  m_adQP;                                ///< QP value of key-picture (floating point) [0] video, [1] depth
    110110  std::vector<Int>     m_aiQP;                                ///< QP value of key-picture (integer) [0] video, [1] depth
    111 #if MVHEVC
     111#if QC_MVHEVC_B0046
    112112  std::vector<Int>     m_aiVId;                                ///< view id
    113113#endif
     
    288288  Char*     m_pchCameraParameterFile;                         ///< camera parameter file
    289289  Char*     m_pchBaseViewCameraNumbers;
    290 #if !MVHEVC
     290#if !QC_MVHEVC_B0046
    291291  TAppComCamPara m_cCameraData;
    292292#endif
  • branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncTop.cpp

    r194 r195  
    6767Void TAppEncTop::xInitLibCfg()
    6868{
    69 #if VIDYO_VPS_INTEGRATION|MVHEVC
    70 #if !MVHEVC
     69#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
     70#if !QC_MVHEVC_B0046
    7171  UInt layerId = 0;
    7272#endif
    7373  // TODO: fix the assumption here that the temporal structures are all equal across all layers???
    7474  m_cVPS.setMaxTLayers( m_maxTempLayer[0] );
    75 #if MVHEVC
     75#if QC_MVHEVC_B0046
    7676  m_cVPS.setMaxLayers( m_iNumberOfViews );
    7777#else
     
    107107    m_acTEncTopList[iViewIdx]->setViewId                       ( iViewIdx );
    108108    m_acTEncTopList[iViewIdx]->setIsDepth                      ( false );
    109 #if MVHEVC
     109#if QC_MVHEVC_B0046
    110110    m_acTEncTopList[iViewIdx]->setLayerId                      ( iViewIdx );
    111111    m_cVPS.setViewId                                           ( m_aiVId[ iViewIdx ], iViewIdx );
     
    417417      m_acTEncDepthTopList[iViewIdx]->setViewId                       ( iViewIdx );
    418418      m_acTEncDepthTopList[iViewIdx]->setIsDepth                      ( true );
    419 #if MVHEVC
     419#if QC_MVHEVC_B0046
    420420      m_acTEncDepthTopList[iViewIdx]->setLayerId                      ( iViewIdx );
    421421#else
     
    836836  {
    837837    m_acTEncTopList[iViewIdx]->init( this );
    838 #if MVHEVC
     838#if QC_MVHEVC_B0046
    839839  //set setNumDirectRefLayer
    840840  Int iNumDirectRef = m_acTEncTopList[iViewIdx]->getSPS()->getNumberOfUsableInterViewRefs();
     
    887887  TComPicYuv*       pcPicYuvOrg = new TComPicYuv;
    888888  TComPicYuv*       pcDepthPicYuvOrg = new TComPicYuv;
    889 #if !MVHEVC
     889#if !QC_MVHEVC_B0046
    890890  TComPicYuv*       pcPdmDepthOrg    = new TComPicYuv;
    891891#endif
     
    990990    {
    991991      Int  iNumEncoded = 0;
    992 #if !MVHEVC
     992#if !QC_MVHEVC_B0046
    993993      UInt iNextPoc = m_acTEncTopList[0] -> getFrameId( gopId );
    994994      if ( iNextPoc < m_iFrameToBeEncoded )
     
    10521052  pcDepthPicYuvOrg = NULL;
    10531053
    1054 #if !MVHEVC
    1055 #if BUG_FIX_HTM
     1054#if !QC_MVHEVC_B0046
     1055#if FIX_DEL_NULLPTR
    10561056  if ( pcPdmDepthOrg != NULL && m_uiMultiviewMvRegMode )
    10571057#else
     
    12671267    case NAL_UNIT_CODED_SLICE:
    12681268#if H0566_TLA
    1269 #if !QC_REM_IDV
     1269#if !QC_REM_IDV_B0046
    12701270    case NAL_UNIT_CODED_SLICE_IDV:
    12711271#endif
  • branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncTop.h

    r194 r195  
    8787#endif
    8888
    89 #if VIDYO_VPS_INTEGRATION|MVHEVC
     89#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
    9090  TComVPS                     m_cVPS;
    9191#endif
     
    139139#endif
    140140 
    141 #if MVHEVC
     141#if QC_MVHEVC_B0046
    142142  TComVPS*          getVPS()  { return &m_cVPS; }
    143143#endif
Note: See TracChangeset for help on using the changeset viewer.