Ignore:
Timestamp:
21 Oct 2014, 20:39:50 (10 years ago)
Author:
tech
Message:

Removed 3D-HEVC related macros.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComSlice.cpp

    r1066 r1074  
    142142, m_depthToDisparityF             ( NULL )
    143143#endif
    144 #if MTK_SINGLE_DEPTH_MODE_I0095
     144#if H_3D_SINGLE_DEPTH
    145145, m_bApplySingleDepthMode         (false)
    146146#endif
     
    650650 
    651651  TComPic**             refPicSetStCurr    [2] = { RefPicSetStCurr0, RefPicSetStCurr1 };
    652 #if FIX_WARNING
    653652  Int numPocStCurr[2] = { (Int)NumPocStCurr0, (Int)NumPocStCurr1 };
    654 #else
    655   Int numPocStCurr[2] = { NumPocStCurr0, NumPocStCurr1 };
    656 #endif
    657653
    658654  for (Int li = 0; li < ((m_eSliceType==B_SLICE) ? 2 : 1); li++)
     
    11051101  }
    11061102#endif
    1107 #if MTK_SINGLE_DEPTH_MODE_I0095
     1103#if H_3D_SINGLE_DEPTH
    11081104  m_bApplySingleDepthMode = pSrc->m_bApplySingleDepthMode;
    11091105#endif
     
    19701966    m_viewIndex         [i] = -1;
    19711967    m_vpsDepthModesFlag [i] = false;
    1972 #if SEC_HLS_CLEANUP_I0100
    19731968    m_ivMvScalingFlag[i] = true;
    1974 #else
    1975     m_ivMvScalingFlag = true;
    1976 #endif
    1977 #if SEPARATE_FLAG_I0085
    19781969    m_bIVPFlag [i]      = false;
    1979 #endif
    19801970#endif
    19811971
     
    20162006#endif
    20172007#endif
    2018 #if MTK_I0099_VPS_EX2
     2008#if H_3D_QTLPC
    20192009    m_bLimQtPredFlag       [ i ] = false;
    20202010#endif
     
    20282018    m_bInterSDCFlag        [ i ] = false;
    20292019#endif
    2030 #if SEPARATE_FLAG_I0085
     2020#if H_3D
    20312021    m_bIVPFlag             [ i ] = false;
    20322022#endif
     
    23092299  for ( i = 0; i < iNumViews ; i++ )
    23102300  {
    2311 #if H_3D_FIX_UNINIT
    23122301    m_bCamParPresent[i] = false;
    2313 #endif
    23142302    m_bCamParInSliceHeader[i] = false;
    23152303    m_aaaiCodedScale[i] = new Int*[ 2 ];
     
    29102898, m_pcmLog2MaxSize            (  5)
    29112899, m_uiPCMLog2MinSize          (  7)
    2912 #if !MTK_I0099_VPS_EX2
    2913 #if H_3D_QTLPC
    2914 , m_bUseQTL                   (false)
    2915 , m_bUsePC                    (false)
    2916 #endif
    2917 #endif
    29182900, m_bitDepthY                 (  8)
    29192901, m_bitDepthC                 (  8)
     
    31863168    // allocate some memory and initialize with default mapping
    31873169    m_iNumDepthmapValues[i] = ((1 << m_uiDepthViewBitDepth)-1)+1;
    3188 #if !FIX_TICKET_77
    3189     m_iBitsPerDepthValue[i] = numBitsForValue(m_iNumDepthmapValues[i]);
    3190 #endif
    31913170    m_iDepthValue2Idx[i]    = (Int*) xMalloc(Int, m_iNumDepthmapValues[i]);
    31923171    m_iIdx2DepthValue[i]    = (Int*) xMalloc(Int, m_iNumDepthmapValues[i]);
     
    32773256  // update DLT variables
    32783257  m_iNumDepthmapValues[layerIdInVps] = iNumDepthValues;
    3279 #if !FIX_TICKET_77
    3280   m_iBitsPerDepthValue[layerIdInVps] = numBitsForValue(m_iNumDepthmapValues[layerIdInVps]);
    3281 #endif
    3282 }
    3283 
    3284 #if H_3D_DELTA_DLT
     3258}
     3259
    32853260Void TComDLT::getDeltaDLT( Int layerIdInVps, Int* piDLTInRef, UInt uiDLTInRefNum, Int* piDeltaDLTOut, UInt *puiDeltaDLTOutNum )
    32863261{
     
    33473322  setDepthLUTs(layerIdInVps, aiIdx2DepthValue, uiNumDepthValues);
    33483323}
    3349 #endif
    33503324
    33513325#endif
     
    40654039      m_bApplyIC = true;
    40664040      Int refLayer = curLayer-1;
    4067 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX
     4041
    40684042      Int ICEnableCandidate = getICEnableCandidate(refLayer);
    40694043      Int ICEnableNum = getICEnableNum(refLayer);
     
    40834057      setICEnableCandidate(curLayer, 0);
    40844058      setICEnableNum(curLayer, 0);
    4085 #else
    4086       if( (refLayer>=0) && (g_aICEnableCANDIDATE[refLayer]>0) )
    4087       {   
    4088         Double ratio=Double(g_aICEnableNUM[refLayer])/Double(g_aICEnableCANDIDATE[refLayer]);
    4089 
    4090         if( ratio > IC_LOW_LATENCY_ENCODING_THRESHOLD)
    4091 {
    4092           m_bApplyIC=true;
    4093         }
    4094         else
    4095         {
    4096           m_bApplyIC=false;
    4097         }
    4098       }
    4099       g_aICEnableNUM[curLayer]=0;
    4100       g_aICEnableCANDIDATE[curLayer]=0;
    4101       g_lastlayer=getDepth();
    4102 #endif
    41034059    }
    41044060  }
     
    42104166
    42114167#if H_3D_DDD
    4212 #if LGE_FCO_I0116
     4168#if H_3D_FCO
    42134169  if( getIsDepth() && getViewIndex() > 0 && getVPS()->getMPIFlag(layerIdInVPS))
    42144170#else
Note: See TracChangeset for help on using the changeset viewer.