Ignore:
Timestamp:
28 Oct 2015, 19:15:08 (9 years ago)
Author:
tech
Message:

Align macros

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.2-dev/source/Lib/TLibCommon/TComPrediction.cpp

    r1360 r1362  
    18271827
    18281828
     1829#if NH_3D
    18291830Void TComPrediction::xPredInterBlk(const ComponentID compID, TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *dstPic, Bool bi, const Int bitDepth
    18301831#if NH_3D_ARP
     
    18351836#endif
    18361837)
     1838#else
     1839Void TComPrediction::xPredInterBlk(const ComponentID compID, TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *dstPic, Bool bi, const Int bitDepth )
     1840#endif
    18371841{
    18381842#if NH_MV
     
    18701874  if ( yFrac == 0 )
    18711875  {
     1876#if NH_3D
     1877    m_if.filterHor(compID, ref, refStride, dst,  dstStride, cxWidth, cxHeight, xFrac, !bi
    18721878#if NH_3D_IC
    1873     m_if.filterHor(compID, ref, refStride, dst,  dstStride, cxWidth, cxHeight, xFrac, !bi || bICFlag, chFmt, bitDepth
    1874 #else
    1875     m_if.filterHor(compID, ref, refStride, dst,  dstStride, cxWidth, cxHeight, xFrac, !bi, chFmt, bitDepth
    1876 #endif
     1879     || bICFlag
     1880#endif
     1881    , chFmt, bitDepth
    18771882#if NH_3D_ARP
    18781883    , filterType
    18791884#endif
    18801885);
     1886#else
     1887    m_if.filterHor(compID, ref, refStride, dst,  dstStride, cxWidth, cxHeight, xFrac, !bi, chFmt, bitDepth );
     1888#endif
    18811889  }
    18821890  else if ( xFrac == 0 )
    18831891  {
     1892#if NH_3D
     1893  m_if.filterVer(compID, ref, refStride, dst, dstStride, cxWidth, cxHeight, yFrac, true, !bi
    18841894#if NH_3D_IC
    1885     m_if.filterVer(compID, ref, refStride, dst, dstStride, cxWidth, cxHeight, yFrac, true, !bi || bICFlag, chFmt, bitDepth
    1886 #else
    1887     m_if.filterVer(compID, ref, refStride, dst, dstStride, cxWidth, cxHeight, yFrac, true, !bi, chFmt, bitDepth
    1888 #endif
     1895    || bICFlag
     1896#endif
     1897    , chFmt, bitDepth
    18891898#if NH_3D_ARP
    18901899    , filterType
    18911900#endif
    18921901);
     1902#else
     1903    m_if.filterVer(compID, ref, refStride, dst, dstStride, cxWidth, cxHeight, yFrac, true, !bi, chFmt, bitDepth );
     1904
     1905#endif
    18931906  }
    18941907  else
Note: See TracChangeset for help on using the changeset viewer.