Changeset 1367 in 3DVCSoftware


Ignore:
Timestamp:
28 Oct 2015, 20:05:17 (8 years ago)
Author:
tech
Message:

Align macros

Location:
branches/HTM-15.2-dev/source/Lib/TLibEncoder
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.2-dev/source/Lib/TLibEncoder/SEIwrite.cpp

    r1360 r1367  
    902902}
    903903
    904 
     904#if NH_MV
    905905#if NH_MV_LAYERS_NOT_PRESENT_SEI
    906906Void SEIWriter::xWriteSEILayersNotPresent(const SEILayersNotPresent& sei)
     
    14571457};
    14581458#endif
    1459 
     1459#endif
    14601460
    14611461//! \}
  • branches/HTM-15.2-dev/source/Lib/TLibEncoder/SEIwrite.h

    r1360 r1367  
    8181  Void xWriteSEIMasteringDisplayColourVolume( const SEIMasteringDisplayColourVolume& sei);
    8282
     83#if NH_MV
    8384#if NH_MV_SEI
    8485#if NH_MV_LAYERS_NOT_PRESENT_SEI
     
    108109  Void xWriteSEIAlternativeDepthInfo          ( const SEIAlternativeDepthInfo& sei);
    109110#endif
     111#endif
     112#endif
     113
    110114  Void xWriteSEIpayloadData(TComBitIf& bs, const SEI& sei, const TComSPS *sps);
    111115  Void xWriteByteAlign();
    112116};
    113 #endif
    114117
    115118//! \}
  • branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncEntropy.h

    r1321 r1367  
    139139  Void    setBitstream              ( TComBitIf* p )          { m_pcEntropyCoderIf->setBitstream(p);  }
    140140  Void    resetBits                 ()                        { m_pcEntropyCoderIf->resetBits();      }
     141#if NH_MV
    141142  UInt    getNumberOfWrittenBits    ()                        {
    142 #if NH_MV
    143143      D_PRINT_INDENT(g_encNumberOfWrittenBits,  "NumBits: " +  n2s( m_pcEntropyCoderIf->getNumberOfWrittenBits() ))
    144 #endif
    145144 return m_pcEntropyCoderIf->getNumberOfWrittenBits(); }
     145#else
     146  UInt    getNumberOfWrittenBits    ()                        { return m_pcEntropyCoderIf->getNumberOfWrittenBits(); }
     147#endif
    146148  Void    resetEntropy              (const TComSlice *pSlice) { m_pcEntropyCoderIf->resetEntropy(pSlice);  }
    147149  SliceType determineCabacInitIdx   (const TComSlice *pSlice) { return m_pcEntropyCoderIf->determineCabacInitIdx(pSlice); }
  • branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r1360 r1367  
    605605Void TEncGOP::xCreatePictureTimingSEI  (Int IRAPGOPid, SEIMessages& seiMessages, SEIMessages& nestedSeiMessages, SEIMessages& duInfoSeiMessages, TComSlice *slice, Bool isField, std::deque<DUData> &duData)
    606606{
    607 #if !NH_MV
    608   SEIPictureTiming *pictureTimingSEI = new SEIPictureTiming();
    609 #endif
    610607
    611608  const TComVUI *vui = slice->getSPS()->getVuiParameters();
  • branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncSearch.cpp

    r1360 r1367  
    113113, m_iSearchRange (0)
    114114, m_bipredSearchRange (0)
     115, m_motionEstimationSearchMethod (MESEARCH_FULL)
    115116, m_pppcRDSbacCoder (NULL)
    116117, m_pcRDGoOnSbacCoder (NULL)
     
    67086709              }
    67096710
    6710 
    67116711              DEBUG_STRING_NEW(sSingleStringTest)
    67126712#if NH_MV
     
    67186718                D_PRINT_INC_INDENT(g_traceModeCheck, "NonZero");
    67196719#endif
    6720 
    67216720                if (isFirstMode)
    67226721                {
  • branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncSlice.cpp

    r1360 r1367  
    318318  else
    319319  {
     320#if NH_MV
    320321#if 0 // Check this! NH_MV
    321322    rpcSlice->setTemporalLayerNonReferenceFlag(!m_pcCfg->getGOPEntry( (eSliceTypeBaseView == I_SLICE) ? MAX_GOP : iGOPid ).m_refPic);
     323#else
     324    rpcSlice->setTemporalLayerNonReferenceFlag(!m_pcCfg->getGOPEntry(iGOPid).m_refPic);
     325#endif
    322326#else
    323327    rpcSlice->setTemporalLayerNonReferenceFlag(!m_pcCfg->getGOPEntry(iGOPid).m_refPic);
Note: See TracChangeset for help on using the changeset viewer.