Changeset 608 in 3DVCSoftware for trunk/source/Lib/TLibCommon/TComPicSym.h
- Timestamp:
- 1 Sep 2013, 22:47:26 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibCommon/TComPicSym.h
r296 r608 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 2, ITU/ISO/IEC6 * Copyright (c) 2010-2013, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 44 44 #include "TComSlice.h" 45 45 #include "TComDataCU.h" 46 class TComSampleAdaptiveOffset; 46 47 47 48 //! \ingroup TLibCommon … … 106 107 UInt* m_puiTileIdxMap; //the map of the tile index relative to LCU raster scan address 107 108 UInt* m_puiInverseCUOrderMap; 108 UInt m_uiBitsUsedByTileIdx;109 109 110 SAOParam *m_saoParam; 110 111 public: 111 112 Void create ( Int iPicWidth, Int iPicHeight, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth ); 112 113 Void destroy (); 113 114 TComPicSym () { m_uiNumAllocatedSlice = 0; }114 115 TComPicSym (); 115 116 TComSlice* getSlice(UInt i) { return m_apcTComSlice[i]; } 116 117 UInt getFrameWidthInCU() { return m_uiWidthInCU; } … … 118 119 UInt getMinCUWidth() { return m_uiMinCUWidth; } 119 120 UInt getMinCUHeight() { return m_uiMinCUHeight; } 120 #if HHI_INTERVIEW_SKIP121 UInt getMaxCUWidth() { return m_uiMaxCUWidth; }122 UInt getMaxCUHeight() { return m_uiMaxCUHeight; }123 UInt getMaxCUDepth() { return m_uhTotalDepth; }124 #endif125 121 UInt getNumberOfCUsInFrame() { return m_uiNumCUsInFrame; } 126 122 TComDataCU*& getCU( UInt uiCUAddr ) { return m_apcTComDataCU[uiCUAddr]; } … … 149 145 Void xInitTiles(); 150 146 UInt xCalculateNxtCUAddr( UInt uiCurrCUAddr ); 151 UInt getBitsUsedByTileIdx() { return m_uiBitsUsedByTileIdx; } 147 Void allocSaoParam(TComSampleAdaptiveOffset *sao); 148 SAOParam *getSaoParam() { return m_saoParam; } 152 149 };// END CLASS DEFINITION TComPicSym 153 150
Note: See TracChangeset for help on using the changeset viewer.