Changeset 366 in 3DVCSoftware for branches/HTM-DEV-0.1-dev/source
- Timestamp:
- 3 May 2013, 16:53:39 (12 years ago)
- Location:
- branches/HTM-DEV-0.1-dev/source
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.1-dev/source/App/TAppDecoder/TAppDecTop.cpp
r365 r366 54 54 55 55 TAppDecTop::TAppDecTop() 56 57 56 #if !H_MV 58 57 : m_iPOCLastDisplay(-MAX_INT) -
branches/HTM-DEV-0.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r365 r366 1979 1979 printf("Input File : %s\n", m_pchInputFile ); 1980 1980 #endif 1981 1982 1981 printf("Bitstream File : %s\n", m_pchBitstreamFile ); 1983 1984 1982 #if H_MV 1985 1983 for( Int layer = 0; layer < m_numberOfLayers; layer++) … … 1990 1988 printf("Reconstruction File : %s\n", m_pchReconFile ); 1991 1989 #endif 1992 1993 1990 #if H_MV 1994 1991 xPrintParaVector( "ViewId", m_viewId ); 1995 1992 #endif 1996 1997 1993 #if H_3D 1998 1994 xPrintParaVector( "DepthFlag", m_depthFlag ); 1999 1995 #endif 2000 2001 1996 #if H_MV 2002 1997 xPrintParaVector( "QP" , m_fQP ); -
branches/HTM-DEV-0.1-dev/source/App/TAppEncoder/TAppEncTop.cpp
r365 r366 183 183 m_cTEncTop.setQP ( m_iQP ); 184 184 #endif 185 185 186 m_cTEncTop.setPad ( m_aiPad ); 187 186 188 #if H_MV 187 189 m_cTEncTop.setMaxTempLayer ( m_maxTempLayerMvc[layer] ); -
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/TComSlice.cpp
r363 r366 1543 1543 } 1544 1544 #endif 1545 1546 1545 // ------------------------------------------------------------------------------------------------ 1547 1546 // Sequence parameter set (SPS) … … 2143 2142 } 2144 2143 #endif 2145 2146 2144 /** get scaling matrix from RefMatrixID 2147 2145 * \param sizeId size index -
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/TComSlice.h
r364 r366 248 248 ProfileTierLevel* getGeneralPTL() { return &m_generalPTL; } 249 249 ProfileTierLevel* getSubLayerPTL(Int i) { return &m_subLayerPTL[i]; } 250 251 250 #if H_MV 252 251 Void copyLevelFrom( TComPTL* source ); … … 536 535 537 536 #endif 538 539 537 public: 540 538 TComVPS(); … … 596 594 TComPTL* getPTL() { return &m_pcPTL; } 597 595 #endif 598 599 596 #if SIGNAL_BITRATE_PICRATE_IN_VPS 600 597 TComBitRatePicRateInfo *getBitratePicrateInfo() { return &m_bitRatePicRateInfo; } … … 1585 1582 Void setRefPicList ( TComList<TComPic*>& rcListPic ); 1586 1583 #endif 1587 1588 1584 #endif 1589 1585 Void setRefPOCList (); -
branches/HTM-DEV-0.1-dev/source/Lib/TLibDecoder/TDecTop.h
r364 r366 140 140 #endif 141 141 142 143 142 #if H_MV 144 143 TComPic* getPic ( Int poc ); … … 156 155 #endif 157 156 #endif 158 159 157 protected: 160 158 Void xGetNewPicBuffer (TComSlice* pcSlice, TComPic*& rpcPic); -
branches/HTM-DEV-0.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r362 r366 654 654 } 655 655 #endif 656 657 656 #if H_MV 658 657 WRITE_FLAG( 1, "vps_extension_flag" ); -
branches/HTM-DEV-0.1-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r364 r366 358 358 // Public member functions 359 359 // ==================================================================================================================== 360 361 360 #if H_MV 362 361 Void TEncGOP::initGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsInGOP) … … 366 365 } 367 366 #endif 368 369 367 #if H_MV 370 368 Void TEncGOP::compressPicInGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsInGOP, Int iGOPid) … … 1712 1710 pcPic->compressMotion(); 1713 1711 #endif 1714 1715 1712 #if H_MV 1716 1713 m_pocLastCoded = pcPic->getPOC(); 1717 1714 #endif 1718 1719 1715 //-- For time output for each slice 1720 1716 Double dEncTime = (Double)(clock()-iBeforeTime) / CLOCKS_PER_SEC; -
branches/HTM-DEV-0.1-dev/source/Lib/TLibEncoder/TEncTop.cpp
r365 r366 1006 1006 } 1007 1007 #endif 1008 1008 1009 } 1009 1010 … … 1119 1120 } 1120 1121 } 1121 1122 1122 #if H_MV 1123 1123 Void TEncTop::printSummary( Int numAllPicCoded ) … … 1182 1182 } 1183 1183 #endif 1184 1185 1184 //! \}
Note: See TracChangeset for help on using the changeset viewer.