[313] | 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 |
---|
| 4 | * granted under this license. |
---|
| 5 | * |
---|
| 6 | * Copyright (c) 2010-2013, ITU/ISO/IEC |
---|
| 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. |
---|
| 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
| 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 | */ |
---|
| 33 | |
---|
| 34 | /** \file TComPattern.h |
---|
| 35 | \brief neighbouring pixel access classes (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TCOMPATTERN__ |
---|
| 39 | #define __TCOMPATTERN__ |
---|
| 40 | |
---|
| 41 | // Include files |
---|
| 42 | #include <stdio.h> |
---|
| 43 | #include "CommonDef.h" |
---|
| 44 | |
---|
| 45 | //! \ingroup TLibCommon |
---|
| 46 | //! \{ |
---|
| 47 | |
---|
| 48 | // ==================================================================================================================== |
---|
| 49 | // Class definition |
---|
| 50 | // ==================================================================================================================== |
---|
| 51 | |
---|
| 52 | class TComDataCU; |
---|
| 53 | |
---|
| 54 | /// neighbouring pixel access class for one component |
---|
| 55 | class TComPatternParam |
---|
| 56 | { |
---|
| 57 | private: |
---|
| 58 | Int m_iOffsetLeft; |
---|
| 59 | Int m_iOffsetAbove; |
---|
| 60 | Pel* m_piPatternOrigin; |
---|
| 61 | |
---|
| 62 | public: |
---|
| 63 | Int m_iROIWidth; |
---|
| 64 | Int m_iROIHeight; |
---|
| 65 | Int m_iPatternStride; |
---|
| 66 | |
---|
| 67 | /// return starting position of buffer |
---|
| 68 | Pel* getPatternOrigin() { return m_piPatternOrigin; } |
---|
| 69 | |
---|
| 70 | /// return starting position of ROI (ROI = &pattern[AboveOffset][LeftOffset]) |
---|
| 71 | __inline Pel* getROIOrigin() |
---|
| 72 | { |
---|
| 73 | return m_piPatternOrigin + m_iPatternStride * m_iOffsetAbove + m_iOffsetLeft; |
---|
| 74 | } |
---|
| 75 | |
---|
| 76 | /// set parameters from Pel buffer for accessing neighbouring pixels |
---|
| 77 | Void setPatternParamPel ( Pel* piTexture, |
---|
| 78 | Int iRoiWidth, |
---|
| 79 | Int iRoiHeight, |
---|
| 80 | Int iStride, |
---|
| 81 | Int iOffsetLeft, |
---|
| 82 | Int iOffsetAbove ); |
---|
| 83 | |
---|
| 84 | /// set parameters of one color component from CU data for accessing neighbouring pixels |
---|
| 85 | Void setPatternParamCU ( TComDataCU* pcCU, |
---|
| 86 | UChar iComp, |
---|
| 87 | UChar iRoiWidth, |
---|
| 88 | UChar iRoiHeight, |
---|
| 89 | Int iOffsetLeft, |
---|
| 90 | Int iOffsetAbove, |
---|
| 91 | UInt uiAbsZorderIdx ); |
---|
| 92 | }; |
---|
| 93 | |
---|
| 94 | /// neighbouring pixel access class for all components |
---|
| 95 | class TComPattern |
---|
| 96 | { |
---|
| 97 | private: |
---|
| 98 | TComPatternParam m_cPatternY; |
---|
| 99 | TComPatternParam m_cPatternCb; |
---|
| 100 | TComPatternParam m_cPatternCr; |
---|
| 101 | |
---|
| 102 | static const UChar m_aucIntraFilter[5]; |
---|
| 103 | |
---|
| 104 | public: |
---|
| 105 | |
---|
| 106 | // ROI & pattern information, (ROI = &pattern[AboveOffset][LeftOffset]) |
---|
| 107 | Pel* getROIY() { return m_cPatternY.getROIOrigin(); } |
---|
| 108 | Int getROIYWidth() { return m_cPatternY.m_iROIWidth; } |
---|
| 109 | Int getROIYHeight() { return m_cPatternY.m_iROIHeight; } |
---|
| 110 | Int getPatternLStride() { return m_cPatternY.m_iPatternStride; } |
---|
| 111 | |
---|
| 112 | // access functions of ADI buffers |
---|
| 113 | Int* getAdiOrgBuf ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf ); |
---|
| 114 | Int* getAdiCbBuf ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf ); |
---|
| 115 | Int* getAdiCrBuf ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf ); |
---|
| 116 | |
---|
| 117 | Int* getPredictorPtr ( UInt uiDirMode, UInt uiWidthBits, Int* piAdiBuf ); |
---|
| 118 | // ------------------------------------------------------------------------------------------------------------------- |
---|
| 119 | // initialization functions |
---|
| 120 | // ------------------------------------------------------------------------------------------------------------------- |
---|
| 121 | |
---|
| 122 | /// set parameters from Pel buffers for accessing neighbouring pixels |
---|
| 123 | Void initPattern ( Pel* piY, |
---|
| 124 | Pel* piCb, |
---|
| 125 | Pel* piCr, |
---|
| 126 | Int iRoiWidth, |
---|
| 127 | Int iRoiHeight, |
---|
| 128 | Int iStride, |
---|
| 129 | Int iOffsetLeft, |
---|
| 130 | Int iOffsetAbove ); |
---|
| 131 | |
---|
| 132 | /// set parameters from CU data for accessing neighbouring pixels |
---|
| 133 | Void initPattern ( TComDataCU* pcCU, |
---|
| 134 | UInt uiPartDepth, |
---|
| 135 | UInt uiAbsPartIdx ); |
---|
| 136 | |
---|
| 137 | /// set luma parameters from CU data for accessing ADI data |
---|
| 138 | Void initAdiPattern ( TComDataCU* pcCU, |
---|
| 139 | UInt uiZorderIdxInPart, |
---|
| 140 | UInt uiPartDepth, |
---|
| 141 | Int* piAdiBuf, |
---|
| 142 | Int iOrgBufStride, |
---|
| 143 | Int iOrgBufHeight, |
---|
| 144 | Bool& bAbove, |
---|
| 145 | Bool& bLeft |
---|
| 146 | ,Bool bLMmode = false // using for LM chroma or not |
---|
| 147 | ); |
---|
| 148 | |
---|
| 149 | /// set chroma parameters from CU data for accessing ADI data |
---|
| 150 | Void initAdiPatternChroma ( TComDataCU* pcCU, |
---|
| 151 | UInt uiZorderIdxInPart, |
---|
| 152 | UInt uiPartDepth, |
---|
| 153 | Int* piAdiBuf, |
---|
| 154 | Int iOrgBufStride, |
---|
| 155 | Int iOrgBufHeight, |
---|
| 156 | Bool& bAbove, |
---|
| 157 | Bool& bLeft ); |
---|
| 158 | |
---|
| 159 | private: |
---|
| 160 | |
---|
| 161 | /// padding of unavailable reference samples for intra prediction |
---|
| 162 | Void fillReferenceSamples (Int bitDepth, Pel* piRoiOrigin, Int* piAdiTemp, Bool* bNeighborFlags, Int iNumIntraNeighbor, Int iUnitSize, Int iNumUnitsInCu, Int iTotalUnits, UInt uiCuWidth, UInt uiCuHeight, UInt uiWidth, UInt uiHeight, Int iPicStride, Bool bLMmode = false); |
---|
| 163 | |
---|
| 164 | |
---|
| 165 | /// constrained intra prediction |
---|
| 166 | Bool isAboveLeftAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT ); |
---|
| 167 | Int isAboveAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags ); |
---|
| 168 | Int isLeftAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags ); |
---|
| 169 | Int isAboveRightAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags ); |
---|
| 170 | Int isBelowLeftAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags ); |
---|
| 171 | |
---|
| 172 | }; |
---|
| 173 | |
---|
| 174 | //! \} |
---|
| 175 | |
---|
| 176 | #endif // __TCOMPATTERN__ |
---|