[5] | 1 | /* The copyright in this software is being made available under the BSD |
---|
| 2 | * License, included below. This software may be subject to other third party |
---|
| 3 | * and contributor rights, including patent rights, and no such rights are |
---|
[1313] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[1412] | 6 | * Copyright (c) 2010-2017, ITU/ISO/IEC |
---|
[5] | 7 | * All rights reserved. |
---|
| 8 | * |
---|
| 9 | * Redistribution and use in source and binary forms, with or without |
---|
| 10 | * modification, are permitted provided that the following conditions are met: |
---|
| 11 | * |
---|
| 12 | * * Redistributions of source code must retain the above copyright notice, |
---|
| 13 | * this list of conditions and the following disclaimer. |
---|
| 14 | * * Redistributions in binary form must reproduce the above copyright notice, |
---|
| 15 | * this list of conditions and the following disclaimer in the documentation |
---|
| 16 | * and/or other materials provided with the distribution. |
---|
[56] | 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
[5] | 18 | * be used to endorse or promote products derived from this software without |
---|
| 19 | * specific prior written permission. |
---|
| 20 | * |
---|
| 21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
| 22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
---|
| 25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
| 26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
| 27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
| 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
| 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
| 30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
---|
| 31 | * THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 32 | */ |
---|
[2] | 33 | |
---|
| 34 | /** \file TComPicSym.h |
---|
| 35 | \brief picture symbol class (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TCOMPICSYM__ |
---|
| 39 | #define __TCOMPICSYM__ |
---|
| 40 | |
---|
| 41 | |
---|
| 42 | // Include files |
---|
[1313] | 43 | #include <deque> |
---|
[2] | 44 | #include "CommonDef.h" |
---|
| 45 | #include "TComSlice.h" |
---|
| 46 | #include "TComDataCU.h" |
---|
[608] | 47 | class TComSampleAdaptiveOffset; |
---|
[1084] | 48 | class TComPPS; |
---|
[2] | 49 | |
---|
[56] | 50 | //! \ingroup TLibCommon |
---|
| 51 | //! \{ |
---|
| 52 | |
---|
[2] | 53 | // ==================================================================================================================== |
---|
| 54 | // Class definition |
---|
| 55 | // ==================================================================================================================== |
---|
| 56 | |
---|
[56] | 57 | class TComTile |
---|
| 58 | { |
---|
| 59 | private: |
---|
[1313] | 60 | UInt m_tileWidthInCtus; |
---|
| 61 | UInt m_tileHeightInCtus; |
---|
| 62 | UInt m_rightEdgePosInCtus; |
---|
| 63 | UInt m_bottomEdgePosInCtus; |
---|
| 64 | UInt m_firstCtuRsAddr; |
---|
[56] | 65 | |
---|
[1313] | 66 | public: |
---|
[56] | 67 | TComTile(); |
---|
| 68 | virtual ~TComTile(); |
---|
| 69 | |
---|
[1313] | 70 | Void setTileWidthInCtus ( UInt i ) { m_tileWidthInCtus = i; } |
---|
| 71 | UInt getTileWidthInCtus () const { return m_tileWidthInCtus; } |
---|
| 72 | Void setTileHeightInCtus ( UInt i ) { m_tileHeightInCtus = i; } |
---|
| 73 | UInt getTileHeightInCtus () const { return m_tileHeightInCtus; } |
---|
| 74 | Void setRightEdgePosInCtus ( UInt i ) { m_rightEdgePosInCtus = i; } |
---|
| 75 | UInt getRightEdgePosInCtus () const { return m_rightEdgePosInCtus; } |
---|
| 76 | Void setBottomEdgePosInCtus ( UInt i ) { m_bottomEdgePosInCtus = i; } |
---|
| 77 | UInt getBottomEdgePosInCtus () const { return m_bottomEdgePosInCtus; } |
---|
| 78 | Void setFirstCtuRsAddr ( UInt i ) { m_firstCtuRsAddr = i; } |
---|
| 79 | UInt getFirstCtuRsAddr () const { return m_firstCtuRsAddr; } |
---|
[56] | 80 | }; |
---|
| 81 | |
---|
[2] | 82 | /// picture symbol class |
---|
| 83 | class TComPicSym |
---|
| 84 | { |
---|
| 85 | private: |
---|
[1313] | 86 | UInt m_frameWidthInCtus; |
---|
| 87 | UInt m_frameHeightInCtus; |
---|
| 88 | |
---|
[2] | 89 | UInt m_uiMinCUWidth; |
---|
| 90 | UInt m_uiMinCUHeight; |
---|
[1313] | 91 | |
---|
[2] | 92 | UChar m_uhTotalDepth; ///< max. depth |
---|
[1313] | 93 | UInt m_numPartitionsInCtu; |
---|
| 94 | UInt m_numPartInCtuWidth; |
---|
| 95 | UInt m_numPartInCtuHeight; |
---|
| 96 | UInt m_numCtusInFrame; |
---|
| 97 | |
---|
| 98 | std::deque<TComSlice*> m_apSlices; |
---|
| 99 | TComDataCU** m_pictureCtuArray; ///< array of CU data. |
---|
| 100 | |
---|
| 101 | Int m_numTileColumnsMinus1; |
---|
| 102 | Int m_numTileRowsMinus1; |
---|
[1084] | 103 | std::vector<TComTile> m_tileParameters; |
---|
[1313] | 104 | UInt* m_ctuTsToRsAddrMap; ///< for a given TS (Tile-Scan; coding order) address, returns the RS (Raster-Scan) address. cf CtbAddrTsToRs in specification. |
---|
| 105 | UInt* m_puiTileIdxMap; ///< the map of the tile index relative to CTU raster scan address |
---|
| 106 | UInt* m_ctuRsToTsAddrMap; ///< for a given RS (Raster-Scan) address, returns the TS (Tile-Scan; coding order) address. cf CtbAddrRsToTs in specification. |
---|
[56] | 107 | |
---|
[1412] | 108 | #if REDUCED_ENCODER_MEMORY |
---|
| 109 | public: |
---|
| 110 | struct DPBPerCtuData |
---|
| 111 | { |
---|
| 112 | Bool isInter(const UInt absPartAddr) const { return m_pePredMode[absPartAddr] == MODE_INTER; } |
---|
| 113 | PartSize getPartitionSize( const UInt absPartAddr ) const { return static_cast<PartSize>( m_pePartSize[absPartAddr] ); } |
---|
| 114 | const TComCUMvField* getCUMvField ( RefPicList e ) const { return &m_CUMvField[e]; } |
---|
| 115 | const TComSlice* getSlice() const { return m_pSlice; } |
---|
| 116 | |
---|
| 117 | SChar * m_pePredMode; |
---|
| 118 | SChar * m_pePartSize; |
---|
| 119 | TComCUMvField m_CUMvField[NUM_REF_PIC_LIST_01]; |
---|
| 120 | TComSlice * m_pSlice; |
---|
| 121 | }; |
---|
| 122 | |
---|
| 123 | private: |
---|
| 124 | DPBPerCtuData *m_dpbPerCtuData; |
---|
| 125 | #endif |
---|
[1313] | 126 | SAOBlkParam *m_saoBlkParams; |
---|
| 127 | #if ADAPTIVE_QP_SELECTION |
---|
| 128 | TCoeff* m_pParentARLBuffer; |
---|
| 129 | #endif |
---|
| 130 | TComSPS m_sps; |
---|
| 131 | TComPPS m_pps; |
---|
| 132 | |
---|
| 133 | Void xInitTiles( ); |
---|
| 134 | Void xInitCtuTsRsAddrMaps(); |
---|
| 135 | Void setNumTileColumnsMinus1( Int i ) { m_numTileColumnsMinus1 = i; } |
---|
| 136 | Void setNumTileRowsMinus1( Int i ) { m_numTileRowsMinus1 = i; } |
---|
| 137 | Void setCtuTsToRsAddrMap( Int ctuTsAddr, Int ctuRsAddr ) { *(m_ctuTsToRsAddrMap + ctuTsAddr) = ctuRsAddr; } |
---|
| 138 | Void setCtuRsToTsAddrMap( Int ctuRsAddr, Int ctuTsOrder ) { *(m_ctuRsToTsAddrMap + ctuRsAddr) = ctuTsOrder; } |
---|
| 139 | |
---|
[2] | 140 | public: |
---|
[1412] | 141 | #if REDUCED_ENCODER_MEMORY |
---|
| 142 | Void create ( const TComSPS &sps, const TComPPS &pps, UInt uiMaxDepth, const Bool bAllocateCtuArray ); |
---|
| 143 | Void prepareForReconstruction(); |
---|
| 144 | Void releaseReconstructionIntermediateData(); |
---|
| 145 | Void releaseAllReconstructionData(); |
---|
| 146 | #else |
---|
[1313] | 147 | Void create ( const TComSPS &sps, const TComPPS &pps, UInt uiMaxDepth ); |
---|
[1412] | 148 | #endif |
---|
[1313] | 149 | Void destroy (); |
---|
[608] | 150 | |
---|
| 151 | TComPicSym (); |
---|
[1405] | 152 | ~TComPicSym(); |
---|
| 153 | |
---|
[1313] | 154 | TComSlice* getSlice(UInt i) { return m_apSlices[i]; } |
---|
| 155 | const TComSlice* getSlice(UInt i) const { return m_apSlices[i]; } |
---|
| 156 | UInt getFrameWidthInCtus() const { return m_frameWidthInCtus; } |
---|
| 157 | UInt getFrameHeightInCtus() const { return m_frameHeightInCtus; } |
---|
| 158 | UInt getMinCUWidth() const { return m_uiMinCUWidth; } |
---|
| 159 | UInt getMinCUHeight() const { return m_uiMinCUHeight; } |
---|
| 160 | UInt getNumberOfCtusInFrame() const { return m_numCtusInFrame; } |
---|
| 161 | TComDataCU* getCtu( UInt ctuRsAddr ) { return m_pictureCtuArray[ctuRsAddr]; } |
---|
| 162 | const TComDataCU* getCtu( UInt ctuRsAddr ) const { return m_pictureCtuArray[ctuRsAddr]; } |
---|
| 163 | const TComSPS& getSPS() const { return m_sps; } |
---|
| 164 | const TComPPS& getPPS() const { return m_pps; } |
---|
[1412] | 165 | #if REDUCED_ENCODER_MEMORY |
---|
| 166 | Bool hasDPBPerCtuData() const { return (m_dpbPerCtuData!=0); }; |
---|
| 167 | DPBPerCtuData& getDPBPerCtuData(UInt ctuRsAddr) { return m_dpbPerCtuData[ctuRsAddr]; } |
---|
| 168 | const DPBPerCtuData& getDPBPerCtuData(UInt ctuRsAddr) const { return m_dpbPerCtuData[ctuRsAddr]; } |
---|
| 169 | #endif |
---|
[872] | 170 | |
---|
[1313] | 171 | TComSlice * swapSliceObject(TComSlice* p, UInt i) { p->setSPS(&m_sps); p->setPPS(&m_pps); TComSlice *pTmp=m_apSlices[i];m_apSlices[i] = p; pTmp->setSPS(0); pTmp->setPPS(0); return pTmp; } |
---|
| 172 | UInt getNumAllocatedSlice() const { return UInt(m_apSlices.size()); } |
---|
| 173 | Void allocateNewSlice(); |
---|
| 174 | Void clearSliceBuffer(); |
---|
| 175 | UInt getNumPartitionsInCtu() const { return m_numPartitionsInCtu; } |
---|
| 176 | UInt getNumPartInCtuWidth() const { return m_numPartInCtuWidth; } |
---|
| 177 | UInt getNumPartInCtuHeight() const { return m_numPartInCtuHeight; } |
---|
| 178 | Int getNumTileColumnsMinus1() const { return m_numTileColumnsMinus1; } |
---|
| 179 | Int getNumTileRowsMinus1() const { return m_numTileRowsMinus1; } |
---|
| 180 | Int getNumTiles() const { return (m_numTileRowsMinus1+1)*(m_numTileColumnsMinus1+1); } |
---|
| 181 | TComTile* getTComTile ( UInt tileIdx ) { return &(m_tileParameters[tileIdx]); } |
---|
| 182 | const TComTile* getTComTile ( UInt tileIdx ) const { return &(m_tileParameters[tileIdx]); } |
---|
| 183 | UInt getCtuTsToRsAddrMap( Int ctuTsAddr ) const { return *(m_ctuTsToRsAddrMap + (ctuTsAddr>=m_numCtusInFrame ? m_numCtusInFrame : ctuTsAddr)); } |
---|
| 184 | UInt getTileIdxMap( Int ctuRsAddr ) const { return *(m_puiTileIdxMap + ctuRsAddr); } |
---|
| 185 | UInt getCtuRsToTsAddrMap( Int ctuRsAddr ) const { return *(m_ctuRsToTsAddrMap + (ctuRsAddr>=m_numCtusInFrame ? m_numCtusInFrame : ctuRsAddr)); } |
---|
| 186 | SAOBlkParam* getSAOBlkParam() { return m_saoBlkParams;} |
---|
| 187 | const SAOBlkParam* getSAOBlkParam() const { return m_saoBlkParams;} |
---|
| 188 | Void deriveLoopFilterBoundaryAvailibility(Int ctuRsAddr, |
---|
| 189 | Bool& isLeftAvail, Bool& isRightAvail, Bool& isAboveAvail, Bool& isBelowAvail, |
---|
| 190 | Bool& isAboveLeftAvail, Bool& isAboveRightAvail, Bool& isBelowLeftAvail, Bool& isBelowRightAvail); |
---|
| 191 | protected: |
---|
| 192 | UInt xCalculateNextCtuRSAddr( UInt uiCurrCtuRSAddr ); |
---|
[872] | 193 | |
---|
[2] | 194 | };// END CLASS DEFINITION TComPicSym |
---|
| 195 | |
---|
[56] | 196 | //! \} |
---|
[2] | 197 | |
---|
[1412] | 198 | #if MCTS_ENC_CHECK |
---|
| 199 | Void getTilePosition(const TComDataCU* const pcCU, UInt &tileXPosInCtus, UInt &tileYPosInCtus, UInt &tileWidthtInCtus, UInt &tileHeightInCtus); |
---|
| 200 | #endif |
---|
| 201 | |
---|
[2] | 202 | #endif // __TCOMPICSYM__ |
---|
| 203 | |
---|