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-2012, 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_iOffsetRight; |
---|
60 | Int m_iOffsetAbove; |
---|
61 | Int m_iOffsetBottom; |
---|
62 | Pel* m_piPatternOrigin; |
---|
63 | |
---|
64 | public: |
---|
65 | Int m_iROIWidth; |
---|
66 | Int m_iROIHeight; |
---|
67 | Int m_iPatternStride; |
---|
68 | |
---|
69 | /// return starting position of buffer |
---|
70 | Pel* getPatternOrigin() { return m_piPatternOrigin; } |
---|
71 | |
---|
72 | /// return starting position of ROI (ROI = &pattern[AboveOffset][LeftOffset]) |
---|
73 | __inline Pel* getROIOrigin() |
---|
74 | { |
---|
75 | return m_piPatternOrigin + m_iPatternStride * m_iOffsetAbove + m_iOffsetLeft; |
---|
76 | } |
---|
77 | |
---|
78 | /// set parameters from Pel buffer for accessing neighbouring pixels |
---|
79 | Void setPatternParamPel ( Pel* piTexture, |
---|
80 | Int iRoiWidth, |
---|
81 | Int iRoiHeight, |
---|
82 | Int iStride, |
---|
83 | Int iOffsetLeft, |
---|
84 | Int iOffsetRight, |
---|
85 | Int iOffsetAbove, |
---|
86 | Int iOffsetBottom ); |
---|
87 | |
---|
88 | /// set parameters of one color component from CU data for accessing neighbouring pixels |
---|
89 | Void setPatternParamCU ( TComDataCU* pcCU, |
---|
90 | UChar iComp, |
---|
91 | UChar iRoiWidth, |
---|
92 | UChar iRoiHeight, |
---|
93 | Int iOffsetLeft, |
---|
94 | Int iOffsetRight, |
---|
95 | Int iOffsetAbove, |
---|
96 | Int iOffsetBottom, |
---|
97 | UInt uiPartDepth, |
---|
98 | UInt uiAbsZorderIdx |
---|
99 | #if DEPTH_MAP_GENERATION |
---|
100 | ,Bool bPrdDepthMap = false |
---|
101 | #endif |
---|
102 | ); |
---|
103 | }; |
---|
104 | |
---|
105 | /// neighbouring pixel access class for all components |
---|
106 | class TComPattern |
---|
107 | { |
---|
108 | private: |
---|
109 | TComPatternParam m_cPatternY; |
---|
110 | TComPatternParam m_cPatternCb; |
---|
111 | TComPatternParam m_cPatternCr; |
---|
112 | |
---|
113 | #if LOGI_INTRA_NAME_3MPM |
---|
114 | static const UChar m_aucIntraFilter[5]; |
---|
115 | #else |
---|
116 | static const UChar m_aucIntraFilter[5][NUM_INTRA_MODE]; |
---|
117 | #endif |
---|
118 | |
---|
119 | public: |
---|
120 | |
---|
121 | // ROI & pattern information, (ROI = &pattern[AboveOffset][LeftOffset]) |
---|
122 | Pel* getROIY() { return m_cPatternY.getROIOrigin(); } |
---|
123 | Int getROIYWidth() { return m_cPatternY.m_iROIWidth; } |
---|
124 | Int getROIYHeight() { return m_cPatternY.m_iROIHeight; } |
---|
125 | Int getPatternLStride() { return m_cPatternY.m_iPatternStride; } |
---|
126 | |
---|
127 | // access functions of ADI buffers |
---|
128 | Int* getAdiOrgBuf ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf ); |
---|
129 | Int* getAdiCbBuf ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf ); |
---|
130 | Int* getAdiCrBuf ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf ); |
---|
131 | |
---|
132 | Int* getPredictorPtr ( UInt uiDirMode, UInt uiWidthBits, Int* piAdiBuf ); |
---|
133 | // ------------------------------------------------------------------------------------------------------------------- |
---|
134 | // initialization functions |
---|
135 | // ------------------------------------------------------------------------------------------------------------------- |
---|
136 | |
---|
137 | /// set parameters from Pel buffers for accessing neighbouring pixels |
---|
138 | Void initPattern ( Pel* piY, |
---|
139 | Pel* piCb, |
---|
140 | Pel* piCr, |
---|
141 | Int iRoiWidth, |
---|
142 | Int iRoiHeight, |
---|
143 | Int iStride, |
---|
144 | Int iOffsetLeft, |
---|
145 | Int iOffsetRight, |
---|
146 | Int iOffsetAbove, |
---|
147 | Int iOffsetBottom ); |
---|
148 | |
---|
149 | /// set parameters from CU data for accessing neighbouring pixels |
---|
150 | Void initPattern ( TComDataCU* pcCU, |
---|
151 | UInt uiPartDepth, |
---|
152 | UInt uiAbsPartIdx |
---|
153 | #if DEPTH_MAP_GENERATION |
---|
154 | ,Bool bPrdDepthMap = false |
---|
155 | #endif |
---|
156 | ); |
---|
157 | |
---|
158 | /// set luma parameters from CU data for accessing ADI data |
---|
159 | Void initAdiPattern ( TComDataCU* pcCU, |
---|
160 | UInt uiZorderIdxInPart, |
---|
161 | UInt uiPartDepth, |
---|
162 | Int* piAdiBuf, |
---|
163 | Int iOrgBufStride, |
---|
164 | Int iOrgBufHeight, |
---|
165 | Bool& bAbove, |
---|
166 | Bool& bLeft |
---|
167 | ,Bool bLMmode = false // using for LM chroma or not |
---|
168 | #if DEPTH_MAP_GENERATION |
---|
169 | , |
---|
170 | Bool bPrdDepthMap = false, |
---|
171 | UInt uiSubSampExpX = 0, |
---|
172 | UInt uiSubSampExpY = 0 |
---|
173 | #endif |
---|
174 | ); |
---|
175 | |
---|
176 | /// set chroma parameters from CU data for accessing ADI data |
---|
177 | Void initAdiPatternChroma ( TComDataCU* pcCU, |
---|
178 | UInt uiZorderIdxInPart, |
---|
179 | UInt uiPartDepth, |
---|
180 | Int* piAdiBuf, |
---|
181 | Int iOrgBufStride, |
---|
182 | Int iOrgBufHeight, |
---|
183 | Bool& bAbove, |
---|
184 | Bool& bLeft ); |
---|
185 | |
---|
186 | private: |
---|
187 | |
---|
188 | /// padding of unavailable reference samples for intra prediction |
---|
189 | Void fillReferenceSamples ( TComDataCU* pcCU, 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 |
---|
190 | #if DEPTH_MAP_GENERATION |
---|
191 | , Bool bPrdDepthMap = false |
---|
192 | #endif |
---|
193 | ); |
---|
194 | |
---|
195 | |
---|
196 | /// constrained intra prediction |
---|
197 | Bool isAboveLeftAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT ); |
---|
198 | Int isAboveAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags ); |
---|
199 | Int isLeftAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags ); |
---|
200 | Int isAboveRightAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags ); |
---|
201 | Int isBelowLeftAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags ); |
---|
202 | |
---|
203 | }; |
---|
204 | |
---|
205 | //! \} |
---|
206 | |
---|
207 | #endif // __TCOMPATTERN__ |
---|