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-2015, 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   TComDataCU.cpp |
---|
35 |   \brief  CU data structure |
---|
36 |   \todo   not all entities are documented |
---|
37 | */ |
---|
38 | |
---|
39 | #include "TComDataCU.h" |
---|
40 | #include "TComTU.h" |
---|
41 | #include "TComPic.h" |
---|
42 | |
---|
43 | //! \ingroup TLibCommon |
---|
44 | //! \{ |
---|
45 | |
---|
46 | // ==================================================================================================================== |
---|
47 | // Constructor / destructor / create / destroy |
---|
48 | // ==================================================================================================================== |
---|
49 | |
---|
50 | TComDataCU::TComDataCU() |
---|
51 | { |
---|
52 |  m_pcPic       = NULL; |
---|
53 |  m_pcSlice      = NULL; |
---|
54 |  m_puhDepth      = NULL; |
---|
55 | |
---|
56 |  m_skipFlag      = NULL; |
---|
57 | #if NH_3D_DIS |
---|
58 |  m_bDISFlag      = NULL; |
---|
59 |  m_ucDISType     = NULL; |
---|
60 | #endif |
---|
61 |  m_pePartSize     = NULL; |
---|
62 |  m_pePredMode     = NULL; |
---|
63 | Â m_CUTransquantBypass =Â NULL; |
---|
64 |  m_puhWidth      = NULL; |
---|
65 |  m_puhHeight     = NULL; |
---|
66 | Â m_phQPÂ Â Â Â Â Â Â Â =Â NULL; |
---|
67 |  m_ChromaQpAdj    = NULL; |
---|
68 |  m_pbMergeFlag    = NULL; |
---|
69 |  m_puhMergeIndex   = NULL; |
---|
70 | Â for(UInt i=0;Â i<MAX_NUM_CHANNEL_TYPE;Â i++) |
---|
71 | Â { |
---|
72 | Â Â m_puhIntraDir[i]Â Â Â =Â NULL; |
---|
73 | Â } |
---|
74 |  m_puhInterDir    = NULL; |
---|
75 |  m_puhTrIdx      = NULL; |
---|
76 | |
---|
77 |  for (UInt comp=0; comp<MAX_NUM_COMPONENT; comp++) |
---|
78 | Â { |
---|
79 | Â Â m_puhCbf[comp]Â Â Â Â Â Â Â Â Â Â Â Â =Â NULL; |
---|
80 | Â Â m_crossComponentPredictionAlpha[comp]Â =Â NULL; |
---|
81 | Â Â m_puhTransformSkip[comp]Â Â Â Â Â Â Â =Â NULL; |
---|
82 | Â Â m_pcTrCoeff[comp]Â Â Â Â Â Â Â Â Â Â Â =Â NULL; |
---|
83 | #if ADAPTIVE_QP_SELECTION |
---|
84 | Â Â m_pcArlCoeff[comp]Â Â Â Â Â Â Â Â Â Â =Â NULL; |
---|
85 | #endif |
---|
86 | Â Â m_pcIPCMSample[comp]Â Â Â Â Â Â Â Â Â =Â NULL; |
---|
87 | Â Â m_explicitRdpcmMode[comp]Â Â Â Â Â Â Â =Â NULL; |
---|
88 | Â } |
---|
89 | #if ADAPTIVE_QP_SELECTION |
---|
90 | Â m_ArlCoeffIsAliasedAllocation =Â false; |
---|
91 | #endif |
---|
92 |  m_pbIPCMFlag     = NULL; |
---|
93 | |
---|
94 |  m_pCtuAboveLeft   = NULL; |
---|
95 |  m_pCtuAboveRight   = NULL; |
---|
96 |  m_pCtuAbove     = NULL; |
---|
97 |  m_pCtuLeft      = NULL; |
---|
98 | |
---|
99 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
100 | Â { |
---|
101 | Â Â m_apcCUColocated[i]Â =Â NULL; |
---|
102 | Â Â m_apiMVPIdx[i]Â Â Â Â =Â NULL; |
---|
103 | Â Â m_apiMVPNum[i]Â Â Â Â =Â NULL; |
---|
104 | Â } |
---|
105 | |
---|
106 | #if NH_3D_DMM |
---|
107 | Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
108 | Â { |
---|
109 | Â Â m_dmmDeltaDC[i][0]Â =Â NULL;Â |
---|
110 | Â Â m_dmmDeltaDC[i][1]Â =Â NULL; |
---|
111 | Â } |
---|
112 | Â m_dmm1WedgeTabIdx =Â NULL; |
---|
113 | #endif |
---|
114 | #if NH_3D_SDC_INTRA |
---|
115 |  m_pbSDCFlag       = NULL; |
---|
116 | Â m_apSegmentDCOffset[0]Â =Â NULL; |
---|
117 | Â m_apSegmentDCOffset[1]Â =Â NULL; |
---|
118 | #endif |
---|
119 | |
---|
120 |  m_bDecSubCu     = false; |
---|
121 | |
---|
122 | #if NH_3D_NBDV |
---|
123 |  m_pDvInfo       = NULL; |
---|
124 | #endif |
---|
125 | #if NH_3D_VSP |
---|
126 |  m_piVSPFlag      = NULL; |
---|
127 | #endif |
---|
128 | #if NH_3D_SPIVMP |
---|
129 |  m_pbSPIVMPFlag     = NULL; |
---|
130 | #endif |
---|
131 | #if NH_3D_ARP |
---|
132 | Â m_puhARPWÂ Â Â Â Â Â Â =Â NULL; |
---|
133 | #endif |
---|
134 | #if NH_3D_IC |
---|
135 |  m_pbICFlag       = NULL; |
---|
136 | #endif |
---|
137 | #if H_3D_INTER_SDC |
---|
138 | #endif |
---|
139 | #if NH_3D_DBBP |
---|
140 |  m_pbDBBPFlag     = NULL; |
---|
141 | #endif |
---|
142 | |
---|
143 | } |
---|
144 | |
---|
145 | TComDataCU::~TComDataCU() |
---|
146 | { |
---|
147 | } |
---|
148 | |
---|
149 | Void TComDataCU::create( ChromaFormat chromaFormatIDC, UInt uiNumPartition, UInt uiWidth, UInt uiHeight, Bool bDecSubCu, Int unitSize |
---|
150 | #if ADAPTIVE_QP_SELECTION |
---|
151 |             , TCoeff *pParentARLBuffer |
---|
152 | #endif |
---|
153 | Â Â Â Â Â Â Â Â Â Â Â Â ) |
---|
154 | { |
---|
155 | Â m_bDecSubCu =Â bDecSubCu; |
---|
156 | |
---|
157 |  m_pcPic       = NULL; |
---|
158 |  m_pcSlice      = NULL; |
---|
159 |  m_uiNumPartition   = uiNumPartition; |
---|
160 | Â m_unitSize =Â unitSize; |
---|
161 | |
---|
162 |  if ( !bDecSubCu ) |
---|
163 | Â { |
---|
164 |   m_phQP        = (Char*   )xMalloc(Char,   uiNumPartition); |
---|
165 |   m_puhDepth      = (UChar*  )xMalloc(UChar,  uiNumPartition); |
---|
166 |   m_puhWidth      = (UChar*  )xMalloc(UChar,  uiNumPartition); |
---|
167 |   m_puhHeight     = (UChar*  )xMalloc(UChar,  uiNumPartition); |
---|
168 | |
---|
169 |   m_ChromaQpAdj    = new UChar[ uiNumPartition ]; |
---|
170 |   m_skipFlag      = new Bool[ uiNumPartition ]; |
---|
171 | #if NH_3D_DIS |
---|
172 |   m_bDISFlag      = new Bool[ uiNumPartition ]; |
---|
173 |   m_ucDISType     = (UChar*)xMalloc(UChar, uiNumPartition); |
---|
174 | #endif |
---|
175 |   m_pePartSize     = new Char[ uiNumPartition ]; |
---|
176 |   memset( m_pePartSize, NUMBER_OF_PART_SIZES,uiNumPartition * sizeof( *m_pePartSize ) ); |
---|
177 |   m_pePredMode     = new Char[ uiNumPartition ]; |
---|
178 |   m_CUTransquantBypass = new Bool[ uiNumPartition ]; |
---|
179 | |
---|
180 |   m_pbMergeFlag    = (Bool* )xMalloc(Bool,  uiNumPartition); |
---|
181 |   m_puhMergeIndex   = (UChar* )xMalloc(UChar, uiNumPartition); |
---|
182 | #if NH_3D_VSP |
---|
183 |   m_piVSPFlag     = (Char* )xMalloc(Char,  uiNumPartition); |
---|
184 | #endif |
---|
185 | #if NH_3D_SPIVMP |
---|
186 |   m_pbSPIVMPFlag    = (Bool* )xMalloc(Bool,  uiNumPartition); |
---|
187 | #endif |
---|
188 | |
---|
189 |   for (UInt ch=0; ch<MAX_NUM_CHANNEL_TYPE; ch++) |
---|
190 | Â Â { |
---|
191 |    m_puhIntraDir[ch] = (UChar* )xMalloc(UChar, uiNumPartition); |
---|
192 | Â Â } |
---|
193 |   m_puhInterDir    = (UChar* )xMalloc(UChar, uiNumPartition); |
---|
194 | |
---|
195 |   m_puhTrIdx      = (UChar* )xMalloc(UChar, uiNumPartition); |
---|
196 | |
---|
197 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
198 | Â Â { |
---|
199 |    const RefPicList rpl=RefPicList(i); |
---|
200 |    m_apiMVPIdx[rpl]    = new Char[ uiNumPartition ]; |
---|
201 |    m_apiMVPNum[rpl]    = new Char[ uiNumPartition ]; |
---|
202 |    memset( m_apiMVPIdx[rpl], -1,uiNumPartition * sizeof( Char ) ); |
---|
203 | Â Â } |
---|
204 | |
---|
205 | #if NH_3D_NBDV |
---|
206 |   m_pDvInfo      = (DisInfo* )xMalloc(DisInfo, uiNumPartition); |
---|
207 | #endif |
---|
208 | |
---|
209 | |
---|
210 |   for (UInt comp=0; comp<MAX_NUM_COMPONENT; comp++) |
---|
211 | Â Â { |
---|
212 |    const ComponentID compID = ComponentID(comp); |
---|
213 |    const UInt chromaShift = getComponentScaleX(compID, chromaFormatIDC) + getComponentScaleY(compID, chromaFormatIDC); |
---|
214 |    const UInt totalSize  = (uiWidth * uiHeight) >> chromaShift; |
---|
215 | |
---|
216 |    m_crossComponentPredictionAlpha[compID] = (Char* )xMalloc(Char,  uiNumPartition); |
---|
217 |    m_puhTransformSkip[compID]       = (UChar* )xMalloc(UChar, uiNumPartition); |
---|
218 |    m_explicitRdpcmMode[compID]       = (UChar* )xMalloc(UChar, uiNumPartition); |
---|
219 |    m_puhCbf[compID]            = (UChar* )xMalloc(UChar, uiNumPartition); |
---|
220 |    m_pcTrCoeff[compID]           = (TCoeff*)xMalloc(TCoeff, totalSize); |
---|
221 |    memset( m_pcTrCoeff[compID], 0, (totalSize * sizeof( TCoeff )) ); |
---|
222 | |
---|
223 | #if ADAPTIVE_QP_SELECTION |
---|
224 | Â Â Â if(Â pParentARLBuffer !=Â 0Â ) |
---|
225 | Â Â Â { |
---|
226 | Â Â Â Â m_pcArlCoeff[compID]Â =Â pParentARLBuffer; |
---|
227 | Â Â Â Â m_ArlCoeffIsAliasedAllocation =Â true; |
---|
228 | Â Â Â Â pParentARLBuffer +=Â totalSize; |
---|
229 | Â Â Â } |
---|
230 | Â Â Â else |
---|
231 | Â Â Â { |
---|
232 |     m_pcArlCoeff[compID] = (TCoeff*)xMalloc(TCoeff, totalSize); |
---|
233 | Â Â Â Â m_ArlCoeffIsAliasedAllocation =Â false; |
---|
234 | Â Â Â } |
---|
235 | #endif |
---|
236 |    m_pcIPCMSample[compID] = (Pel*  )xMalloc(Pel , totalSize); |
---|
237 | Â Â } |
---|
238 | |
---|
239 |   m_pbIPCMFlag     = (Bool* )xMalloc(Bool, uiNumPartition); |
---|
240 | |
---|
241 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
242 | Â Â { |
---|
243 | Â Â Â m_acCUMvField[i].create(Â uiNumPartition ); |
---|
244 | Â Â } |
---|
245 | |
---|
246 | #if NH_3D_ARP |
---|
247 |   m_puhARPW      = (UChar* )xMalloc(UChar,  uiNumPartition); |
---|
248 | #endif |
---|
249 | #if NH_3D_IC |
---|
250 |   m_pbICFlag      = (Bool* )xMalloc(Bool,  uiNumPartition); |
---|
251 | #endif |
---|
252 | #if NH_3D_DMM |
---|
253 | Â Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
254 | Â Â { |
---|
255 |    m_dmmDeltaDC[i][0] = (Pel* )xMalloc(Pel, uiNumPartition); |
---|
256 |    m_dmmDeltaDC[i][1] = (Pel* )xMalloc(Pel, uiNumPartition); |
---|
257 | Â Â } |
---|
258 |   m_dmm1WedgeTabIdx  = (UInt*)xMalloc(UInt, uiNumPartition); |
---|
259 | #endif |
---|
260 | #if NH_3D_SDC_INTRA |
---|
261 |   m_pbSDCFlag       = (Bool*)xMalloc(Bool, uiNumPartition); |
---|
262 |   m_apSegmentDCOffset[0] = (Pel*)xMalloc(Pel, uiNumPartition); |
---|
263 |   m_apSegmentDCOffset[1] = (Pel*)xMalloc(Pel, uiNumPartition); |
---|
264 | #endif |
---|
265 | #if NH_3D_DBBP |
---|
266 |   m_pbDBBPFlag     = (Bool* )xMalloc(Bool,  uiNumPartition); |
---|
267 | #endif |
---|
268 | |
---|
269 | Â } |
---|
270 | Â else |
---|
271 | Â { |
---|
272 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
273 | Â Â { |
---|
274 | Â Â Â m_acCUMvField[i].setNumPartition(uiNumPartition ); |
---|
275 | Â Â } |
---|
276 | Â } |
---|
277 | |
---|
278 | Â // create motion vector fields |
---|
279 | |
---|
280 |  m_pCtuAboveLeft   = NULL; |
---|
281 |  m_pCtuAboveRight   = NULL; |
---|
282 |  m_pCtuAbove     = NULL; |
---|
283 |  m_pCtuLeft      = NULL; |
---|
284 | |
---|
285 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
286 | Â { |
---|
287 | Â Â m_apcCUColocated[i]Â =Â NULL; |
---|
288 | Â } |
---|
289 | } |
---|
290 | |
---|
291 | Void TComDataCU::destroy() |
---|
292 | { |
---|
293 | Â // encoder-side buffer free |
---|
294 |  if ( !m_bDecSubCu ) |
---|
295 | Â { |
---|
296 |   if ( m_phQP ) |
---|
297 | Â Â { |
---|
298 | Â Â Â xFree(m_phQP); |
---|
299 | Â Â Â m_phQP =Â NULL; |
---|
300 | Â Â } |
---|
301 |   if ( m_puhDepth ) |
---|
302 | Â Â { |
---|
303 | Â Â Â xFree(m_puhDepth); |
---|
304 | Â Â Â m_puhDepth =Â NULL; |
---|
305 | Â Â } |
---|
306 |   if ( m_puhWidth ) |
---|
307 | Â Â { |
---|
308 | Â Â Â xFree(m_puhWidth); |
---|
309 | Â Â Â m_puhWidth =Â NULL; |
---|
310 | Â Â } |
---|
311 |   if ( m_puhHeight ) |
---|
312 | Â Â { |
---|
313 | Â Â Â xFree(m_puhHeight); |
---|
314 | Â Â Â m_puhHeight =Â NULL; |
---|
315 | Â Â } |
---|
316 | |
---|
317 |   if ( m_skipFlag ) |
---|
318 | Â Â { |
---|
319 | Â Â Â delete[]Â m_skipFlag; |
---|
320 | Â Â Â m_skipFlag =Â NULL; |
---|
321 | Â Â } |
---|
322 | |
---|
323 | #if NH_3D_DIS |
---|
324 |   if ( m_bDISFlag      ) { delete[] m_bDISFlag;  m_bDISFlag   = NULL; } |
---|
325 |   if ( m_ucDISType     ) { xFree(m_ucDISType); m_ucDISType  = NULL; } |
---|
326 | #endif |
---|
327 | |
---|
328 |   if ( m_pePartSize ) |
---|
329 | Â Â { |
---|
330 | Â Â Â delete[]Â m_pePartSize; |
---|
331 | Â Â Â m_pePartSize =Â NULL; |
---|
332 | Â Â } |
---|
333 |   if ( m_pePredMode ) |
---|
334 | Â Â { |
---|
335 | Â Â Â delete[]Â m_pePredMode; |
---|
336 | Â Â Â m_pePredMode =Â NULL; |
---|
337 | Â Â } |
---|
338 |   if ( m_ChromaQpAdj ) |
---|
339 | Â Â { |
---|
340 | Â Â Â delete[]Â m_ChromaQpAdj; |
---|
341 | Â Â Â m_ChromaQpAdj =Â NULL; |
---|
342 | Â Â } |
---|
343 |   if ( m_CUTransquantBypass ) |
---|
344 | Â Â { |
---|
345 | Â Â Â delete[]Â m_CUTransquantBypass; |
---|
346 | Â Â Â m_CUTransquantBypass =Â NULL; |
---|
347 | Â Â } |
---|
348 |   if ( m_puhInterDir ) |
---|
349 | Â Â { |
---|
350 | Â Â Â xFree(m_puhInterDir); |
---|
351 | Â Â Â m_puhInterDir =Â NULL; |
---|
352 | Â Â } |
---|
353 |   if ( m_pbMergeFlag ) |
---|
354 | Â Â { |
---|
355 | Â Â Â xFree(m_pbMergeFlag); |
---|
356 | Â Â Â m_pbMergeFlag =Â NULL; |
---|
357 | Â Â } |
---|
358 |   if ( m_puhMergeIndex ) |
---|
359 | Â Â { |
---|
360 | Â Â Â xFree(m_puhMergeIndex); |
---|
361 |    m_puhMergeIndex = NULL; |
---|
362 | Â Â } |
---|
363 | |
---|
364 | #if NH_3D_VSP |
---|
365 |   if ( m_piVSPFlag ) |
---|
366 | Â Â { |
---|
367 | Â Â Â xFree(m_piVSPFlag); |
---|
368 | Â Â Â m_piVSPFlag =Â NULL; |
---|
369 | Â Â } |
---|
370 | #endif |
---|
371 | #if NH_3D_SPIVMP |
---|
372 |   if ( m_pbSPIVMPFlag    ) { xFree(m_pbSPIVMPFlag);      m_pbSPIVMPFlag     = NULL; } |
---|
373 | #endif |
---|
374 | |
---|
375 | |
---|
376 |   for (UInt ch=0; ch<MAX_NUM_CHANNEL_TYPE; ch++) |
---|
377 | Â Â { |
---|
378 | Â Â Â xFree(m_puhIntraDir[ch]); |
---|
379 | Â Â Â m_puhIntraDir[ch]Â =Â NULL; |
---|
380 | Â Â } |
---|
381 | |
---|
382 |   if ( m_puhTrIdx ) |
---|
383 | Â Â { |
---|
384 | Â Â Â xFree(m_puhTrIdx); |
---|
385 | Â Â Â m_puhTrIdx =Â NULL; |
---|
386 | Â Â } |
---|
387 | |
---|
388 |   for (UInt comp=0; comp<MAX_NUM_COMPONENT; comp++) |
---|
389 | Â Â { |
---|
390 |    if ( m_crossComponentPredictionAlpha[comp] ) |
---|
391 | Â Â Â { |
---|
392 | Â Â Â Â xFree(m_crossComponentPredictionAlpha[comp]); |
---|
393 | Â Â Â Â m_crossComponentPredictionAlpha[comp]Â =Â NULL; |
---|
394 | Â Â Â } |
---|
395 |    if ( m_puhTransformSkip[comp] ) |
---|
396 | Â Â Â { |
---|
397 | Â Â Â Â xFree(m_puhTransformSkip[comp]); |
---|
398 | Â Â Â Â m_puhTransformSkip[comp]Â =Â NULL; |
---|
399 | Â Â Â } |
---|
400 |    if ( m_puhCbf[comp] ) |
---|
401 | Â Â Â { |
---|
402 | Â Â Â Â xFree(m_puhCbf[comp]); |
---|
403 | Â Â Â Â m_puhCbf[comp]Â =Â NULL; |
---|
404 | Â Â Â } |
---|
405 |    if ( m_pcTrCoeff[comp] ) |
---|
406 | Â Â Â { |
---|
407 | Â Â Â Â xFree(m_pcTrCoeff[comp]); |
---|
408 | Â Â Â Â m_pcTrCoeff[comp]Â =Â NULL; |
---|
409 | Â Â Â } |
---|
410 |    if ( m_explicitRdpcmMode[comp] ) |
---|
411 | Â Â Â { |
---|
412 | Â Â Â Â xFree(m_explicitRdpcmMode[comp]); |
---|
413 | Â Â Â Â m_explicitRdpcmMode[comp]Â =Â NULL; |
---|
414 | Â Â Â } |
---|
415 | |
---|
416 | #if ADAPTIVE_QP_SELECTION |
---|
417 |    if (!m_ArlCoeffIsAliasedAllocation) |
---|
418 | Â Â Â { |
---|
419 |     if ( m_pcArlCoeff[comp] ) |
---|
420 | Â Â Â Â { |
---|
421 | Â Â Â Â Â xFree(m_pcArlCoeff[comp]); |
---|
422 | Â Â Â Â Â m_pcArlCoeff[comp]Â =Â NULL; |
---|
423 | Â Â Â Â } |
---|
424 | Â Â Â } |
---|
425 | #endif |
---|
426 | |
---|
427 |    if ( m_pcIPCMSample[comp] ) |
---|
428 | Â Â Â { |
---|
429 | Â Â Â Â xFree(m_pcIPCMSample[comp]); |
---|
430 | Â Â Â Â m_pcIPCMSample[comp]Â =Â NULL; |
---|
431 | Â Â Â } |
---|
432 | Â Â } |
---|
433 |   if ( m_pbIPCMFlag ) |
---|
434 | Â Â { |
---|
435 | Â Â Â xFree(m_pbIPCMFlag ); |
---|
436 | Â Â Â m_pbIPCMFlag =Â NULL; |
---|
437 | Â Â } |
---|
438 | |
---|
439 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
440 | Â Â { |
---|
441 |    const RefPicList rpl=RefPicList(i); |
---|
442 |    if ( m_apiMVPIdx[rpl] ) |
---|
443 | Â Â Â { |
---|
444 | Â Â Â Â delete[]Â m_apiMVPIdx[rpl]; |
---|
445 | Â Â Â Â m_apiMVPIdx[rpl]Â =Â NULL; |
---|
446 | Â Â Â } |
---|
447 |    if ( m_apiMVPNum[rpl] ) |
---|
448 | Â Â Â { |
---|
449 | Â Â Â Â delete[]Â m_apiMVPNum[rpl]; |
---|
450 | Â Â Â Â m_apiMVPNum[rpl]Â =Â NULL; |
---|
451 | Â Â Â } |
---|
452 | Â Â } |
---|
453 | |
---|
454 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
455 | Â Â { |
---|
456 |    const RefPicList rpl=RefPicList(i); |
---|
457 | Â Â Â m_acCUMvField[rpl].destroy(); |
---|
458 | Â Â } |
---|
459 | #if NH_3D_NBDV |
---|
460 |   if ( m_pDvInfo      ) { xFree(m_pDvInfo);       m_pDvInfo      = NULL; } |
---|
461 | #endif |
---|
462 | |
---|
463 | |
---|
464 | #if NH_3D_ARP |
---|
465 |   if ( m_puhARPW      ) { xFree(m_puhARPW);       m_puhARPW      = NULL; } |
---|
466 | #endif |
---|
467 | #if NH_3D_IC |
---|
468 |   if ( m_pbICFlag      ) { xFree(m_pbICFlag);      m_pbICFlag     = NULL; } |
---|
469 | #endif |
---|
470 | |
---|
471 | #if NH_3D_DMM |
---|
472 | Â Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
473 | Â Â { |
---|
474 |    if ( m_dmmDeltaDC[i][0] ) { xFree( m_dmmDeltaDC[i][0] ); m_dmmDeltaDC[i][0] = NULL; } |
---|
475 |    if ( m_dmmDeltaDC[i][1] ) { xFree( m_dmmDeltaDC[i][1] ); m_dmmDeltaDC[i][1] = NULL; } |
---|
476 | Â Â } |
---|
477 |   if ( m_dmm1WedgeTabIdx  ) { xFree( m_dmm1WedgeTabIdx ); m_dmm1WedgeTabIdx = NULL; } |
---|
478 | #endif |
---|
479 | #if NH_3D_SDC_INTRA |
---|
480 |   if ( m_pbSDCFlag      ) { xFree(m_pbSDCFlag);       m_pbSDCFlag       = NULL; } |
---|
481 |   if ( m_apSegmentDCOffset[0] ) { xFree(m_apSegmentDCOffset[0]); m_apSegmentDCOffset[0] = NULL; } |
---|
482 |   if ( m_apSegmentDCOffset[1] ) { xFree(m_apSegmentDCOffset[1]); m_apSegmentDCOffset[1] = NULL; } |
---|
483 | #endif  |
---|
484 | #if NH_3D_DBBP |
---|
485 |   if ( m_pbDBBPFlag     ) { xFree(m_pbDBBPFlag);     m_pbDBBPFlag    = NULL; } |
---|
486 | #endif |
---|
487 | |
---|
488 | Â } |
---|
489 | |
---|
490 |  m_pcPic       = NULL; |
---|
491 |  m_pcSlice      = NULL; |
---|
492 | |
---|
493 |  m_pCtuAboveLeft   = NULL; |
---|
494 |  m_pCtuAboveRight   = NULL; |
---|
495 |  m_pCtuAbove     = NULL; |
---|
496 |  m_pCtuLeft      = NULL; |
---|
497 | |
---|
498 | |
---|
499 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
500 | Â { |
---|
501 | Â Â m_apcCUColocated[i]Â =Â NULL; |
---|
502 | Â } |
---|
503 | |
---|
504 | } |
---|
505 | |
---|
506 | Bool TComDataCU::CUIsFromSameTile      ( const TComDataCU *pCU /* Can be NULL */) const |
---|
507 | { |
---|
508 |  return pCU!=NULL && |
---|
509 | Â Â Â Â Â pCU->getSlice()Â !=Â NULLÂ && |
---|
510 | Â Â Â Â Â m_pcPic->getPicSym()->getTileIdxMap(Â pCU->getCtuRsAddr()Â )Â ==Â m_pcPic->getPicSym()->getTileIdxMap(getCtuRsAddr()); |
---|
511 | } |
---|
512 | |
---|
513 | Bool TComDataCU::CUIsFromSameSliceAndTile  ( const TComDataCU *pCU /* Can be NULL */) const |
---|
514 | { |
---|
515 |  return pCU!=NULL && |
---|
516 | Â Â Â Â Â pCU->getSlice()Â !=Â NULLÂ && |
---|
517 | Â Â Â Â Â pCU->getSlice()->getSliceCurStartCtuTsAddr()Â ==Â getSlice()->getSliceCurStartCtuTsAddr()Â && |
---|
518 | Â Â Â Â Â m_pcPic->getPicSym()->getTileIdxMap(Â pCU->getCtuRsAddr()Â )Â ==Â m_pcPic->getPicSym()->getTileIdxMap(getCtuRsAddr()) |
---|
519 | Â Â Â Â Â ; |
---|
520 | } |
---|
521 | |
---|
522 | Bool TComDataCU::CUIsFromSameSliceTileAndWavefrontRow( const TComDataCU *pCU /* Can be NULL */) const |
---|
523 | { |
---|
524 |  return CUIsFromSameSliceAndTile(pCU) |
---|
525 | Â Â Â Â Â &&Â (!getSlice()->getPPS()->getEntropyCodingSyncEnabledFlag()Â ||Â getPic()->getCtu(getCtuRsAddr())->getCUPelY()Â ==Â getPic()->getCtu(pCU->getCtuRsAddr())->getCUPelY()); |
---|
526 | } |
---|
527 | |
---|
528 | Bool TComDataCU::isLastSubCUOfCtu(const UInt absPartIdx) |
---|
529 | { |
---|
530 |  const TComSPS &sps=*(getSlice()->getSPS()); |
---|
531 | |
---|
532 |  const UInt picWidth = sps.getPicWidthInLumaSamples(); |
---|
533 |  const UInt picHeight = sps.getPicHeightInLumaSamples(); |
---|
534 |  const UInt granularityWidth = sps.getMaxCUWidth(); |
---|
535 | |
---|
536 |  const UInt cuPosX = getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[absPartIdx] ]; |
---|
537 |  const UInt cuPosY = getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[absPartIdx] ]; |
---|
538 | |
---|
539 |  return (((cuPosX+getWidth( absPartIdx))%granularityWidth==0||(cuPosX+getWidth( absPartIdx)==picWidth )) |
---|
540 | Â Â Â Â &&Â ((cuPosY+getHeight(absPartIdx))%granularityWidth==0||(cuPosY+getHeight(absPartIdx)==picHeight))); |
---|
541 | } |
---|
542 | |
---|
543 | // ==================================================================================================================== |
---|
544 | // Public member functions |
---|
545 | // ==================================================================================================================== |
---|
546 | |
---|
547 | // -------------------------------------------------------------------------------------------------------------------- |
---|
548 | // Initialization |
---|
549 | // -------------------------------------------------------------------------------------------------------------------- |
---|
550 | |
---|
551 | /** |
---|
552 | Â Initialize top-level CU: create internal buffers and set initial values before encoding the CTU. |
---|
553 | Â |
---|
554 |  \param pcPic    picture (TComPic) class pointer |
---|
555 |  \param ctuRsAddr  CTU address in raster scan order |
---|
556 | Â */ |
---|
557 | Void TComDataCU::initCtu( TComPic* pcPic, UInt ctuRsAddr ) |
---|
558 | { |
---|
559 | |
---|
560 |  const UInt maxCUWidth = pcPic->getPicSym()->getSPS().getMaxCUWidth(); |
---|
561 |  const UInt maxCUHeight= pcPic->getPicSym()->getSPS().getMaxCUHeight(); |
---|
562 |  m_pcPic       = pcPic; |
---|
563 |  m_pcSlice      = pcPic->getSlice(pcPic->getCurrSliceIdx()); |
---|
564 |  m_ctuRsAddr     = ctuRsAddr; |
---|
565 | Â m_uiCUPelXÂ Â Â Â Â Â =Â (Â ctuRsAddr %Â pcPic->getFrameWidthInCtus()Â )Â *Â maxCUWidth; |
---|
566 | Â m_uiCUPelYÂ Â Â Â Â Â =Â (Â ctuRsAddr /Â pcPic->getFrameWidthInCtus()Â )Â *Â maxCUHeight; |
---|
567 |  m_absZIdxInCtu    = 0; |
---|
568 |  m_dTotalCost     = MAX_DOUBLE; |
---|
569 |  m_uiTotalDistortion = 0; |
---|
570 |  m_uiTotalBits    = 0; |
---|
571 |  m_uiTotalBins    = 0; |
---|
572 |  m_uiNumPartition   = pcPic->getNumPartitionsInCtu(); |
---|
573 | |
---|
574 |  memset( m_skipFlag     , false,           m_uiNumPartition * sizeof( *m_skipFlag ) ); |
---|
575 | |
---|
576 | #if NH_3D_DIS |
---|
577 |   memset( m_bDISFlag    , false,           m_uiNumPartition * sizeof( *m_bDISFlag ) ); |
---|
578 |   memset( m_ucDISType    , false,           m_uiNumPartition * sizeof( *m_ucDISType ) ); |
---|
579 | #endif |
---|
580 | |
---|
581 |  memset( m_pePartSize    , NUMBER_OF_PART_SIZES,    m_uiNumPartition * sizeof( *m_pePartSize ) ); |
---|
582 |  memset( m_pePredMode    , NUMBER_OF_PREDICTION_MODES, m_uiNumPartition * sizeof( *m_pePredMode ) ); |
---|
583 |  memset( m_CUTransquantBypass, false,           m_uiNumPartition * sizeof( *m_CUTransquantBypass) ); |
---|
584 |  memset( m_puhDepth     , 0,             m_uiNumPartition * sizeof( *m_puhDepth ) ); |
---|
585 |  memset( m_puhTrIdx     , 0,             m_uiNumPartition * sizeof( *m_puhTrIdx ) ); |
---|
586 |  memset( m_puhWidth     , maxCUWidth,         m_uiNumPartition * sizeof( *m_puhWidth ) ); |
---|
587 |  memset( m_puhHeight     , maxCUHeight,        m_uiNumPartition * sizeof( *m_puhHeight ) ); |
---|
588 | |
---|
589 | #if NH_3D_IC |
---|
590 |  memset( m_pbICFlag     , false,           m_uiNumPartition * sizeof( *m_pbICFlag ) ); |
---|
591 | #endif |
---|
592 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
593 | Â { |
---|
594 |   const RefPicList rpl=RefPicList(i); |
---|
595 |   memset( m_apiMVPIdx[rpl] , -1,             m_uiNumPartition * sizeof( *m_apiMVPIdx[rpl] ) ); |
---|
596 |   memset( m_apiMVPNum[rpl] , -1,             m_uiNumPartition * sizeof( *m_apiMVPNum[rpl] ) ); |
---|
597 | Â } |
---|
598 |  memset( m_phQP       , getSlice()->getSliceQp(),  m_uiNumPartition * sizeof( *m_phQP ) ); |
---|
599 |  memset( m_ChromaQpAdj    , 0,             m_uiNumPartition * sizeof( *m_ChromaQpAdj ) ); |
---|
600 | Â for(UInt comp=0;Â comp<MAX_NUM_COMPONENT;Â comp++) |
---|
601 | Â { |
---|
602 |   memset( m_crossComponentPredictionAlpha[comp] , 0,           m_uiNumPartition * sizeof( *m_crossComponentPredictionAlpha[comp] ) ); |
---|
603 |   memset( m_puhTransformSkip[comp]       , 0,           m_uiNumPartition * sizeof( *m_puhTransformSkip[comp]) ); |
---|
604 |   memset( m_puhCbf[comp]            , 0,           m_uiNumPartition * sizeof( *m_puhCbf[comp] ) ); |
---|
605 |   memset( m_explicitRdpcmMode[comp]       , NUMBER_OF_RDPCM_MODES, m_uiNumPartition * sizeof( *m_explicitRdpcmMode[comp] ) ); |
---|
606 | Â } |
---|
607 |  memset( m_pbMergeFlag    , false,          m_uiNumPartition * sizeof( *m_pbMergeFlag ) ); |
---|
608 |  memset( m_puhMergeIndex   , 0,            m_uiNumPartition * sizeof( *m_puhMergeIndex ) ); |
---|
609 | |
---|
610 | #if NH_3D_VSP |
---|
611 |  memset( m_piVSPFlag     , 0,            m_uiNumPartition * sizeof( *m_piVSPFlag ) ); |
---|
612 | #endif |
---|
613 | #if NH_3D_SPIVMP |
---|
614 |  memset( m_pbSPIVMPFlag   , 0,           m_uiNumPartition * sizeof( *m_pbSPIVMPFlag ) );  |
---|
615 | #endif |
---|
616 | #if NH_3D_SDC_INTRA |
---|
617 |  memset( m_pbSDCFlag, false, m_uiNumPartition * sizeof( *m_pbSDCFlag ) ); |
---|
618 | #endif |
---|
619 | #if NH_3D_DBBP |
---|
620 |  memset( m_pbDBBPFlag , false, m_uiNumPartition * sizeof( *m_pbDBBPFlag )); |
---|
621 | #endif |
---|
622 | |
---|
623 |  for (UInt ch=0; ch<MAX_NUM_CHANNEL_TYPE; ch++) |
---|
624 | Â { |
---|
625 |   memset( m_puhIntraDir[ch] , ((ch==0) ? DC_IDX : 0),  m_uiNumPartition * sizeof( *(m_puhIntraDir[ch]) ) ); |
---|
626 | Â } |
---|
627 | |
---|
628 | #if NH_3D_ARP |
---|
629 |  memset( m_puhARPW   ,   0,    m_uiNumPartition * sizeof( *m_puhARPW )     ); |
---|
630 | #endif |
---|
631 | |
---|
632 | |
---|
633 | #if NH_3D_DMM |
---|
634 | Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
635 | Â { |
---|
636 |   memset( m_dmmDeltaDC[i][0], 0,            m_uiNumPartition * sizeof( *m_dmmDeltaDC[i][0] ) ); |
---|
637 |   memset( m_dmmDeltaDC[i][1], 0,            m_uiNumPartition * sizeof( *m_dmmDeltaDC[i][1] ) ); |
---|
638 | Â } |
---|
639 |  memset( m_dmm1WedgeTabIdx,  0,            m_uiNumPartition * sizeof( *m_dmm1WedgeTabIdx  ) ); |
---|
640 | #endif |
---|
641 | #if NH_3D_SDC_INTRA |
---|
642 |   memset( m_pbSDCFlag,   false,        m_uiNumPartition * sizeof( *m_pbSDCFlag ) ); |
---|
643 |   memset( m_apSegmentDCOffset[0],   0,        m_uiNumPartition * sizeof( *m_apSegmentDCOffset[0] ) ); |
---|
644 |   memset( m_apSegmentDCOffset[1],   0,        m_uiNumPartition * sizeof( *m_apSegmentDCOffset[1] ) ); |
---|
645 | #endif |
---|
646 | |
---|
647 |  memset( m_puhInterDir    , 0,            m_uiNumPartition * sizeof( *m_puhInterDir ) ); |
---|
648 |  memset( m_pbIPCMFlag    , false,          m_uiNumPartition * sizeof( *m_pbIPCMFlag ) ); |
---|
649 | |
---|
650 |  const UInt numCoeffY  = maxCUWidth*maxCUHeight; |
---|
651 |  for (UInt comp=0; comp<MAX_NUM_COMPONENT; comp++) |
---|
652 | Â { |
---|
653 |   const UInt componentShift = m_pcPic->getComponentScaleX(ComponentID(comp)) + m_pcPic->getComponentScaleY(ComponentID(comp)); |
---|
654 |   memset( m_pcTrCoeff[comp], 0, sizeof(TCoeff)* numCoeffY>>componentShift ); |
---|
655 | #if ADAPTIVE_QP_SELECTION |
---|
656 |   memset( m_pcArlCoeff[comp], 0, sizeof(TCoeff)* numCoeffY>>componentShift ); |
---|
657 | #endif |
---|
658 | Â } |
---|
659 | |
---|
660 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
661 | Â { |
---|
662 | Â Â m_acCUMvField[i].clearMvField(); |
---|
663 | Â } |
---|
664 | |
---|
665 | Â // Setting neighbor CU |
---|
666 |  m_pCtuLeft    = NULL; |
---|
667 |  m_pCtuAbove    = NULL; |
---|
668 |  m_pCtuAboveLeft  = NULL; |
---|
669 |  m_pCtuAboveRight = NULL; |
---|
670 | |
---|
671 | |
---|
672 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
673 | Â { |
---|
674 | Â Â m_apcCUColocated[i]Â =Â NULL; |
---|
675 | Â } |
---|
676 | |
---|
677 | Â UInt frameWidthInCtus =Â pcPic->getFrameWidthInCtus(); |
---|
678 |  if ( m_ctuRsAddr % frameWidthInCtus ) |
---|
679 | Â { |
---|
680 | Â Â m_pCtuLeft =Â pcPic->getCtu(Â m_ctuRsAddr -Â 1Â ); |
---|
681 | Â } |
---|
682 | |
---|
683 |  if ( m_ctuRsAddr / frameWidthInCtus ) |
---|
684 | Â { |
---|
685 | Â Â m_pCtuAbove =Â pcPic->getCtu(Â m_ctuRsAddr -Â frameWidthInCtus ); |
---|
686 | Â } |
---|
687 | |
---|
688 |  if ( m_pCtuLeft && m_pCtuAbove ) |
---|
689 | Â { |
---|
690 | Â Â m_pCtuAboveLeft =Â pcPic->getCtu(Â m_ctuRsAddr -Â frameWidthInCtus -Â 1Â ); |
---|
691 | Â } |
---|
692 | |
---|
693 |  if ( m_pCtuAbove && ( (m_ctuRsAddr%frameWidthInCtus) < (frameWidthInCtus-1) ) ) |
---|
694 | Â { |
---|
695 | Â Â m_pCtuAboveRight =Â pcPic->getCtu(Â m_ctuRsAddr -Â frameWidthInCtus +Â 1Â ); |
---|
696 | Â } |
---|
697 | |
---|
698 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
699 | Â { |
---|
700 |   const RefPicList rpl=RefPicList(i); |
---|
701 |   if ( getSlice()->getNumRefIdx( rpl ) > 0 ) |
---|
702 | Â Â { |
---|
703 |    m_apcCUColocated[rpl] = getSlice()->getRefPic( rpl, 0)->getCtu( m_ctuRsAddr ); |
---|
704 | Â Â } |
---|
705 | Â } |
---|
706 | } |
---|
707 | |
---|
708 | |
---|
709 | /** Initialize prediction data with enabling sub-CTU-level delta QP. |
---|
710 | *Â Â - set CU width and CU height according to depth |
---|
711 | *Â Â - set qp value according to input qp |
---|
712 | *Â Â - set last-coded qp value according to input last-coded qp |
---|
713 | * |
---|
714 | * \param uiDepth      depth of the current CU |
---|
715 | * \param qp         qp for the current CU |
---|
716 | * \param bTransquantBypass true for transquant bypass |
---|
717 | */ |
---|
718 | Void TComDataCU::initEstData( const UInt uiDepth, const Int qp, const Bool bTransquantBypass ) |
---|
719 | { |
---|
720 |  m_dTotalCost     = MAX_DOUBLE; |
---|
721 |  m_uiTotalDistortion = 0; |
---|
722 |  m_uiTotalBits    = 0; |
---|
723 |  m_uiTotalBins    = 0; |
---|
724 | |
---|
725 |  const UChar uhWidth = getSlice()->getSPS()->getMaxCUWidth() >> uiDepth; |
---|
726 |  const UChar uhHeight = getSlice()->getSPS()->getMaxCUHeight() >> uiDepth; |
---|
727 | |
---|
728 |  for (UInt ui = 0; ui < m_uiNumPartition; ui++) |
---|
729 | Â { |
---|
730 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
731 | Â Â { |
---|
732 |    const RefPicList rpl=RefPicList(i); |
---|
733 | Â Â Â m_apiMVPIdx[rpl][ui]Â =Â -1; |
---|
734 | Â Â Â m_apiMVPNum[rpl][ui]Â =Â -1; |
---|
735 | Â Â } |
---|
736 |   m_puhDepth [ui]  = uiDepth; |
---|
737 |   m_puhWidth [ui]  = uhWidth; |
---|
738 | Â Â m_puhHeight [ui]Â Â =Â uhHeight; |
---|
739 |   m_puhTrIdx [ui]  = 0; |
---|
740 | Â Â for(UInt comp=0;Â comp<MAX_NUM_COMPONENT;Â comp++) |
---|
741 | Â Â { |
---|
742 | Â Â Â m_crossComponentPredictionAlpha[comp][ui]Â =Â 0; |
---|
743 |    m_puhTransformSkip       [comp][ui] = 0; |
---|
744 |    m_explicitRdpcmMode      [comp][ui] = NUMBER_OF_RDPCM_MODES; |
---|
745 | Â Â } |
---|
746 | Â Â m_skipFlag[ui]Â Â Â =Â false; |
---|
747 | #if NH_3D_DIS |
---|
748 | Â Â m_bDISFlag[ui]Â Â Â =Â false; |
---|
749 | Â Â m_ucDISType[ui]Â Â Â =Â 0; |
---|
750 | #endif |
---|
751 | Â Â m_pePartSize[ui]Â Â =Â NUMBER_OF_PART_SIZES; |
---|
752 | Â Â m_pePredMode[ui]Â Â =Â NUMBER_OF_PREDICTION_MODES; |
---|
753 | Â Â m_CUTransquantBypass[ui]Â =Â bTransquantBypass; |
---|
754 | Â Â m_pbIPCMFlag[ui]Â Â =Â 0; |
---|
755 | Â Â m_phQP[ui]Â Â Â Â Â =Â qp; |
---|
756 | Â Â m_ChromaQpAdj[ui]Â Â =Â 0; |
---|
757 | Â Â m_pbMergeFlag[ui]Â Â =Â 0; |
---|
758 | Â Â m_puhMergeIndex[ui]Â =Â 0; |
---|
759 | #if NH_3D_VSP |
---|
760 | Â Â m_piVSPFlag[ui]Â Â Â =Â 0; |
---|
761 | #endif |
---|
762 | #if NH_3D_SPIVMP |
---|
763 | Â Â m_pbSPIVMPFlag[ui]Â =Â 0; |
---|
764 | #endif |
---|
765 | |
---|
766 |   for (UInt ch=0; ch<MAX_NUM_CHANNEL_TYPE; ch++) |
---|
767 | Â Â { |
---|
768 |    m_puhIntraDir[ch][ui] = ((ch==0) ? DC_IDX : 0); |
---|
769 | Â Â } |
---|
770 | |
---|
771 | Â Â m_puhInterDir[ui]Â =Â 0; |
---|
772 |   for (UInt comp=0; comp<MAX_NUM_COMPONENT; comp++) |
---|
773 | Â Â { |
---|
774 | Â Â Â m_puhCbf[comp][ui]Â =Â 0; |
---|
775 | Â Â } |
---|
776 | #if NH_3D_ARP |
---|
777 | Â Â Â m_puhARPW[ui]Â =Â 0; |
---|
778 | #endif |
---|
779 | #if NH_3D_IC |
---|
780 | Â Â Â m_pbICFlag[ui]Â =Â false; |
---|
781 | #endif |
---|
782 | |
---|
783 | |
---|
784 | #if NH_3D_DMM |
---|
785 | Â Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
786 | Â Â { |
---|
787 | Â Â Â m_dmmDeltaDC[i][0]Â [ui]Â =Â 0; |
---|
788 | Â Â Â m_dmmDeltaDC[i][1]Â [ui]Â =Â 0; |
---|
789 | Â Â } |
---|
790 |   m_dmm1WedgeTabIdx  [ui] = 0; |
---|
791 | #endif |
---|
792 | #if NH_3D_SDC_INTRA |
---|
793 |    m_pbSDCFlag      [ui] = false; |
---|
794 | Â Â Â m_apSegmentDCOffset[0][ui]Â =Â 0; |
---|
795 | Â Â Â m_apSegmentDCOffset[1][ui]Â =Â 0; |
---|
796 | #endif |
---|
797 | #if NH_3D_DBBP |
---|
798 | Â Â Â m_pbDBBPFlag[ui]Â =Â false; |
---|
799 | #endif |
---|
800 | Â } |
---|
801 | |
---|
802 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
803 | Â { |
---|
804 | Â Â m_acCUMvField[i].clearMvField(); |
---|
805 | Â } |
---|
806 | |
---|
807 |  const UInt numCoeffY = uhWidth*uhHeight; |
---|
808 | |
---|
809 |  for (UInt comp=0; comp<MAX_NUM_COMPONENT; comp++) |
---|
810 | Â { |
---|
811 |   const ComponentID component = ComponentID(comp); |
---|
812 |   const UInt numCoeff = numCoeffY >> (getPic()->getComponentScaleX(component) + getPic()->getComponentScaleY(component)); |
---|
813 |   memset( m_pcTrCoeff[comp],  0, numCoeff * sizeof( TCoeff ) ); |
---|
814 | #if ADAPTIVE_QP_SELECTION |
---|
815 |   memset( m_pcArlCoeff[comp],  0, numCoeff * sizeof( TCoeff ) ); |
---|
816 | #endif |
---|
817 |   memset( m_pcIPCMSample[comp], 0, numCoeff * sizeof( Pel) ); |
---|
818 | Â } |
---|
819 | } |
---|
820 | |
---|
821 | |
---|
822 | // initialize Sub partition |
---|
823 | Void TComDataCU::initSubCU( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth, Int qp ) |
---|
824 | { |
---|
825 | Â assert(Â uiPartUnitIdx<4Â ); |
---|
826 | |
---|
827 | Â UInt uiPartOffset =Â (Â pcCU->getTotalNumPart()>>2Â )*uiPartUnitIdx; |
---|
828 | |
---|
829 |  m_pcPic       = pcCU->getPic(); |
---|
830 |  m_pcSlice      = pcCU->getSlice(); |
---|
831 |  m_ctuRsAddr     = pcCU->getCtuRsAddr(); |
---|
832 |  m_absZIdxInCtu    = pcCU->getZorderIdxInCtu() + uiPartOffset; |
---|
833 | |
---|
834 |  const UChar uhWidth = getSlice()->getSPS()->getMaxCUWidth() >> uiDepth; |
---|
835 |  const UChar uhHeight = getSlice()->getSPS()->getMaxCUHeight() >> uiDepth; |
---|
836 | |
---|
837 | Â m_uiCUPelXÂ Â Â Â Â Â =Â pcCU->getCUPelX()Â +Â (Â uhWidth )*(Â uiPartUnitIdx &Â 1Â ); |
---|
838 | Â m_uiCUPelYÂ Â Â Â Â Â =Â pcCU->getCUPelY()Â +Â (Â uhHeight)*(Â uiPartUnitIdx >>Â 1Â ); |
---|
839 | |
---|
840 |  m_dTotalCost     = MAX_DOUBLE; |
---|
841 |  m_uiTotalDistortion = 0; |
---|
842 |  m_uiTotalBits    = 0; |
---|
843 |  m_uiTotalBins    = 0; |
---|
844 |  m_uiNumPartition   = pcCU->getTotalNumPart() >> 2; |
---|
845 | |
---|
846 |  Int iSizeInUchar = sizeof( UChar ) * m_uiNumPartition; |
---|
847 |  Int iSizeInBool = sizeof( Bool  ) * m_uiNumPartition; |
---|
848 |  Int sizeInChar = sizeof( Char ) * m_uiNumPartition; |
---|
849 | |
---|
850 |  memset( m_phQP,       qp, sizeInChar ); |
---|
851 |  memset( m_pbMergeFlag,    0, iSizeInBool ); |
---|
852 |  memset( m_puhMergeIndex,   0, iSizeInUchar ); |
---|
853 | #if NH_3D_VSP |
---|
854 |  memset( m_piVSPFlag,     0, sizeof( Char ) * m_uiNumPartition ); |
---|
855 | #endif |
---|
856 | #if NH_3D_SPIVMP |
---|
857 |  memset( m_pbSPIVMPFlag,    0, sizeof( Bool ) * m_uiNumPartition ); |
---|
858 | #endif |
---|
859 | |
---|
860 |  for (UInt ch=0; ch<MAX_NUM_CHANNEL_TYPE; ch++) |
---|
861 | Â { |
---|
862 |   memset( m_puhIntraDir[ch], ((ch==0) ? DC_IDX : 0), iSizeInUchar ); |
---|
863 | Â } |
---|
864 | |
---|
865 |  memset( m_puhInterDir,    0, iSizeInUchar ); |
---|
866 |  memset( m_puhTrIdx,      0, iSizeInUchar ); |
---|
867 | |
---|
868 | Â for(UInt comp=0;Â comp<MAX_NUM_COMPONENT;Â comp++) |
---|
869 | Â { |
---|
870 |   memset( m_crossComponentPredictionAlpha[comp], 0, iSizeInUchar ); |
---|
871 |   memset( m_puhTransformSkip[comp],       0, iSizeInUchar ); |
---|
872 |   memset( m_puhCbf[comp],            0, iSizeInUchar ); |
---|
873 |   memset( m_explicitRdpcmMode[comp],       NUMBER_OF_RDPCM_MODES, iSizeInUchar ); |
---|
874 | Â } |
---|
875 | |
---|
876 |  memset( m_puhDepth,   uiDepth, iSizeInUchar ); |
---|
877 |  memset( m_puhWidth,     uhWidth, iSizeInUchar ); |
---|
878 |  memset( m_puhHeight,     uhHeight, iSizeInUchar ); |
---|
879 |  memset( m_pbIPCMFlag,    0, iSizeInBool ); |
---|
880 | #if NH_3D_ARP |
---|
881 |  memset( m_puhARPW,      0, iSizeInUchar ); |
---|
882 | #endif |
---|
883 | #if NH_3D_IC |
---|
884 |  memset( m_pbICFlag,     0, iSizeInBool ); |
---|
885 | #endif |
---|
886 | #if NH_3D_DMM |
---|
887 | Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
888 | Â { |
---|
889 |   memset( m_dmmDeltaDC[i][0], 0, sizeof(Pel ) * m_uiNumPartition ); |
---|
890 |   memset( m_dmmDeltaDC[i][1], 0, sizeof(Pel ) * m_uiNumPartition ); |
---|
891 | Â } |
---|
892 |  memset( m_dmm1WedgeTabIdx,  0, sizeof(UInt) * m_uiNumPartition ); |
---|
893 | #endif |
---|
894 | #if NH_3D_SDC_INTRA |
---|
895 |  memset( m_pbSDCFlag,      0, sizeof(Bool) * m_uiNumPartition ); |
---|
896 |  memset( m_apSegmentDCOffset[0], 0, sizeof(Pel) * m_uiNumPartition  ); |
---|
897 |  memset( m_apSegmentDCOffset[1], 0, sizeof(Pel) * m_uiNumPartition  ); |
---|
898 | #endif |
---|
899 | #if NH_3D_DBBP |
---|
900 |  memset( m_pbDBBPFlag,     0, sizeof(Bool) * m_uiNumPartition ); |
---|
901 | #endif |
---|
902 | |
---|
903 |  for (UInt ui = 0; ui < m_uiNumPartition; ui++) |
---|
904 | Â { |
---|
905 | Â Â m_skipFlag[ui]Â Â =Â false; |
---|
906 | #if NH_3D_DIS |
---|
907 | Â Â m_bDISFlag[ui]Â Â =Â false; |
---|
908 | Â Â m_ucDISType[ui]Â =Â 0; |
---|
909 | #endif |
---|
910 | |
---|
911 | Â Â m_pePartSize[ui]Â =Â NUMBER_OF_PART_SIZES; |
---|
912 | Â Â m_pePredMode[ui]Â =Â NUMBER_OF_PREDICTION_MODES; |
---|
913 | Â Â m_CUTransquantBypass[ui]Â =Â false; |
---|
914 | Â Â m_ChromaQpAdj[ui]Â =Â 0; |
---|
915 | |
---|
916 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
917 | Â Â { |
---|
918 |    const RefPicList rpl=RefPicList(i); |
---|
919 | Â Â Â m_apiMVPIdx[rpl][ui]Â =Â -1; |
---|
920 | Â Â Â m_apiMVPNum[rpl][ui]Â =Â -1; |
---|
921 | Â Â } |
---|
922 | #if NH_3D_DIS |
---|
923 | Â Â Â m_bDISFlag[ui]Â Â =Â pcCU->getDISFlag(uiPartOffset+ui); |
---|
924 | Â Â Â m_ucDISType[ui]Â Â =Â pcCU->getDISType(uiPartOffset+ui); |
---|
925 | #endif |
---|
926 | #if NH_3D_VSP |
---|
927 | Â Â m_piVSPFlag[ui]Â =Â pcCU->m_piVSPFlag[uiPartOffset+ui]; |
---|
928 | Â Â m_pDvInfo[Â ui ]Â =Â pcCU->m_pDvInfo[uiPartOffset+ui]; |
---|
929 | #endif |
---|
930 | #if NH_3D_SPIVMP |
---|
931 | Â Â m_pbSPIVMPFlag[ui]=pcCU->m_pbSPIVMPFlag[uiPartOffset+ui]; |
---|
932 | #endif |
---|
933 | #if NH_3D_ARP |
---|
934 | Â Â Â m_puhARPWÂ Â Â Â Â Â [ui]Â =Â pcCU->getARPW(Â uiPartOffset+ui ); |
---|
935 | #endif |
---|
936 | #if NH_3D_IC |
---|
937 |    m_pbICFlag     [ui] = pcCU->m_pbICFlag[uiPartOffset+ui]; |
---|
938 | #endif |
---|
939 | #if NH_3D_DMM |
---|
940 | Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
941 | Â { |
---|
942 | Â Â m_dmmDeltaDC[i][0]Â [ui]Â =Â pcCU->m_dmmDeltaDC[i][0]Â [uiPartOffset+ui]; |
---|
943 | Â Â m_dmmDeltaDC[i][1]Â [ui]Â =Â pcCU->m_dmmDeltaDC[i][1]Â [uiPartOffset+ui]; |
---|
944 | Â } |
---|
945 |  m_dmm1WedgeTabIdx  [ui] = pcCU->m_dmm1WedgeTabIdx [uiPartOffset+ui]; |
---|
946 | #endif |
---|
947 | #if NH_3D_SDC_INTRA |
---|
948 |   m_pbSDCFlag      [ui] = pcCU->m_pbSDCFlag      [ uiPartOffset + ui ]; |
---|
949 | Â Â m_apSegmentDCOffset[0][ui]Â =Â pcCU->m_apSegmentDCOffset[0]Â [Â uiPartOffset +Â ui ]; |
---|
950 | Â Â m_apSegmentDCOffset[1][ui]Â =Â pcCU->m_apSegmentDCOffset[1]Â [Â uiPartOffset +Â ui ]; |
---|
951 | #endif |
---|
952 | #if NH_3D_DBBP |
---|
953 | Â Â Â m_pbDBBPFlag[ui]=pcCU->m_pbDBBPFlag[uiPartOffset+ui]; |
---|
954 | #endif |
---|
955 | Â } |
---|
956 | |
---|
957 |  const UInt numCoeffY  = uhWidth*uhHeight; |
---|
958 |  for (UInt ch=0; ch<MAX_NUM_COMPONENT; ch++) |
---|
959 | Â { |
---|
960 |   const UInt componentShift = m_pcPic->getComponentScaleX(ComponentID(ch)) + m_pcPic->getComponentScaleY(ComponentID(ch)); |
---|
961 |   memset( m_pcTrCoeff[ch], 0, sizeof(TCoeff)*(numCoeffY>>componentShift) ); |
---|
962 | #if ADAPTIVE_QP_SELECTION |
---|
963 |   memset( m_pcArlCoeff[ch], 0, sizeof(TCoeff)*(numCoeffY>>componentShift) ); |
---|
964 | #endif |
---|
965 |   memset( m_pcIPCMSample[ch], 0, sizeof(Pel)* (numCoeffY>>componentShift) ); |
---|
966 | Â } |
---|
967 | |
---|
968 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
969 | Â { |
---|
970 | Â Â m_acCUMvField[i].clearMvField(); |
---|
971 | Â } |
---|
972 | |
---|
973 |  m_pCtuLeft    = pcCU->getCtuLeft(); |
---|
974 |  m_pCtuAbove    = pcCU->getCtuAbove(); |
---|
975 |  m_pCtuAboveLeft  = pcCU->getCtuAboveLeft(); |
---|
976 |  m_pCtuAboveRight = pcCU->getCtuAboveRight(); |
---|
977 | |
---|
978 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
979 | Â { |
---|
980 | Â Â m_apcCUColocated[i]Â =Â pcCU->getCUColocated(RefPicList(i)); |
---|
981 | Â } |
---|
982 | } |
---|
983 | |
---|
984 | Void TComDataCU::setOutsideCUPart( UInt uiAbsPartIdx, UInt uiDepth ) |
---|
985 | { |
---|
986 |  const UInt   uiNumPartition = m_uiNumPartition >> (uiDepth << 1); |
---|
987 |  const UInt   uiSizeInUchar = sizeof( UChar ) * uiNumPartition; |
---|
988 |  const TComSPS &sps      = *(getSlice()->getSPS()); |
---|
989 |  const UChar  uhWidth    = sps.getMaxCUWidth() >> uiDepth; |
---|
990 |  const UChar  uhHeight    = sps.getMaxCUHeight() >> uiDepth; |
---|
991 |  memset( m_puhDepth  + uiAbsPartIdx,   uiDepth, uiSizeInUchar ); |
---|
992 |  memset( m_puhWidth  + uiAbsPartIdx,   uhWidth, uiSizeInUchar ); |
---|
993 |  memset( m_puhHeight  + uiAbsPartIdx,   uhHeight, uiSizeInUchar ); |
---|
994 | } |
---|
995 | |
---|
996 | // -------------------------------------------------------------------------------------------------------------------- |
---|
997 | // Copy |
---|
998 | // -------------------------------------------------------------------------------------------------------------------- |
---|
999 | |
---|
1000 | Void TComDataCU::copySubCU( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
1001 | { |
---|
1002 | Â UInt uiPart =Â uiAbsPartIdx; |
---|
1003 | |
---|
1004 |  m_pcPic       = pcCU->getPic(); |
---|
1005 |  m_pcSlice      = pcCU->getSlice(); |
---|
1006 |  m_ctuRsAddr     = pcCU->getCtuRsAddr(); |
---|
1007 |  m_absZIdxInCtu    = uiAbsPartIdx; |
---|
1008 | |
---|
1009 | Â m_uiCUPelXÂ Â Â Â Â Â =Â pcCU->getCUPelX()Â +Â g_auiRasterToPelX[Â g_auiZscanToRaster[uiAbsPartIdx]Â ]; |
---|
1010 | Â m_uiCUPelYÂ Â Â Â Â Â =Â pcCU->getCUPelY()Â +Â g_auiRasterToPelY[Â g_auiZscanToRaster[uiAbsPartIdx]Â ]; |
---|
1011 | |
---|
1012 | Â m_skipFlag=pcCU->getSkipFlag()Â Â Â Â Â +Â uiPart; |
---|
1013 | #if NH_3D_DIS |
---|
1014 |  m_bDISFlag   = pcCU->getDISFlag()   + uiPart; |
---|
1015 |  m_ucDISType  = pcCU->getDISType()   + uiPart; |
---|
1016 | #endif |
---|
1017 | |
---|
1018 | Â m_phQP=pcCU->getQP()Â Â Â Â Â Â Â Â Â Â +Â uiPart; |
---|
1019 | Â m_ChromaQpAdj =Â pcCU->getChromaQpAdj()Â +Â uiPart; |
---|
1020 | Â m_pePartSize =Â pcCU->getPartitionSize()Â +Â uiPart; |
---|
1021 | Â m_pePredMode=pcCU->getPredictionMode()Â +Â uiPart; |
---|
1022 |  m_CUTransquantBypass = pcCU->getCUTransquantBypass()+uiPart; |
---|
1023 | #if NH_3D_NBDV |
---|
1024 |  m_pDvInfo       = pcCU->getDvInfo()      + uiPart; |
---|
1025 | #endif |
---|
1026 | |
---|
1027 |  m_pbMergeFlag     = pcCU->getMergeFlag()    + uiPart; |
---|
1028 |  m_puhMergeIndex    = pcCU->getMergeIndex()    + uiPart; |
---|
1029 | #if NH_3D_VSP |
---|
1030 |  m_piVSPFlag      = pcCU->getVSPFlag()     + uiPart; |
---|
1031 | #endif |
---|
1032 | #if NH_3D_SPIVMP |
---|
1033 |  m_pbSPIVMPFlag    = pcCU->getSPIVMPFlag()     + uiPart; |
---|
1034 | #endif |
---|
1035 | #if NH_3D_ARP |
---|
1036 | Â m_puhARPWÂ Â Â Â Â Â Â =Â pcCU->getARPW()Â Â Â Â Â Â Â +Â uiPart; |
---|
1037 | #endif |
---|
1038 | #if NH_3D_IC |
---|
1039 |  m_pbICFlag      = pcCU->getICFlag()      + uiPart; |
---|
1040 | #endif |
---|
1041 | |
---|
1042 |  for (UInt ch=0; ch<MAX_NUM_CHANNEL_TYPE; ch++) |
---|
1043 | Â { |
---|
1044 | Â Â m_puhIntraDir[ch]Â Â =Â pcCU->getIntraDir(ChannelType(ch))Â +Â uiPart; |
---|
1045 | Â } |
---|
1046 | |
---|
1047 |  m_puhInterDir     = pcCU->getInterDir()     + uiPart; |
---|
1048 |  m_puhTrIdx      = pcCU->getTransformIdx()   + uiPart; |
---|
1049 | |
---|
1050 | Â for(UInt comp=0;Â comp<MAX_NUM_COMPONENT;Â comp++) |
---|
1051 | Â { |
---|
1052 | Â Â m_crossComponentPredictionAlpha[comp]Â =Â pcCU->getCrossComponentPredictionAlpha(ComponentID(comp))Â +Â uiPart; |
---|
1053 | Â Â m_puhTransformSkip[comp]Â Â Â Â Â Â Â =Â pcCU->getTransformSkip(ComponentID(comp))Â Â Â Â Â Â Â Â Â +Â uiPart; |
---|
1054 | Â Â m_puhCbf[comp]Â Â Â Â Â Â Â Â Â Â Â Â =Â pcCU->getCbf(ComponentID(comp))Â Â Â Â Â Â Â Â Â Â Â Â Â Â +Â uiPart; |
---|
1055 | Â Â m_explicitRdpcmMode[comp]Â Â Â Â Â Â Â =Â pcCU->getExplicitRdpcmMode(ComponentID(comp))Â Â Â Â Â Â Â +Â uiPart; |
---|
1056 | Â } |
---|
1057 | #if NH_3D_DMM |
---|
1058 | Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
1059 | Â { |
---|
1060 |   m_dmmDeltaDC[i][0] = pcCU->getDmmDeltaDC( (DmmID)i, 0 ) + uiPart; |
---|
1061 |   m_dmmDeltaDC[i][1] = pcCU->getDmmDeltaDC( (DmmID)i, 1 ) + uiPart; |
---|
1062 | Â } |
---|
1063 |  m_dmm1WedgeTabIdx  = pcCU->getDmm1WedgeTabIdx() + uiPart; |
---|
1064 | #endif |
---|
1065 | #if NH_3D_SDC_INTRA |
---|
1066 |  m_pbSDCFlag        = pcCU->getSDCFlag()       + uiPart; |
---|
1067 | Â m_apSegmentDCOffset[0]Â Â =Â pcCU->getSDCSegmentDCOffset(0)Â +Â uiPart; |
---|
1068 | Â m_apSegmentDCOffset[1]Â Â =Â pcCU->getSDCSegmentDCOffset(1)Â +Â uiPart; |
---|
1069 | #endif |
---|
1070 | #if NH_3D_DBBP |
---|
1071 |  m_pbDBBPFlag       = pcCU->getDBBPFlag()     + uiPart; |
---|
1072 | #endif |
---|
1073 | |
---|
1074 | Â m_puhDepth=pcCU->getDepth()Â Â Â Â Â Â Â Â Â Â Â +Â uiPart; |
---|
1075 | Â m_puhWidth=pcCU->getWidth()Â Â Â Â Â Â Â Â Â Â Â +Â uiPart; |
---|
1076 | Â m_puhHeight=pcCU->getHeight()Â Â Â Â Â Â Â Â Â Â +Â uiPart; |
---|
1077 | |
---|
1078 |  m_pbIPCMFlag     = pcCU->getIPCMFlag()    + uiPart; |
---|
1079 | |
---|
1080 |  m_pCtuAboveLeft   = pcCU->getCtuAboveLeft(); |
---|
1081 |  m_pCtuAboveRight   = pcCU->getCtuAboveRight(); |
---|
1082 |  m_pCtuAbove     = pcCU->getCtuAbove(); |
---|
1083 |  m_pCtuLeft      = pcCU->getCtuLeft(); |
---|
1084 | |
---|
1085 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
1086 | Â { |
---|
1087 |   const RefPicList rpl=RefPicList(i); |
---|
1088 | Â Â m_apcCUColocated[rpl]Â =Â pcCU->getCUColocated(rpl); |
---|
1089 | Â Â m_apiMVPIdx[rpl]=pcCU->getMVPIdx(rpl)Â +Â uiPart; |
---|
1090 | Â Â m_apiMVPNum[rpl]=pcCU->getMVPNum(rpl)Â +Â uiPart; |
---|
1091 | Â } |
---|
1092 | |
---|
1093 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
1094 | Â { |
---|
1095 |   const RefPicList rpl=RefPicList(i); |
---|
1096 |   m_acCUMvField[rpl].linkToWithOffset( pcCU->getCUMvField(rpl), uiPart ); |
---|
1097 | Â } |
---|
1098 | |
---|
1099 | Â UInt uiMaxCuWidth=pcCU->getSlice()->getSPS()->getMaxCUWidth(); |
---|
1100 | Â UInt uiMaxCuHeight=pcCU->getSlice()->getSPS()->getMaxCUHeight(); |
---|
1101 | |
---|
1102 | Â UInt uiCoffOffset =Â uiMaxCuWidth*uiMaxCuHeight*uiAbsPartIdx/pcCU->getPic()->getNumPartitionsInCtu(); |
---|
1103 | |
---|
1104 |  for (UInt ch=0; ch<MAX_NUM_COMPONENT; ch++) |
---|
1105 | Â { |
---|
1106 |   const ComponentID component = ComponentID(ch); |
---|
1107 |   const UInt componentShift  = m_pcPic->getComponentScaleX(component) + m_pcPic->getComponentScaleY(component); |
---|
1108 |   const UInt offset      = uiCoffOffset >> componentShift; |
---|
1109 | Â Â m_pcTrCoeff[ch]Â =Â pcCU->getCoeff(component)Â +Â offset; |
---|
1110 | #if ADAPTIVE_QP_SELECTION |
---|
1111 | Â Â m_pcArlCoeff[ch]Â =Â pcCU->getArlCoeff(component)Â +Â offset; |
---|
1112 | #endif |
---|
1113 | Â Â m_pcIPCMSample[ch]Â =Â pcCU->getPCMSample(component)Â +Â offset; |
---|
1114 | Â } |
---|
1115 | } |
---|
1116 | |
---|
1117 | #if NH_3D_NBDV |
---|
1118 | Void TComDataCU::copyDVInfoFrom (TComDataCU* pcCU, UInt uiAbsPartIdx) |
---|
1119 | { |
---|
1120 |  m_pDvInfo      = pcCU->getDvInfo()        + uiAbsPartIdx; |
---|
1121 | } |
---|
1122 | #endif |
---|
1123 | |
---|
1124 | // Copy inter prediction info from the biggest CU |
---|
1125 | Void TComDataCU::copyInterPredInfoFrom  ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList |
---|
1126 | #if NH_3D_NBDV |
---|
1127 |  , Bool bNBDV |
---|
1128 | #endif |
---|
1129 | ) |
---|
1130 | { |
---|
1131 |  m_pcPic       = pcCU->getPic(); |
---|
1132 |  m_pcSlice      = pcCU->getSlice(); |
---|
1133 |  m_ctuRsAddr     = pcCU->getCtuRsAddr(); |
---|
1134 |  m_absZIdxInCtu    = uiAbsPartIdx; |
---|
1135 | |
---|
1136 |  Int iRastPartIdx   = g_auiZscanToRaster[uiAbsPartIdx]; |
---|
1137 | Â m_uiCUPelXÂ Â Â Â Â Â =Â pcCU->getCUPelX()Â +Â m_pcPic->getMinCUWidth ()*(Â iRastPartIdx %Â m_pcPic->getNumPartInCtuWidth()Â ); |
---|
1138 | Â m_uiCUPelYÂ Â Â Â Â Â =Â pcCU->getCUPelY()Â +Â m_pcPic->getMinCUHeight()*(Â iRastPartIdx /Â m_pcPic->getNumPartInCtuWidth()Â ); |
---|
1139 | |
---|
1140 |  m_pCtuAboveLeft   = pcCU->getCtuAboveLeft(); |
---|
1141 |  m_pCtuAboveRight   = pcCU->getCtuAboveRight(); |
---|
1142 |  m_pCtuAbove     = pcCU->getCtuAbove(); |
---|
1143 |  m_pCtuLeft      = pcCU->getCtuLeft(); |
---|
1144 | |
---|
1145 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
1146 | Â { |
---|
1147 | Â Â m_apcCUColocated[i]Â =Â pcCU->getCUColocated(RefPicList(i)); |
---|
1148 | Â } |
---|
1149 | |
---|
1150 |  m_skipFlag      = pcCU->getSkipFlag ()       + uiAbsPartIdx; |
---|
1151 | #if NH_3D_DIS |
---|
1152 |  m_bDISFlag      = pcCU->getDISFlag ()       + uiAbsPartIdx; |
---|
1153 |  m_ucDISType     = pcCU->getDISType()        + uiAbsPartIdx; |
---|
1154 | #endif |
---|
1155 | |
---|
1156 |  m_pePartSize     = pcCU->getPartitionSize ()    + uiAbsPartIdx; |
---|
1157 | #if NH_3D_NBDV |
---|
1158 | Â if(bNBDV ==Â true) |
---|
1159 | Â { |
---|
1160 |   m_puhWidth      = pcCU->getWidth ()        + uiAbsPartIdx; |
---|
1161 |   m_puhHeight     = pcCU->getHeight()        + uiAbsPartIdx; |
---|
1162 |   m_puhDepth      = pcCU->getDepth ()        + uiAbsPartIdx; |
---|
1163 | Â } |
---|
1164 | Â else |
---|
1165 | Â { |
---|
1166 | #endif |
---|
1167 |  m_pePredMode     = pcCU->getPredictionMode()    + uiAbsPartIdx; |
---|
1168 |  m_ChromaQpAdj    = pcCU->getChromaQpAdj()      + uiAbsPartIdx; |
---|
1169 | Â m_CUTransquantBypass =Â pcCU->getCUTransquantBypass()Â Â +Â uiAbsPartIdx; |
---|
1170 |  m_puhInterDir    = pcCU->getInterDir   ()    + uiAbsPartIdx; |
---|
1171 | |
---|
1172 |  m_puhDepth      = pcCU->getDepth ()        + uiAbsPartIdx; |
---|
1173 |  m_puhWidth      = pcCU->getWidth ()        + uiAbsPartIdx; |
---|
1174 |  m_puhHeight     = pcCU->getHeight()        + uiAbsPartIdx; |
---|
1175 | |
---|
1176 |  m_pbMergeFlag    = pcCU->getMergeFlag()       + uiAbsPartIdx; |
---|
1177 |  m_puhMergeIndex   = pcCU->getMergeIndex()      + uiAbsPartIdx; |
---|
1178 | #if NH_3D_VSP |
---|
1179 |  m_piVSPFlag     = pcCU->getVSPFlag()        + uiAbsPartIdx; |
---|
1180 |  m_pDvInfo      = pcCU->getDvInfo()        + uiAbsPartIdx; |
---|
1181 | #endif |
---|
1182 | #if NH_3D_SPIVMP |
---|
1183 |  m_pbSPIVMPFlag    = pcCU->getSPIVMPFlag()      + uiAbsPartIdx; |
---|
1184 | #endif |
---|
1185 | |
---|
1186 | Â m_apiMVPIdx[eRefPicList]Â =Â pcCU->getMVPIdx(eRefPicList)Â +Â uiAbsPartIdx; |
---|
1187 | Â m_apiMVPNum[eRefPicList]Â =Â pcCU->getMVPNum(eRefPicList)Â +Â uiAbsPartIdx; |
---|
1188 | #if NH_3D_ARP |
---|
1189 | Â m_puhARPWÂ Â Â Â Â Â =Â pcCU->getARPW()Â Â Â Â Â Â Â Â Â +Â uiAbsPartIdx; |
---|
1190 | #endif  |
---|
1191 | #if NH_3D_DBBP |
---|
1192 |  m_pbDBBPFlag    = pcCU->getDBBPFlag()       + uiAbsPartIdx; |
---|
1193 | #endif |
---|
1194 | |
---|
1195 |  m_acCUMvField[ eRefPicList ].linkToWithOffset( pcCU->getCUMvField(eRefPicList), uiAbsPartIdx ); |
---|
1196 | #if NH_3D_NBDV |
---|
1197 | Â } |
---|
1198 | #endif |
---|
1199 | #if NH_3D_IC |
---|
1200 |  m_pbICFlag      = pcCU->getICFlag()        + uiAbsPartIdx; |
---|
1201 | #endif |
---|
1202 | |
---|
1203 | } |
---|
1204 | |
---|
1205 | // Copy small CU to bigger CU. |
---|
1206 | // One of quarter parts overwritten by predicted sub part. |
---|
1207 | Void TComDataCU::copyPartFrom( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth ) |
---|
1208 | { |
---|
1209 | Â assert(Â uiPartUnitIdx<4Â ); |
---|
1210 | |
---|
1211 |  m_dTotalCost     += pcCU->getTotalCost(); |
---|
1212 |  m_uiTotalDistortion += pcCU->getTotalDistortion(); |
---|
1213 |  m_uiTotalBits    += pcCU->getTotalBits(); |
---|
1214 | |
---|
1215 |  UInt uiOffset     = pcCU->getTotalNumPart()*uiPartUnitIdx; |
---|
1216 |  const UInt numValidComp=pcCU->getPic()->getNumberValidComponents(); |
---|
1217 |  const UInt numValidChan=pcCU->getPic()->getChromaFormat()==CHROMA_400 ? 1:2; |
---|
1218 | |
---|
1219 | Â UInt uiNumPartition =Â pcCU->getTotalNumPart(); |
---|
1220 |  Int iSizeInUchar = sizeof( UChar ) * uiNumPartition; |
---|
1221 |  Int iSizeInBool  = sizeof( Bool ) * uiNumPartition; |
---|
1222 | |
---|
1223 |  Int sizeInChar = sizeof( Char ) * uiNumPartition; |
---|
1224 |  memcpy( m_skipFlag  + uiOffset, pcCU->getSkipFlag(),    sizeof( *m_skipFlag )  * uiNumPartition ); |
---|
1225 | #if NH_3D_DIS |
---|
1226 |  memcpy( m_bDISFlag  + uiOffset, pcCU->getDISFlag(),    sizeof( *m_bDISFlag )  * uiNumPartition ); |
---|
1227 |  memcpy( m_ucDISType + uiOffset, pcCU->getDISType(),    sizeof( *m_ucDISType ) * uiNumPartition); |
---|
1228 | #endif |
---|
1229 |  memcpy( m_phQP    + uiOffset, pcCU->getQP(),       sizeInChar            ); |
---|
1230 |  memcpy( m_pePartSize + uiOffset, pcCU->getPartitionSize(), sizeof( *m_pePartSize ) * uiNumPartition ); |
---|
1231 |  memcpy( m_pePredMode + uiOffset, pcCU->getPredictionMode(), sizeof( *m_pePredMode ) * uiNumPartition ); |
---|
1232 |  memcpy( m_ChromaQpAdj + uiOffset, pcCU->getChromaQpAdj(),  sizeof( *m_ChromaQpAdj ) * uiNumPartition ); |
---|
1233 |  memcpy( m_CUTransquantBypass + uiOffset, pcCU->getCUTransquantBypass(), sizeof( *m_CUTransquantBypass ) * uiNumPartition ); |
---|
1234 |  memcpy( m_pbMergeFlag     + uiOffset, pcCU->getMergeFlag(),     iSizeInBool ); |
---|
1235 |  memcpy( m_puhMergeIndex    + uiOffset, pcCU->getMergeIndex(),    iSizeInUchar ); |
---|
1236 | #if NH_3D_VSP |
---|
1237 |  memcpy( m_piVSPFlag      + uiOffset, pcCU->getVSPFlag(),      sizeof( Char ) * uiNumPartition ); |
---|
1238 |  memcpy( m_pDvInfo       + uiOffset, pcCU->getDvInfo(),      sizeof( *m_pDvInfo ) * uiNumPartition ); |
---|
1239 | #endif |
---|
1240 | #if NH_3D_SPIVMPÂ || NH_3D_DBBP |
---|
1241 |  memcpy( m_pbSPIVMPFlag    + uiOffset, pcCU->getSPIVMPFlag(),    sizeof( Bool ) * uiNumPartition ); |
---|
1242 | #endif |
---|
1243 | |
---|
1244 |  for (UInt ch=0; ch<numValidChan; ch++) |
---|
1245 | Â { |
---|
1246 |   memcpy( m_puhIntraDir[ch]  + uiOffset, pcCU->getIntraDir(ChannelType(ch)), iSizeInUchar ); |
---|
1247 | Â } |
---|
1248 | |
---|
1249 |  memcpy( m_puhInterDir     + uiOffset, pcCU->getInterDir(),     iSizeInUchar ); |
---|
1250 |  memcpy( m_puhTrIdx      + uiOffset, pcCU->getTransformIdx(),   iSizeInUchar ); |
---|
1251 | |
---|
1252 | Â for(UInt comp=0;Â comp<numValidComp;Â comp++) |
---|
1253 | Â { |
---|
1254 |   memcpy( m_crossComponentPredictionAlpha[comp] + uiOffset, pcCU->getCrossComponentPredictionAlpha(ComponentID(comp)), iSizeInUchar ); |
---|
1255 |   memcpy( m_puhTransformSkip[comp]       + uiOffset, pcCU->getTransformSkip(ComponentID(comp))        , iSizeInUchar ); |
---|
1256 |   memcpy( m_puhCbf[comp]            + uiOffset, pcCU->getCbf(ComponentID(comp))             , iSizeInUchar ); |
---|
1257 |   memcpy( m_explicitRdpcmMode[comp]       + uiOffset, pcCU->getExplicitRdpcmMode(ComponentID(comp))      , iSizeInUchar ); |
---|
1258 | Â } |
---|
1259 | #if NH_3D_DMM |
---|
1260 | Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
1261 | Â { |
---|
1262 |   memcpy( m_dmmDeltaDC[i][0] + uiOffset, pcCU->getDmmDeltaDC( (DmmID)i, 0 ), sizeof(Pel ) * uiNumPartition ); |
---|
1263 |   memcpy( m_dmmDeltaDC[i][1] + uiOffset, pcCU->getDmmDeltaDC( (DmmID)i, 1 ), sizeof(Pel ) * uiNumPartition ); |
---|
1264 | Â } |
---|
1265 |  memcpy( m_dmm1WedgeTabIdx  + uiOffset, pcCU->getDmm1WedgeTabIdx(),     sizeof(UInt) * uiNumPartition ); |
---|
1266 | #endif |
---|
1267 | #if NH_3D_SDC_INTRA |
---|
1268 |  memcpy( m_pbSDCFlag       + uiOffset, pcCU->getSDCFlag(), sizeof( *m_pbSDCFlag ) * uiNumPartition ); |
---|
1269 |  memcpy( m_apSegmentDCOffset[0] + uiOffset, pcCU->getSDCSegmentDCOffset(0), sizeof( Pel ) * uiNumPartition); |
---|
1270 |  memcpy( m_apSegmentDCOffset[1] + uiOffset, pcCU->getSDCSegmentDCOffset(1), sizeof( Pel ) * uiNumPartition); |
---|
1271 | #endif |
---|
1272 | #if NH_3D_DBBP |
---|
1273 |  memcpy( m_pbDBBPFlag     + uiOffset, pcCU->getDBBPFlag(),     iSizeInBool ); |
---|
1274 | #endif |
---|
1275 | #if NH_3D_ARP |
---|
1276 |  memcpy( m_puhARPW       + uiOffset, pcCU->getARPW(),       iSizeInUchar ); |
---|
1277 | #endif |
---|
1278 | |
---|
1279 |  memcpy( m_puhDepth + uiOffset, pcCU->getDepth(), iSizeInUchar ); |
---|
1280 |  memcpy( m_puhWidth + uiOffset, pcCU->getWidth(), iSizeInUchar ); |
---|
1281 |  memcpy( m_puhHeight + uiOffset, pcCU->getHeight(), iSizeInUchar ); |
---|
1282 | |
---|
1283 |  memcpy( m_pbIPCMFlag + uiOffset, pcCU->getIPCMFlag(), iSizeInBool ); |
---|
1284 | |
---|
1285 |  m_pCtuAboveLeft   = pcCU->getCtuAboveLeft(); |
---|
1286 |  m_pCtuAboveRight   = pcCU->getCtuAboveRight(); |
---|
1287 |  m_pCtuAbove     = pcCU->getCtuAbove(); |
---|
1288 |  m_pCtuLeft      = pcCU->getCtuLeft(); |
---|
1289 | |
---|
1290 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
1291 | Â { |
---|
1292 |   const RefPicList rpl=RefPicList(i); |
---|
1293 |   memcpy( m_apiMVPIdx[rpl] + uiOffset, pcCU->getMVPIdx(rpl), iSizeInUchar ); |
---|
1294 |   memcpy( m_apiMVPNum[rpl] + uiOffset, pcCU->getMVPNum(rpl), iSizeInUchar ); |
---|
1295 | Â Â m_apcCUColocated[rpl]Â =Â pcCU->getCUColocated(rpl); |
---|
1296 | Â } |
---|
1297 | |
---|
1298 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
1299 | Â { |
---|
1300 |   const RefPicList rpl=RefPicList(i); |
---|
1301 |   m_acCUMvField[rpl].copyFrom( pcCU->getCUMvField( rpl ), pcCU->getTotalNumPart(), uiOffset ); |
---|
1302 | Â } |
---|
1303 | |
---|
1304 |  const UInt numCoeffY = (pcCU->getSlice()->getSPS()->getMaxCUWidth()*pcCU->getSlice()->getSPS()->getMaxCUHeight()) >> (uiDepth<<1); |
---|
1305 |  const UInt offsetY  = uiPartUnitIdx*numCoeffY; |
---|
1306 |  for (UInt ch=0; ch<numValidComp; ch++) |
---|
1307 | Â { |
---|
1308 |   const ComponentID component = ComponentID(ch); |
---|
1309 |   const UInt componentShift  = m_pcPic->getComponentScaleX(component) + m_pcPic->getComponentScaleY(component); |
---|
1310 |   const UInt offset      = offsetY>>componentShift; |
---|
1311 |   memcpy( m_pcTrCoeff [ch] + offset, pcCU->getCoeff(component),  sizeof(TCoeff)*(numCoeffY>>componentShift) ); |
---|
1312 | #if ADAPTIVE_QP_SELECTION |
---|
1313 |   memcpy( m_pcArlCoeff[ch] + offset, pcCU->getArlCoeff(component), sizeof(TCoeff)*(numCoeffY>>componentShift) ); |
---|
1314 | #endif |
---|
1315 |   memcpy( m_pcIPCMSample[ch] + offset, pcCU->getPCMSample(component), sizeof(Pel)*(numCoeffY>>componentShift) ); |
---|
1316 | Â } |
---|
1317 | |
---|
1318 | #if NH_3D_IC |
---|
1319 |  memcpy( m_pbICFlag      + uiOffset, pcCU->getICFlag(),      iSizeInBool ); |
---|
1320 | #endif |
---|
1321 | |
---|
1322 | Â m_uiTotalBins +=Â pcCU->getTotalBins(); |
---|
1323 | } |
---|
1324 | |
---|
1325 | // Copy current predicted part to a CU in picture. |
---|
1326 | // It is used to predict for next part |
---|
1327 | Void TComDataCU::copyToPic(Â UChar uhDepth ) |
---|
1328 | { |
---|
1329 | Â TComDataCU*Â pCtu =Â m_pcPic->getCtu(Â m_ctuRsAddr ); |
---|
1330 |  const UInt numValidComp=pCtu->getPic()->getNumberValidComponents(); |
---|
1331 |  const UInt numValidChan=pCtu->getPic()->getChromaFormat()==CHROMA_400 ? 1:2; |
---|
1332 | |
---|
1333 | Â pCtu->getTotalCost()Â Â Â Â =Â m_dTotalCost; |
---|
1334 | Â pCtu->getTotalDistortion()Â =Â m_uiTotalDistortion; |
---|
1335 | Â pCtu->getTotalBits()Â Â Â Â =Â m_uiTotalBits; |
---|
1336 | |
---|
1337 |  Int iSizeInUchar = sizeof( UChar ) * m_uiNumPartition; |
---|
1338 |  Int iSizeInBool  = sizeof( Bool ) * m_uiNumPartition; |
---|
1339 |  Int sizeInChar = sizeof( Char ) * m_uiNumPartition; |
---|
1340 | |
---|
1341 |  memcpy( pCtu->getSkipFlag() + m_absZIdxInCtu, m_skipFlag, sizeof( *m_skipFlag ) * m_uiNumPartition ); |
---|
1342 | #if NH_3D_DIS |
---|
1343 |  memcpy( pCtu->getDISFlag() + m_absZIdxInCtu, m_bDISFlag, sizeof( *m_bDISFlag ) * m_uiNumPartition ); |
---|
1344 |  memcpy( pCtu->getDISType() + m_absZIdxInCtu, m_ucDISType, sizeof( *m_ucDISType ) * m_uiNumPartition ); |
---|
1345 | #endif |
---|
1346 | |
---|
1347 |  memcpy( pCtu->getQP() + m_absZIdxInCtu, m_phQP, sizeInChar ); |
---|
1348 | #if NH_3D_NBDV |
---|
1349 |  memcpy( pCtu->getDvInfo() + m_absZIdxInCtu, m_pDvInfo, sizeof(* m_pDvInfo) * m_uiNumPartition ); |
---|
1350 | #endif |
---|
1351 | |
---|
1352 |  memcpy( pCtu->getPartitionSize() + m_absZIdxInCtu, m_pePartSize, sizeof( *m_pePartSize ) * m_uiNumPartition ); |
---|
1353 |  memcpy( pCtu->getPredictionMode() + m_absZIdxInCtu, m_pePredMode, sizeof( *m_pePredMode ) * m_uiNumPartition ); |
---|
1354 |  memcpy( pCtu->getChromaQpAdj() + m_absZIdxInCtu, m_ChromaQpAdj, sizeof( *m_ChromaQpAdj ) * m_uiNumPartition ); |
---|
1355 |  memcpy( pCtu->getCUTransquantBypass()+ m_absZIdxInCtu, m_CUTransquantBypass, sizeof( *m_CUTransquantBypass ) * m_uiNumPartition ); |
---|
1356 |  memcpy( pCtu->getMergeFlag()     + m_absZIdxInCtu, m_pbMergeFlag,     iSizeInBool ); |
---|
1357 |  memcpy( pCtu->getMergeIndex()    + m_absZIdxInCtu, m_puhMergeIndex,    iSizeInUchar ); |
---|
1358 | #if NH_3D_VSP |
---|
1359 |  memcpy( pCtu->getVSPFlag()      + m_absZIdxInCtu, m_piVSPFlag,      sizeof( Char ) * m_uiNumPartition ); |
---|
1360 | #endif |
---|
1361 | #if NH_3D_DBBP |
---|
1362 |  memcpy( pCtu->getDvInfo()      + m_absZIdxInCtu, m_pDvInfo,       sizeof( *m_pDvInfo ) * m_uiNumPartition ); |
---|
1363 | #endif |
---|
1364 | #if NH_3D_SPIVMP |
---|
1365 |  memcpy( pCtu->getSPIVMPFlag()    + m_absZIdxInCtu, m_pbSPIVMPFlag,    sizeof( Bool ) * m_uiNumPartition ); |
---|
1366 | #endif |
---|
1367 | |
---|
1368 | for (UInt ch=0; ch<numValidChan; ch++) |
---|
1369 | Â { |
---|
1370 |   memcpy( pCtu->getIntraDir(ChannelType(ch)) + m_absZIdxInCtu, m_puhIntraDir[ch], iSizeInUchar); |
---|
1371 | Â } |
---|
1372 | |
---|
1373 |  memcpy( pCtu->getInterDir()     + m_absZIdxInCtu, m_puhInterDir,     iSizeInUchar ); |
---|
1374 |  memcpy( pCtu->getTransformIdx()   + m_absZIdxInCtu, m_puhTrIdx,      iSizeInUchar ); |
---|
1375 | |
---|
1376 | Â for(UInt comp=0;Â comp<numValidComp;Â comp++) |
---|
1377 | Â { |
---|
1378 |   memcpy( pCtu->getCrossComponentPredictionAlpha(ComponentID(comp)) + m_absZIdxInCtu, m_crossComponentPredictionAlpha[comp], iSizeInUchar ); |
---|
1379 |   memcpy( pCtu->getTransformSkip(ComponentID(comp))         + m_absZIdxInCtu, m_puhTransformSkip[comp],       iSizeInUchar ); |
---|
1380 |   memcpy( pCtu->getCbf(ComponentID(comp))              + m_absZIdxInCtu, m_puhCbf[comp],            iSizeInUchar ); |
---|
1381 |   memcpy( pCtu->getExplicitRdpcmMode(ComponentID(comp))       + m_absZIdxInCtu, m_explicitRdpcmMode[comp],       iSizeInUchar ); |
---|
1382 | Â } |
---|
1383 | |
---|
1384 | #if NH_3D_DMM |
---|
1385 | Â for(Â Int i =Â 0;Â i <Â NUM_DMM;Â i++Â ) |
---|
1386 | Â { |
---|
1387 |   memcpy( pCtu->getDmmDeltaDC( (DmmID)i, 0 ) + m_absZIdxInCtu, m_dmmDeltaDC[i][0], sizeof(Pel ) * m_uiNumPartition ); |
---|
1388 |   memcpy( pCtu->getDmmDeltaDC( (DmmID)i, 1 ) + m_absZIdxInCtu, m_dmmDeltaDC[i][1], sizeof(Pel ) * m_uiNumPartition ); |
---|
1389 | Â } |
---|
1390 |  memcpy( pCtu->getDmm1WedgeTabIdx()      + m_absZIdxInCtu, m_dmm1WedgeTabIdx, sizeof(UInt) * m_uiNumPartition ); |
---|
1391 | #endif |
---|
1392 | #if NH_3D_SDC_INTRA |
---|
1393 |  memcpy( pCtu->getSDCFlag()       + m_absZIdxInCtu, m_pbSDCFlag, sizeof(Bool) * m_uiNumPartition ); |
---|
1394 |  memcpy( pCtu->getSDCSegmentDCOffset(0) + m_absZIdxInCtu, m_apSegmentDCOffset[0], sizeof( Pel ) * m_uiNumPartition); |
---|
1395 |  memcpy( pCtu->getSDCSegmentDCOffset(1) + m_absZIdxInCtu, m_apSegmentDCOffset[1], sizeof( Pel ) * m_uiNumPartition); |
---|
1396 | #endif |
---|
1397 | #if NH_3D_DBBP |
---|
1398 |  memcpy( pCtu->getDBBPFlag()     + m_absZIdxInCtu, m_pbDBBPFlag,     iSizeInBool ); |
---|
1399 | #endif |
---|
1400 | #if NH_3D_ARP |
---|
1401 |  memcpy( pCtu->getARPW()       + m_absZIdxInCtu, m_puhARPW,       iSizeInUchar ); |
---|
1402 | #endif |
---|
1403 | |
---|
1404 |  memcpy( pCtu->getDepth() + m_absZIdxInCtu, m_puhDepth, iSizeInUchar ); |
---|
1405 |  memcpy( pCtu->getWidth() + m_absZIdxInCtu, m_puhWidth, iSizeInUchar ); |
---|
1406 |  memcpy( pCtu->getHeight() + m_absZIdxInCtu, m_puhHeight, iSizeInUchar ); |
---|
1407 | |
---|
1408 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
1409 | Â { |
---|
1410 |   const RefPicList rpl=RefPicList(i); |
---|
1411 |   memcpy( pCtu->getMVPIdx(rpl) + m_absZIdxInCtu, m_apiMVPIdx[rpl], iSizeInUchar ); |
---|
1412 |   memcpy( pCtu->getMVPNum(rpl) + m_absZIdxInCtu, m_apiMVPNum[rpl], iSizeInUchar ); |
---|
1413 | Â } |
---|
1414 | |
---|
1415 | Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
1416 | Â { |
---|
1417 |   const RefPicList rpl=RefPicList(i); |
---|
1418 |   m_acCUMvField[rpl].copyTo( pCtu->getCUMvField( rpl ), m_absZIdxInCtu ); |
---|
1419 | Â } |
---|
1420 | |
---|
1421 |  memcpy( pCtu->getIPCMFlag() + m_absZIdxInCtu, m_pbIPCMFlag,     iSizeInBool ); |
---|
1422 | |
---|
1423 |  const UInt numCoeffY  = (pCtu->getSlice()->getSPS()->getMaxCUWidth()*pCtu->getSlice()->getSPS()->getMaxCUHeight())>>(uhDepth<<1); |
---|
1424 |  const UInt offsetY   = m_absZIdxInCtu*m_pcPic->getMinCUWidth()*m_pcPic->getMinCUHeight(); |
---|
1425 |  for (UInt comp=0; comp<numValidComp; comp++) |
---|
1426 | Â { |
---|
1427 |   const ComponentID component = ComponentID(comp); |
---|
1428 |   const UInt componentShift  = m_pcPic->getComponentScaleX(component) + m_pcPic->getComponentScaleY(component); |
---|
1429 |   memcpy( pCtu->getCoeff(component)  + (offsetY>>componentShift), m_pcTrCoeff[component], sizeof(TCoeff)*(numCoeffY>>componentShift) ); |
---|
1430 | #if ADAPTIVE_QP_SELECTION |
---|
1431 |   memcpy( pCtu->getArlCoeff(component) + (offsetY>>componentShift), m_pcArlCoeff[component], sizeof(TCoeff)*(numCoeffY>>componentShift) ); |
---|
1432 | #endif |
---|
1433 |   memcpy( pCtu->getPCMSample(component) + (offsetY>>componentShift), m_pcIPCMSample[component], sizeof(Pel)*(numCoeffY>>componentShift) ); |
---|
1434 | Â } |
---|
1435 | |
---|
1436 | #if NH_3D_IC |
---|
1437 |  memcpy( pCtu->getICFlag() + m_absZIdxInCtu, m_pbICFlag, sizeof( *m_pbICFlag ) * m_uiNumPartition ); |
---|
1438 | #endif |
---|
1439 | Â pCtu->getTotalBins()Â =Â m_uiTotalBins; |
---|
1440 | } |
---|
1441 | #if H_3D_SPIVMP |
---|
1442 |  memcpy( rpcCU->getSPIVMPFlag()    + uiPartOffset, m_pbSPIVMPFlag,    sizeof(Bool) * uiQNumPart ); |
---|
1443 | #endif |
---|
1444 | |
---|
1445 | |
---|
1446 | |
---|
1447 | // -------------------------------------------------------------------------------------------------------------------- |
---|
1448 | // Other public functions |
---|
1449 | // -------------------------------------------------------------------------------------------------------------------- |
---|
1450 | |
---|
1451 | TComDataCU*Â TComDataCU::getPULeft(Â UInt&Â uiLPartUnitIdx, |
---|
1452 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â UInt uiCurrPartUnitIdx, |
---|
1453 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Bool bEnforceSliceRestriction, |
---|
1454 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Bool bEnforceTileRestriction ) |
---|
1455 | { |
---|
1456 |  UInt uiAbsPartIdx    = g_auiZscanToRaster[uiCurrPartUnitIdx]; |
---|
1457 |  UInt uiAbsZorderCUIdx  = g_auiZscanToRaster[m_absZIdxInCtu]; |
---|
1458 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
1459 | |
---|
1460 |  if ( !RasterAddress::isZeroCol( uiAbsPartIdx, numPartInCtuWidth ) ) |
---|
1461 | Â { |
---|
1462 | Â Â uiLPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdx -Â 1Â ]; |
---|
1463 |   if ( RasterAddress::isEqualCol( uiAbsPartIdx, uiAbsZorderCUIdx, numPartInCtuWidth ) ) |
---|
1464 | Â Â { |
---|
1465 |    return m_pcPic->getCtu( getCtuRsAddr() ); |
---|
1466 | Â Â } |
---|
1467 | Â Â else |
---|
1468 | Â Â { |
---|
1469 | Â Â Â uiLPartUnitIdx -=Â m_absZIdxInCtu; |
---|
1470 |    return this; |
---|
1471 | Â Â } |
---|
1472 | Â } |
---|
1473 | |
---|
1474 | Â uiLPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdx +Â numPartInCtuWidth -Â 1Â ]; |
---|
1475 |  if ( (bEnforceSliceRestriction && !CUIsFromSameSlice(m_pCtuLeft)) || (bEnforceTileRestriction && !CUIsFromSameTile(m_pCtuLeft)) ) |
---|
1476 | Â { |
---|
1477 |   return NULL; |
---|
1478 | Â } |
---|
1479 |  return m_pCtuLeft; |
---|
1480 | } |
---|
1481 | |
---|
1482 | |
---|
1483 | TComDataCU*Â TComDataCU::getPUAbove(Â UInt&Â uiAPartUnitIdx, |
---|
1484 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â UInt uiCurrPartUnitIdx, |
---|
1485 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Bool bEnforceSliceRestriction, |
---|
1486 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Bool planarAtCtuBoundary, |
---|
1487 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Bool bEnforceTileRestriction ) |
---|
1488 | { |
---|
1489 |  UInt uiAbsPartIdx    = g_auiZscanToRaster[uiCurrPartUnitIdx]; |
---|
1490 |  UInt uiAbsZorderCUIdx  = g_auiZscanToRaster[m_absZIdxInCtu]; |
---|
1491 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
1492 | |
---|
1493 |  if ( !RasterAddress::isZeroRow( uiAbsPartIdx, numPartInCtuWidth ) ) |
---|
1494 | Â { |
---|
1495 | Â Â uiAPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdx -Â numPartInCtuWidth ]; |
---|
1496 |   if ( RasterAddress::isEqualRow( uiAbsPartIdx, uiAbsZorderCUIdx, numPartInCtuWidth ) ) |
---|
1497 | Â Â { |
---|
1498 |    return m_pcPic->getCtu( getCtuRsAddr() ); |
---|
1499 | Â Â } |
---|
1500 | Â Â else |
---|
1501 | Â Â { |
---|
1502 | Â Â Â uiAPartUnitIdx -=Â m_absZIdxInCtu; |
---|
1503 |    return this; |
---|
1504 | Â Â } |
---|
1505 | Â } |
---|
1506 | |
---|
1507 | Â if(planarAtCtuBoundary) |
---|
1508 | Â { |
---|
1509 |   return NULL; |
---|
1510 | Â } |
---|
1511 | |
---|
1512 | Â uiAPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdx +Â m_pcPic->getNumPartitionsInCtu()Â -Â numPartInCtuWidth ]; |
---|
1513 | |
---|
1514 |  if ( (bEnforceSliceRestriction && !CUIsFromSameSlice(m_pCtuAbove)) || (bEnforceTileRestriction && !CUIsFromSameTile(m_pCtuAbove)) ) |
---|
1515 | Â { |
---|
1516 |   return NULL; |
---|
1517 | Â } |
---|
1518 |  return m_pCtuAbove; |
---|
1519 | } |
---|
1520 | |
---|
1521 | TComDataCU* TComDataCU::getPUAboveLeft( UInt& uiALPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction ) |
---|
1522 | { |
---|
1523 |  UInt uiAbsPartIdx    = g_auiZscanToRaster[uiCurrPartUnitIdx]; |
---|
1524 |  UInt uiAbsZorderCUIdx  = g_auiZscanToRaster[m_absZIdxInCtu]; |
---|
1525 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
1526 | |
---|
1527 |  if ( !RasterAddress::isZeroCol( uiAbsPartIdx, numPartInCtuWidth ) ) |
---|
1528 | Â { |
---|
1529 |   if ( !RasterAddress::isZeroRow( uiAbsPartIdx, numPartInCtuWidth ) ) |
---|
1530 | Â Â { |
---|
1531 | Â Â Â uiALPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdx -Â numPartInCtuWidth -Â 1Â ]; |
---|
1532 |    if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdx, uiAbsZorderCUIdx, numPartInCtuWidth ) ) |
---|
1533 | Â Â Â { |
---|
1534 |     return m_pcPic->getCtu( getCtuRsAddr() ); |
---|
1535 | Â Â Â } |
---|
1536 | Â Â Â else |
---|
1537 | Â Â Â { |
---|
1538 | Â Â Â Â uiALPartUnitIdx -=Â m_absZIdxInCtu; |
---|
1539 |     return this; |
---|
1540 | Â Â Â } |
---|
1541 | Â Â } |
---|
1542 | Â Â uiALPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdx +Â getPic()->getNumPartitionsInCtu()Â -Â numPartInCtuWidth -Â 1Â ]; |
---|
1543 |   if ( bEnforceSliceRestriction && !CUIsFromSameSliceAndTile(m_pCtuAbove) ) |
---|
1544 | Â Â { |
---|
1545 |    return NULL; |
---|
1546 | Â Â } |
---|
1547 |   return m_pCtuAbove; |
---|
1548 | Â } |
---|
1549 | |
---|
1550 |  if ( !RasterAddress::isZeroRow( uiAbsPartIdx, numPartInCtuWidth ) ) |
---|
1551 | Â { |
---|
1552 | Â Â uiALPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdx -Â 1Â ]; |
---|
1553 |   if ( bEnforceSliceRestriction && !CUIsFromSameSliceAndTile(m_pCtuLeft) ) |
---|
1554 | Â Â { |
---|
1555 |    return NULL; |
---|
1556 | Â Â } |
---|
1557 |   return m_pCtuLeft; |
---|
1558 | Â } |
---|
1559 | |
---|
1560 | Â uiALPartUnitIdx =Â g_auiRasterToZscan[Â m_pcPic->getNumPartitionsInCtu()Â -Â 1Â ]; |
---|
1561 |  if ( bEnforceSliceRestriction && !CUIsFromSameSliceAndTile(m_pCtuAboveLeft) ) |
---|
1562 | Â { |
---|
1563 |   return NULL; |
---|
1564 | Â } |
---|
1565 |  return m_pCtuAboveLeft; |
---|
1566 | } |
---|
1567 | |
---|
1568 | TComDataCU* TComDataCU::getPUBelowLeft(UInt& uiBLPartUnitIdx, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset, Bool bEnforceSliceRestriction) |
---|
1569 | { |
---|
1570 | Â UInt uiAbsPartIdxLBÂ Â Â =Â g_auiZscanToRaster[uiCurrPartUnitIdx]; |
---|
1571 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
1572 | Â UInt uiAbsZorderCUIdxLB =Â g_auiZscanToRaster[Â m_absZIdxInCtu ]Â +Â ((m_puhHeight[0]Â /Â m_pcPic->getMinCUHeight())Â -Â 1)*numPartInCtuWidth; |
---|
1573 | |
---|
1574 | Â if(Â (Â m_pcPic->getCtu(m_ctuRsAddr)->getCUPelY()Â +Â g_auiRasterToPelY[uiAbsPartIdxLB]Â +Â (m_pcPic->getPicSym()->getMinCUHeight()Â *Â uiPartUnitOffset))Â >=Â m_pcSlice->getSPS()->getPicHeightInLumaSamples()) |
---|
1575 | Â { |
---|
1576 | Â Â uiBLPartUnitIdx =Â MAX_UINT; |
---|
1577 |   return NULL; |
---|
1578 | Â } |
---|
1579 | |
---|
1580 |  if ( RasterAddress::lessThanRow( uiAbsPartIdxLB, m_pcPic->getNumPartInCtuHeight() - uiPartUnitOffset, numPartInCtuWidth ) ) |
---|
1581 | Â { |
---|
1582 |   if ( !RasterAddress::isZeroCol( uiAbsPartIdxLB, numPartInCtuWidth ) ) |
---|
1583 | Â Â { |
---|
1584 |    if ( uiCurrPartUnitIdx > g_auiRasterToZscan[ uiAbsPartIdxLB + uiPartUnitOffset * numPartInCtuWidth - 1 ] ) |
---|
1585 | Â Â Â { |
---|
1586 | Â Â Â Â uiBLPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdxLB +Â uiPartUnitOffset *Â numPartInCtuWidth -Â 1Â ]; |
---|
1587 |     if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdxLB, uiAbsZorderCUIdxLB, numPartInCtuWidth ) ) |
---|
1588 | Â Â Â Â { |
---|
1589 |      return m_pcPic->getCtu( getCtuRsAddr() ); |
---|
1590 | Â Â Â Â } |
---|
1591 | Â Â Â Â else |
---|
1592 | Â Â Â Â { |
---|
1593 | Â Â Â Â Â uiBLPartUnitIdx -=Â m_absZIdxInCtu; |
---|
1594 |      return this; |
---|
1595 | Â Â Â Â } |
---|
1596 | Â Â Â } |
---|
1597 | Â Â Â uiBLPartUnitIdx =Â MAX_UINT; |
---|
1598 |    return NULL; |
---|
1599 | Â Â } |
---|
1600 | Â Â uiBLPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdxLB +Â (1+uiPartUnitOffset)Â *Â numPartInCtuWidth -Â 1Â ]; |
---|
1601 |   if ( bEnforceSliceRestriction && !CUIsFromSameSliceAndTile(m_pCtuLeft) ) |
---|
1602 | Â Â { |
---|
1603 |    return NULL; |
---|
1604 | Â Â } |
---|
1605 |   return m_pCtuLeft; |
---|
1606 | Â } |
---|
1607 | |
---|
1608 | Â uiBLPartUnitIdx =Â MAX_UINT; |
---|
1609 |  return NULL; |
---|
1610 | } |
---|
1611 | |
---|
1612 | TComDataCU* TComDataCU::getPUAboveRight(UInt& uiARPartUnitIdx, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset, Bool bEnforceSliceRestriction) |
---|
1613 | { |
---|
1614 | Â UInt uiAbsPartIdxRTÂ Â Â =Â g_auiZscanToRaster[uiCurrPartUnitIdx]; |
---|
1615 |  UInt uiAbsZorderCUIdx  = g_auiZscanToRaster[ m_absZIdxInCtu ] + (m_puhWidth[0] / m_pcPic->getMinCUWidth()) - 1; |
---|
1616 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
1617 | |
---|
1618 | Â if(Â (Â m_pcPic->getCtu(m_ctuRsAddr)->getCUPelX()Â +Â g_auiRasterToPelX[uiAbsPartIdxRT]Â +Â (m_pcPic->getPicSym()->getMinCUHeight()Â *Â uiPartUnitOffset))Â >=Â m_pcSlice->getSPS()->getPicWidthInLumaSamples()Â ) |
---|
1619 | Â { |
---|
1620 | Â Â uiARPartUnitIdx =Â MAX_UINT; |
---|
1621 |   return NULL; |
---|
1622 | Â } |
---|
1623 | |
---|
1624 |  if ( RasterAddress::lessThanCol( uiAbsPartIdxRT, numPartInCtuWidth - uiPartUnitOffset, numPartInCtuWidth ) ) |
---|
1625 | Â { |
---|
1626 |   if ( !RasterAddress::isZeroRow( uiAbsPartIdxRT, numPartInCtuWidth ) ) |
---|
1627 | Â Â { |
---|
1628 |    if ( uiCurrPartUnitIdx > g_auiRasterToZscan[ uiAbsPartIdxRT - numPartInCtuWidth + uiPartUnitOffset ] ) |
---|
1629 | Â Â Â { |
---|
1630 | Â Â Â Â uiARPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdxRT -Â numPartInCtuWidth +Â uiPartUnitOffset ]; |
---|
1631 |     if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdxRT, uiAbsZorderCUIdx, numPartInCtuWidth ) ) |
---|
1632 | Â Â Â Â { |
---|
1633 |      return m_pcPic->getCtu( getCtuRsAddr() ); |
---|
1634 | Â Â Â Â } |
---|
1635 | Â Â Â Â else |
---|
1636 | Â Â Â Â { |
---|
1637 | Â Â Â Â Â uiARPartUnitIdx -=Â m_absZIdxInCtu; |
---|
1638 |      return this; |
---|
1639 | Â Â Â Â } |
---|
1640 | Â Â Â } |
---|
1641 | Â Â Â uiARPartUnitIdx =Â MAX_UINT; |
---|
1642 |    return NULL; |
---|
1643 | Â Â } |
---|
1644 | |
---|
1645 | Â Â uiARPartUnitIdx =Â g_auiRasterToZscan[Â uiAbsPartIdxRT +Â m_pcPic->getNumPartitionsInCtu()Â -Â numPartInCtuWidth +Â uiPartUnitOffset ]; |
---|
1646 |   if ( bEnforceSliceRestriction && !CUIsFromSameSliceAndTile(m_pCtuAbove) ) |
---|
1647 | Â Â { |
---|
1648 |    return NULL; |
---|
1649 | Â Â } |
---|
1650 |   return m_pCtuAbove; |
---|
1651 | Â } |
---|
1652 | |
---|
1653 |  if ( !RasterAddress::isZeroRow( uiAbsPartIdxRT, numPartInCtuWidth ) ) |
---|
1654 | Â { |
---|
1655 | Â Â uiARPartUnitIdx =Â MAX_UINT; |
---|
1656 |   return NULL; |
---|
1657 | Â } |
---|
1658 | |
---|
1659 | Â uiARPartUnitIdx =Â g_auiRasterToZscan[Â m_pcPic->getNumPartitionsInCtu()Â -Â numPartInCtuWidth +Â uiPartUnitOffset-1Â ]; |
---|
1660 |  if ( bEnforceSliceRestriction && !CUIsFromSameSliceAndTile(m_pCtuAboveRight) ) |
---|
1661 | Â { |
---|
1662 |   return NULL; |
---|
1663 | Â } |
---|
1664 |  return m_pCtuAboveRight; |
---|
1665 | } |
---|
1666 | |
---|
1667 | /** Get left QpMinCu |
---|
1668 | *\param  uiLPartUnitIdx |
---|
1669 | *\param  uiCurrAbsIdxInCtu |
---|
1670 | *\returns TComDataCU*Â Â point of TComDataCU of left QpMinCu |
---|
1671 | */ |
---|
1672 | TComDataCU* TComDataCU::getQpMinCuLeft( UInt& uiLPartUnitIdx, UInt uiCurrAbsIdxInCtu ) |
---|
1673 | { |
---|
1674 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
1675 |  const UInt maxCUDepth    = getSlice()->getSPS()->getMaxTotalCUDepth(); |
---|
1676 |  const UInt maxCuDQPDepth   = getSlice()->getPPS()->getMaxCuDQPDepth(); |
---|
1677 |  const UInt doubleDepthDifference = ((maxCUDepth - maxCuDQPDepth)<<1); |
---|
1678 | Â UInt absZorderQpMinCUIdx =Â (uiCurrAbsIdxInCtu>>doubleDepthDifference)<<doubleDepthDifference; |
---|
1679 | Â UInt absRorderQpMinCUIdx =Â g_auiZscanToRaster[absZorderQpMinCUIdx]; |
---|
1680 | |
---|
1681 | Â // check for left CTU boundary |
---|
1682 |  if ( RasterAddress::isZeroCol(absRorderQpMinCUIdx, numPartInCtuWidth) ) |
---|
1683 | Â { |
---|
1684 |   return NULL; |
---|
1685 | Â } |
---|
1686 | |
---|
1687 | Â // get index of left-CU relative to top-left corner of current quantization group |
---|
1688 | Â uiLPartUnitIdx =Â g_auiRasterToZscan[absRorderQpMinCUIdx -Â 1]; |
---|
1689 | |
---|
1690 | Â // return pointer to current CTU |
---|
1691 |  return m_pcPic->getCtu( getCtuRsAddr() ); |
---|
1692 | } |
---|
1693 | |
---|
1694 | /** Get Above QpMinCu |
---|
1695 | *\param  uiAPartUnitIdx |
---|
1696 | *\param  uiCurrAbsIdxInCtu |
---|
1697 | *\returns TComDataCU*Â Â point of TComDataCU of above QpMinCu |
---|
1698 | */ |
---|
1699 | TComDataCU* TComDataCU::getQpMinCuAbove( UInt& uiAPartUnitIdx, UInt uiCurrAbsIdxInCtu ) |
---|
1700 | { |
---|
1701 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
1702 |  const UInt maxCUDepth    = getSlice()->getSPS()->getMaxTotalCUDepth(); |
---|
1703 |  const UInt maxCuDQPDepth   = getSlice()->getPPS()->getMaxCuDQPDepth(); |
---|
1704 |  const UInt doubleDepthDifference = ((maxCUDepth - maxCuDQPDepth)<<1); |
---|
1705 | Â UInt absZorderQpMinCUIdx =Â (uiCurrAbsIdxInCtu>>doubleDepthDifference)<<doubleDepthDifference; |
---|
1706 | Â UInt absRorderQpMinCUIdx =Â g_auiZscanToRaster[absZorderQpMinCUIdx]; |
---|
1707 | |
---|
1708 | Â // check for top CTU boundary |
---|
1709 |  if ( RasterAddress::isZeroRow( absRorderQpMinCUIdx, numPartInCtuWidth) ) |
---|
1710 | Â { |
---|
1711 |   return NULL; |
---|
1712 | Â } |
---|
1713 | |
---|
1714 | Â // get index of top-CU relative to top-left corner of current quantization group |
---|
1715 | Â uiAPartUnitIdx =Â g_auiRasterToZscan[absRorderQpMinCUIdx -Â numPartInCtuWidth]; |
---|
1716 | |
---|
1717 | Â // return pointer to current CTU |
---|
1718 |  return m_pcPic->getCtu( getCtuRsAddr() ); |
---|
1719 | } |
---|
1720 | |
---|
1721 | |
---|
1722 | |
---|
1723 | /** Get reference QP from left QpMinCu or latest coded QP |
---|
1724 | *\param  uiCurrAbsIdxInCtu |
---|
1725 | *\returns Char  reference QP value |
---|
1726 | */ |
---|
1727 | Char TComDataCU::getRefQP(Â UInt uiCurrAbsIdxInCtu ) |
---|
1728 | { |
---|
1729 | Â UInt lPartIdx =Â MAX_UINT; |
---|
1730 | Â UInt aPartIdx =Â MAX_UINT; |
---|
1731 |  TComDataCU* cULeft = getQpMinCuLeft ( lPartIdx, m_absZIdxInCtu + uiCurrAbsIdxInCtu ); |
---|
1732 |  TComDataCU* cUAbove = getQpMinCuAbove( aPartIdx, m_absZIdxInCtu + uiCurrAbsIdxInCtu ); |
---|
1733 |  return (((cULeft? cULeft->getQP( lPartIdx ): getLastCodedQP( uiCurrAbsIdxInCtu )) + (cUAbove? cUAbove->getQP( aPartIdx ): getLastCodedQP( uiCurrAbsIdxInCtu )) + 1) >> 1); |
---|
1734 | } |
---|
1735 | |
---|
1736 | Int TComDataCU::getLastValidPartIdx(Â Int iAbsPartIdx ) |
---|
1737 | { |
---|
1738 | Â Int iLastValidPartIdx =Â iAbsPartIdx-1; |
---|
1739 |  while ( iLastValidPartIdx >= 0 |
---|
1740 | Â Â Â Â &&Â getPredictionMode(Â iLastValidPartIdx )Â ==Â NUMBER_OF_PREDICTION_MODES ) |
---|
1741 | Â { |
---|
1742 | Â Â UInt uiDepth =Â getDepth(Â iLastValidPartIdx ); |
---|
1743 | Â Â iLastValidPartIdx -=Â m_uiNumPartition>>(uiDepth<<1); |
---|
1744 | Â } |
---|
1745 |  return iLastValidPartIdx; |
---|
1746 | } |
---|
1747 | |
---|
1748 | Char TComDataCU::getLastCodedQP(Â UInt uiAbsPartIdx ) |
---|
1749 | { |
---|
1750 | Â UInt uiQUPartIdxMask =Â ~((1<<((getSlice()->getSPS()->getMaxTotalCUDepth()Â -Â getSlice()->getPPS()->getMaxCuDQPDepth())<<1))-1); |
---|
1751 | Â Int iLastValidPartIdx =Â getLastValidPartIdx(Â uiAbsPartIdx&uiQUPartIdxMask );Â // A idx will be invalid if it is off the right or bottom edge of the picture. |
---|
1752 | Â // If this CU is in the first CTU of the slice and there is no valid part before this one, use slice QP |
---|
1753 |  if ( getPic()->getPicSym()->getCtuTsToRsAddrMap(getSlice()->getSliceCurStartCtuTsAddr()) == getCtuRsAddr() && Int(getZorderIdxInCtu())+iLastValidPartIdx<0) |
---|
1754 | Â { |
---|
1755 |   return getSlice()->getSliceQp(); |
---|
1756 | Â } |
---|
1757 |  else if ( iLastValidPartIdx >= 0 ) |
---|
1758 | Â { |
---|
1759 | Â Â // If there is a valid part within the current Sub-CU, use it |
---|
1760 |   return getQP( iLastValidPartIdx ); |
---|
1761 | Â } |
---|
1762 | Â else |
---|
1763 | Â { |
---|
1764 |   if ( getZorderIdxInCtu() > 0 ) |
---|
1765 | Â Â { |
---|
1766 | Â Â Â // If this wasn't the first sub-cu within the Ctu, explore the CTU itself. |
---|
1767 |    return getPic()->getCtu( getCtuRsAddr() )->getLastCodedQP( getZorderIdxInCtu() ); // TODO - remove this recursion |
---|
1768 | Â Â } |
---|
1769 |   else if ( getPic()->getPicSym()->getCtuRsToTsAddrMap(getCtuRsAddr()) > 0 |
---|
1770 | Â Â Â &&Â CUIsFromSameSliceTileAndWavefrontRow(getPic()->getCtu(getPic()->getPicSym()->getCtuTsToRsAddrMap(getPic()->getPicSym()->getCtuRsToTsAddrMap(getCtuRsAddr())-1)))Â ) |
---|
1771 | Â Â { |
---|
1772 | Â Â Â // If this isn't the first Ctu (how can it be due to the first 'if'?), and the previous Ctu is from the same tile, examine the previous Ctu. |
---|
1773 |    return getPic()->getCtu( getPic()->getPicSym()->getCtuTsToRsAddrMap(getPic()->getPicSym()->getCtuRsToTsAddrMap(getCtuRsAddr())-1) )->getLastCodedQP( getPic()->getNumPartitionsInCtu() ); // TODO - remove this recursion |
---|
1774 | Â Â } |
---|
1775 | Â Â else |
---|
1776 | Â Â { |
---|
1777 | Â Â Â // No other options available - use the slice-level QP. |
---|
1778 |    return getSlice()->getSliceQp(); |
---|
1779 | Â Â } |
---|
1780 | Â } |
---|
1781 | } |
---|
1782 | |
---|
1783 | |
---|
1784 | /** Check whether the CU is coded in lossless coding mode. |
---|
1785 |  * \param  absPartIdx |
---|
1786 | Â * \returns true if the CU is coded in lossless coding mode; false if otherwise |
---|
1787 | Â */ |
---|
1788 | Bool TComDataCU::isLosslessCoded(UInt absPartIdx) |
---|
1789 | { |
---|
1790 |  return (getSlice()->getPPS()->getTransquantBypassEnableFlag() && getCUTransquantBypass (absPartIdx)); |
---|
1791 | } |
---|
1792 | |
---|
1793 | |
---|
1794 | /** Get allowed chroma intra modes |
---|
1795 | *Â Â - fills uiModeList with chroma intra modes |
---|
1796 | * |
---|
1797 | *\param  [in] uiAbsPartIdx |
---|
1798 | *\param  [out] uiModeList pointer to chroma intra modes array |
---|
1799 | */ |
---|
1800 | Void TComDataCU::getAllowedChromaDir( UInt uiAbsPartIdx, UInt uiModeList[NUM_CHROMA_MODE] ) |
---|
1801 | { |
---|
1802 | Â uiModeList[0]Â =Â PLANAR_IDX; |
---|
1803 | Â uiModeList[1]Â =Â VER_IDX; |
---|
1804 | Â uiModeList[2]Â =Â HOR_IDX; |
---|
1805 | Â uiModeList[3]Â =Â DC_IDX; |
---|
1806 | Â uiModeList[4]Â =Â DM_CHROMA_IDX; |
---|
1807 | Â assert(4<NUM_CHROMA_MODE); |
---|
1808 | |
---|
1809 |  UInt uiLumaMode = getIntraDir( CHANNEL_TYPE_LUMA, uiAbsPartIdx ); |
---|
1810 | |
---|
1811 | Â for(Â Int i =Â 0;Â i <Â NUM_CHROMA_MODE -Â 1;Â i++Â ) |
---|
1812 | Â { |
---|
1813 | Â Â if(Â uiLumaMode ==Â uiModeList[i]Â ) |
---|
1814 | Â Â { |
---|
1815 | Â Â Â uiModeList[i]Â =Â 34;Â // VER+8 mode |
---|
1816 | Â Â Â break; |
---|
1817 | Â Â } |
---|
1818 | Â } |
---|
1819 | } |
---|
1820 | |
---|
1821 | /** Get most probable intra modes |
---|
1822 | *\param  uiAbsPartIdx  partition index |
---|
1823 | *\param  uiIntraDirPred pointer to the array for MPM storage |
---|
1824 | *\param  compID     colour component ID |
---|
1825 | *\param  piMode     it is set with MPM mode in case both MPM are equal. It is used to restrict RD search at encode side. |
---|
1826 | *\returns Number of MPM |
---|
1827 | */ |
---|
1828 | Void TComDataCU::getIntraDirPredictor( UInt uiAbsPartIdx, Int uiIntraDirPred[NUM_MOST_PROBABLE_MODES], const ComponentID compID, Int* piMode ) |
---|
1829 | { |
---|
1830 |  TComDataCU* pcCULeft, *pcCUAbove; |
---|
1831 |  UInt    LeftPartIdx = MAX_UINT; |
---|
1832 |  UInt    AbovePartIdx = MAX_UINT; |
---|
1833 |  Int     iLeftIntraDir, iAboveIntraDir; |
---|
1834 |  const TComSPS *sps=getSlice()->getSPS(); |
---|
1835 |  const UInt partsPerMinCU = 1<<(2*(sps->getMaxTotalCUDepth() - sps->getLog2DiffMaxMinCodingBlockSize())); |
---|
1836 | |
---|
1837 |  const ChannelType chType = toChannelType(compID); |
---|
1838 |  const ChromaFormat chForm = getPic()->getChromaFormat(); |
---|
1839 | Â // Get intra direction of left PU |
---|
1840 |  pcCULeft = getPULeft( LeftPartIdx, m_absZIdxInCtu + uiAbsPartIdx ); |
---|
1841 | |
---|
1842 |  if (isChroma(compID)) |
---|
1843 | Â { |
---|
1844 |   LeftPartIdx = getChromasCorrespondingPULumaIdx(LeftPartIdx, chForm, partsPerMinCU); |
---|
1845 | Â } |
---|
1846 |  iLeftIntraDir = pcCULeft ? ( pcCULeft->isIntra( LeftPartIdx ) ? pcCULeft->getIntraDir( chType, LeftPartIdx ) : DC_IDX ) : DC_IDX; |
---|
1847 | #if NH_3D_DMM |
---|
1848 | Â mapDmmToIntraDir(Â iLeftIntraDir ); |
---|
1849 | #endif |
---|
1850 | |
---|
1851 | Â // Get intra direction of above PU |
---|
1852 |  pcCUAbove = getPUAbove( AbovePartIdx, m_absZIdxInCtu + uiAbsPartIdx, true, true ); |
---|
1853 | |
---|
1854 |  if (isChroma(compID)) |
---|
1855 | Â { |
---|
1856 |   AbovePartIdx = getChromasCorrespondingPULumaIdx(AbovePartIdx, chForm, partsPerMinCU); |
---|
1857 | Â } |
---|
1858 |  iAboveIntraDir = pcCUAbove ? ( pcCUAbove->isIntra( AbovePartIdx ) ? pcCUAbove->getIntraDir( chType, AbovePartIdx ) : DC_IDX ) : DC_IDX; |
---|
1859 | #if NH_3D_DMM |
---|
1860 | Â mapDmmToIntraDir(Â iAboveIntraDir ); |
---|
1861 | #endif |
---|
1862 | |
---|
1863 | |
---|
1864 |  if (isChroma(chType)) |
---|
1865 | Â { |
---|
1866 |   if (iLeftIntraDir == DM_CHROMA_IDX) |
---|
1867 | Â Â { |
---|
1868 |    iLeftIntraDir = pcCULeft-> getIntraDir( CHANNEL_TYPE_LUMA, LeftPartIdx ); |
---|
1869 | Â Â } |
---|
1870 |   if (iAboveIntraDir == DM_CHROMA_IDX) |
---|
1871 | Â Â { |
---|
1872 |    iAboveIntraDir = pcCUAbove->getIntraDir( CHANNEL_TYPE_LUMA, AbovePartIdx ); |
---|
1873 | Â Â } |
---|
1874 | Â } |
---|
1875 | |
---|
1876 | Â assert (2<NUM_MOST_PROBABLE_MODES); |
---|
1877 | Â if(iLeftIntraDir ==Â iAboveIntraDir) |
---|
1878 | Â { |
---|
1879 | Â Â if(Â piMode ) |
---|
1880 | Â Â { |
---|
1881 | Â Â Â *piMode =Â 1; |
---|
1882 | Â Â } |
---|
1883 | |
---|
1884 |   if (iLeftIntraDir > 1) // angular modes |
---|
1885 | Â Â { |
---|
1886 | Â Â Â uiIntraDirPred[0]Â =Â iLeftIntraDir; |
---|
1887 | Â Â Â uiIntraDirPred[1]Â =Â ((iLeftIntraDir +Â 29)Â %Â 32)Â +Â 2; |
---|
1888 | Â Â Â uiIntraDirPred[2]Â =Â ((iLeftIntraDir -Â 1Â )Â %Â 32)Â +Â 2; |
---|
1889 | Â Â } |
---|
1890 |   else //non-angular |
---|
1891 | Â Â { |
---|
1892 | Â Â Â uiIntraDirPred[0]Â =Â PLANAR_IDX; |
---|
1893 | Â Â Â uiIntraDirPred[1]Â =Â DC_IDX; |
---|
1894 | Â Â Â uiIntraDirPred[2]Â =Â VER_IDX; |
---|
1895 | Â Â } |
---|
1896 | Â } |
---|
1897 | Â else |
---|
1898 | Â { |
---|
1899 | Â Â if(Â piMode ) |
---|
1900 | Â Â { |
---|
1901 | Â Â Â *piMode =Â 2; |
---|
1902 | Â Â } |
---|
1903 | Â Â uiIntraDirPred[0]Â =Â iLeftIntraDir; |
---|
1904 | Â Â uiIntraDirPred[1]Â =Â iAboveIntraDir; |
---|
1905 | |
---|
1906 |   if (iLeftIntraDir && iAboveIntraDir ) //both modes are non-planar |
---|
1907 | Â Â { |
---|
1908 | Â Â Â uiIntraDirPred[2]Â =Â PLANAR_IDX; |
---|
1909 | Â Â } |
---|
1910 | Â Â else |
---|
1911 | Â Â { |
---|
1912 |    uiIntraDirPred[2] = (iLeftIntraDir+iAboveIntraDir)<2? VER_IDX : DC_IDX; |
---|
1913 | Â Â } |
---|
1914 | Â } |
---|
1915 |  for (UInt i=0; i<NUM_MOST_PROBABLE_MODES; i++) |
---|
1916 | Â { |
---|
1917 | Â Â assert(uiIntraDirPred[i]Â <Â 35); |
---|
1918 | Â } |
---|
1919 | } |
---|
1920 | |
---|
1921 | UInt TComDataCU::getCtxSplitFlag( UInt uiAbsPartIdx, UInt uiDepth ) |
---|
1922 | { |
---|
1923 | Â TComDataCU*Â pcTempCU; |
---|
1924 |  UInt    uiTempPartIdx; |
---|
1925 |  UInt    uiCtx; |
---|
1926 | Â // Get left split flag |
---|
1927 |  pcTempCU = getPULeft( uiTempPartIdx, m_absZIdxInCtu + uiAbsPartIdx ); |
---|
1928 |  uiCtx = ( pcTempCU ) ? ( ( pcTempCU->getDepth( uiTempPartIdx ) > uiDepth ) ? 1 : 0 ) : 0; |
---|
1929 | |
---|
1930 | Â // Get above split flag |
---|
1931 |  pcTempCU = getPUAbove( uiTempPartIdx, m_absZIdxInCtu + uiAbsPartIdx ); |
---|
1932 |  uiCtx += ( pcTempCU ) ? ( ( pcTempCU->getDepth( uiTempPartIdx ) > uiDepth ) ? 1 : 0 ) : 0; |
---|
1933 | |
---|
1934 |  return uiCtx; |
---|
1935 | } |
---|
1936 | |
---|
1937 | UInt TComDataCU::getCtxQtCbf( TComTU &rTu, const ChannelType chType ) |
---|
1938 | { |
---|
1939 |  const UInt transformDepth = rTu.GetTransformDepthRel(); |
---|
1940 | |
---|
1941 |  if (isChroma(chType)) |
---|
1942 | Â { |
---|
1943 |   return transformDepth; |
---|
1944 | Â } |
---|
1945 | Â else |
---|
1946 | Â { |
---|
1947 |   const UInt uiCtx = ( transformDepth == 0 ? 1 : 0 ); |
---|
1948 |   return uiCtx; |
---|
1949 | Â } |
---|
1950 | } |
---|
1951 | |
---|
1952 | UInt TComDataCU::getQuadtreeTULog2MinSizeInCU(Â UInt absPartIdx ) |
---|
1953 | { |
---|
1954 | Â UInt log2CbSize =Â g_aucConvertToBit[getWidth(Â absPartIdx )]Â +Â 2; |
---|
1955 |  PartSize partSize = getPartitionSize( absPartIdx ); |
---|
1956 |  UInt quadtreeTUMaxDepth = isIntra( absPartIdx ) ? m_pcSlice->getSPS()->getQuadtreeTUMaxDepthIntra() : m_pcSlice->getSPS()->getQuadtreeTUMaxDepthInter(); |
---|
1957 |  Int intraSplitFlag = ( isIntra( absPartIdx ) && partSize == SIZE_NxN ) ? 1 : 0; |
---|
1958 | Â Int interSplitFlag =Â ((quadtreeTUMaxDepth ==Â 1)Â &&Â isInter(Â absPartIdx )Â &&Â (partSize !=Â SIZE_2Nx2N)Â ); |
---|
1959 | |
---|
1960 | Â UInt log2MinTUSizeInCU =Â 0; |
---|
1961 |  if (log2CbSize < (m_pcSlice->getSPS()->getQuadtreeTULog2MinSize() + quadtreeTUMaxDepth - 1 + interSplitFlag + intraSplitFlag) ) |
---|
1962 | Â { |
---|
1963 | Â Â // when fully making use of signaled TUMaxDepth + inter/intraSplitFlag, resulting luma TB size is < QuadtreeTULog2MinSize |
---|
1964 | Â Â log2MinTUSizeInCU =Â m_pcSlice->getSPS()->getQuadtreeTULog2MinSize(); |
---|
1965 | Â } |
---|
1966 | Â else |
---|
1967 | Â { |
---|
1968 | Â Â // when fully making use of signaled TUMaxDepth + inter/intraSplitFlag, resulting luma TB size is still >= QuadtreeTULog2MinSize |
---|
1969 | Â Â log2MinTUSizeInCU =Â log2CbSize -Â (Â quadtreeTUMaxDepth -Â 1Â +Â interSplitFlag +Â intraSplitFlag);Â // stop when trafoDepth == hierarchy_depth = splitFlag |
---|
1970 |   if ( log2MinTUSizeInCU > m_pcSlice->getSPS()->getQuadtreeTULog2MaxSize()) |
---|
1971 | Â Â { |
---|
1972 | Â Â Â // when fully making use of signaled TUMaxDepth + inter/intraSplitFlag, resulting luma TB size is still > QuadtreeTULog2MaxSize |
---|
1973 | Â Â Â log2MinTUSizeInCU =Â m_pcSlice->getSPS()->getQuadtreeTULog2MaxSize(); |
---|
1974 | Â Â } |
---|
1975 | Â } |
---|
1976 |  return log2MinTUSizeInCU; |
---|
1977 | } |
---|
1978 | |
---|
1979 | UInt TComDataCU::getCtxSkipFlag(Â UInt uiAbsPartIdx ) |
---|
1980 | { |
---|
1981 | Â TComDataCU*Â pcTempCU; |
---|
1982 |  UInt    uiTempPartIdx; |
---|
1983 |  UInt    uiCtx = 0; |
---|
1984 | |
---|
1985 | Â // Get BCBP of left PU |
---|
1986 |  pcTempCU = getPULeft( uiTempPartIdx, m_absZIdxInCtu + uiAbsPartIdx ); |
---|
1987 |  uiCtx  = ( pcTempCU ) ? pcTempCU->isSkipped( uiTempPartIdx ) : 0; |
---|
1988 | |
---|
1989 | Â // Get BCBP of above PU |
---|
1990 |  pcTempCU = getPUAbove( uiTempPartIdx, m_absZIdxInCtu + uiAbsPartIdx ); |
---|
1991 |  uiCtx  += ( pcTempCU ) ? pcTempCU->isSkipped( uiTempPartIdx ) : 0; |
---|
1992 | |
---|
1993 |  return uiCtx; |
---|
1994 | } |
---|
1995 | #if NH_3D_ARP |
---|
1996 | UInt TComDataCU::getCTXARPWFlag(Â UInt uiAbsPartIdx ) |
---|
1997 | { |
---|
1998 | Â TComDataCU*Â pcTempCU; |
---|
1999 |  UInt    uiTempPartIdx; |
---|
2000 |  UInt    uiCtx = 0; |
---|
2001 | Â |
---|
2002 |  pcTempCU = getPULeft( uiTempPartIdx, m_absZIdxInCtu + uiAbsPartIdx ); |
---|
2003 |  uiCtx  = ( pcTempCU ) ? ((pcTempCU->getARPW( uiTempPartIdx )==0)?0:1) : 0; |
---|
2004 |   return uiCtx; |
---|
2005 | } |
---|
2006 | #endif |
---|
2007 | #if NH_3D_DBBP |
---|
2008 | Pel* TComDataCU::getVirtualDepthBlock(UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt& uiDepthStride) |
---|
2009 | { |
---|
2010 |  const TComSPS* sps = getSlice()->getSPS(); |
---|
2011 | Â UInt uiMaxCUWidth =Â sps->getMaxCUWidth(); |
---|
2012 | Â UInt uiMaxCUHeight =Â sps->getMaxCUHeight(); |
---|
2013 | Â |
---|
2014 | Â // get coded and reconstructed depth view |
---|
2015 | Â TComPicYuv*Â depthPicYuv =Â NULL; |
---|
2016 | Â Pel*Â pDepthPels =Â NULL; |
---|
2017 | Â |
---|
2018 | Â // DBBP is a texture coding tool |
---|
2019 | Â assert(Â !getSlice()->getIsDepth()Â ); |
---|
2020 | Â |
---|
2021 | #if H_3D_FCO |
---|
2022 |  TComPic* depthPic = getSlice()->getIvPic(true, getSlice()->getViewIndex() ); |
---|
2023 | Â |
---|
2024 | Â if(Â depthPic &&Â depthPic->getPicYuvRec()Â !=Â NULLÂ &&Â depthPic->getIsDepth()Â )Â // depth first |
---|
2025 | Â { |
---|
2026 | Â Â depthPicYuv =Â depthPic->getPicYuvRec(); |
---|
2027 | Â Â depthPicYuv->extendPicBorder(); |
---|
2028 | Â Â |
---|
2029 | Â Â // get collocated depth block for current CU |
---|
2030 | Â Â uiDepthStride =Â depthPicYuv->getStride(); |
---|
2031 |   pDepthPels  = depthPicYuv->getLumaAddr( getAddr(), uiAbsPartIdx ); |
---|
2032 | Â } |
---|
2033 |  else // texture first |
---|
2034 | #else |
---|
2035 | Â { |
---|
2036 | Â Â DisInfo DvInfo =Â getDvInfo(uiAbsPartIdx); |
---|
2037 | Â Â |
---|
2038 |   TComPic* baseDepthPic = getSlice()->getIvPic (true, DvInfo.m_aVIdxCan); |
---|
2039 | Â Â |
---|
2040 | Â Â if(Â baseDepthPic ==Â NULLÂ ||Â baseDepthPic->getPicYuvRec()Â ==Â NULLÂ ) |
---|
2041 | Â Â { |
---|
2042 |    return NULL; |
---|
2043 | Â Â } |
---|
2044 | Â Â |
---|
2045 |   depthPicYuv  = baseDepthPic->getPicYuvRec(); |
---|
2046 | Â Â depthPicYuv->extendPicBorder(); |
---|
2047 | Â Â uiDepthStride =Â depthPicYuv->getStride(COMPONENT_Y); |
---|
2048 | Â Â |
---|
2049 |   Int iBlkX = ( getCtuRsAddr() % baseDepthPic->getFrameWidthInCtus() ) * uiMaxCUWidth + g_auiRasterToPelX[ g_auiZscanToRaster[ getZorderIdxInCtu()+uiAbsPartIdx ] ]; |
---|
2050 | Â Â Int iBlkY =Â (Â getCtuRsAddr()Â /Â baseDepthPic->getFrameWidthInCtus()Â )Â *Â uiMaxCUHeight +Â g_auiRasterToPelY[Â g_auiZscanToRaster[Â getZorderIdxInCtu()+uiAbsPartIdx ]Â ]; |
---|
2051 | Â Â |
---|
2052 |   Int iPictureWidth = depthPicYuv->getWidth(COMPONENT_Y); |
---|
2053 | Â Â Int iPictureHeight =Â depthPicYuv->getHeight(COMPONENT_Y); |
---|
2054 | Â Â |
---|
2055 | Â Â |
---|
2056 | Â Â Bool depthRefineFlag =Â false; |
---|
2057 | #if NH_3D_NBDV_REF |
---|
2058 | Â Â depthRefineFlag =Â m_pcSlice->getDepthRefinementFlag(); |
---|
2059 | #endif // NH_3D_NBDV_REF |
---|
2060 | Â Â |
---|
2061 |   TComMv cDv = depthRefineFlag ? DvInfo.m_acDoNBDV : DvInfo.m_acNBDV; |
---|
2062 | Â Â if(Â depthRefineFlag ) |
---|
2063 | Â Â { |
---|
2064 | Â Â Â cDv.setVer(0); |
---|
2065 | Â Â } |
---|
2066 | Â Â |
---|
2067 |   Int depthPosX = Clip3(0,  iPictureWidth - 1, iBlkX + ((cDv.getHor()+2)>>2)); |
---|
2068 |   Int depthPosY = Clip3(0,  iPictureHeight - 1, iBlkY + ((cDv.getVer()+2)>>2)); |
---|
2069 | Â Â |
---|
2070 | Â Â pDepthPels =Â depthPicYuv->getAddr(COMPONENT_Y)Â +Â depthPosX +Â depthPosY *Â uiDepthStride; |
---|
2071 | Â } |
---|
2072 | #endif |
---|
2073 | Â |
---|
2074 | Â AOF(Â depthPicYuv !=Â NULLÂ ); |
---|
2075 | Â AOF(Â pDepthPels !=Â NULLÂ ); |
---|
2076 | Â AOF(Â uiDepthStride !=Â 0Â ); |
---|
2077 | Â |
---|
2078 |  return pDepthPels; |
---|
2079 | } |
---|
2080 | #endif |
---|
2081 | |
---|
2082 | #if NH_3D_DBBP |
---|
2083 | Void TComDataCU::setDBBPFlagSubParts ( Bool bDBBPFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2084 | { |
---|
2085 |  setSubPart( bDBBPFlag, m_pbDBBPFlag, uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2086 | } |
---|
2087 | #endif |
---|
2088 | |
---|
2089 | |
---|
2090 | UInt TComDataCU::getCtxInterDir(Â UInt uiAbsPartIdx ) |
---|
2091 | { |
---|
2092 |  return getDepth( uiAbsPartIdx ); |
---|
2093 | } |
---|
2094 | |
---|
2095 | |
---|
2096 | UChar TComDataCU::getQtRootCbf(Â UInt uiIdx ) |
---|
2097 | { |
---|
2098 |  const UInt numberValidComponents = getPic()->getNumberValidComponents(); |
---|
2099 |  return getCbf( uiIdx, COMPONENT_Y, 0 ) |
---|
2100 |      || ((numberValidComponents > COMPONENT_Cb) && getCbf( uiIdx, COMPONENT_Cb, 0 )) |
---|
2101 |      || ((numberValidComponents > COMPONENT_Cr) && getCbf( uiIdx, COMPONENT_Cr, 0 )); |
---|
2102 | } |
---|
2103 | |
---|
2104 | Void TComDataCU::setCbfSubParts( const UInt uiCbf[MAX_NUM_COMPONENT], UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2105 | { |
---|
2106 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2107 | Â for(UInt comp=0;Â comp<MAX_NUM_COMPONENT;Â comp++) |
---|
2108 | Â { |
---|
2109 |   memset( m_puhCbf[comp] + uiAbsPartIdx, uiCbf[comp], sizeof( UChar ) * uiCurrPartNumb ); |
---|
2110 | Â } |
---|
2111 | } |
---|
2112 | |
---|
2113 | Void TComDataCU::setCbfSubParts( UInt uiCbf, ComponentID compID, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2114 | { |
---|
2115 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2116 |  memset( m_puhCbf[compID] + uiAbsPartIdx, uiCbf, sizeof( UChar ) * uiCurrPartNumb ); |
---|
2117 | } |
---|
2118 | |
---|
2119 | /** Sets a coded block flag for all sub-partitions of a partition |
---|
2120 |  * \param uiCbf     The value of the coded block flag to be set |
---|
2121 | Â * \param compID |
---|
2122 | Â * \param uiAbsPartIdx |
---|
2123 | Â * \param uiPartIdx |
---|
2124 | Â * \param uiDepth |
---|
2125 | Â */ |
---|
2126 | Void TComDataCU::setCbfSubParts ( UInt uiCbf, ComponentID compID, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2127 | { |
---|
2128 |  setSubPart<UChar>( uiCbf, m_puhCbf[compID], uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2129 | } |
---|
2130 | |
---|
2131 | Void TComDataCU::setCbfPartRange ( UInt uiCbf, ComponentID compID, UInt uiAbsPartIdx, UInt uiCoveredPartIdxes ) |
---|
2132 | { |
---|
2133 |  memset((m_puhCbf[compID] + uiAbsPartIdx), uiCbf, (sizeof(UChar) * uiCoveredPartIdxes)); |
---|
2134 | } |
---|
2135 | |
---|
2136 | Void TComDataCU::bitwiseOrCbfPartRange( UInt uiCbf, ComponentID compID, UInt uiAbsPartIdx, UInt uiCoveredPartIdxes ) |
---|
2137 | { |
---|
2138 |  const UInt stopAbsPartIdx = uiAbsPartIdx + uiCoveredPartIdxes; |
---|
2139 | |
---|
2140 |  for (UInt subPartIdx = uiAbsPartIdx; subPartIdx < stopAbsPartIdx; subPartIdx++) |
---|
2141 | Â { |
---|
2142 | Â Â m_puhCbf[compID][subPartIdx]Â |=Â uiCbf; |
---|
2143 | Â } |
---|
2144 | } |
---|
2145 | |
---|
2146 | Void TComDataCU::setDepthSubParts( UInt uiDepth, UInt uiAbsPartIdx ) |
---|
2147 | { |
---|
2148 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2149 |  memset( m_puhDepth + uiAbsPartIdx, uiDepth, sizeof(UChar)*uiCurrPartNumb ); |
---|
2150 | } |
---|
2151 | |
---|
2152 | Bool TComDataCU::isFirstAbsZorderIdxInDepth (UInt uiAbsPartIdx, UInt uiDepth) |
---|
2153 | { |
---|
2154 | Â UInt uiPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2155 |  return (((m_absZIdxInCtu + uiAbsPartIdx)% uiPartNumb) == 0); |
---|
2156 | } |
---|
2157 | |
---|
2158 | Void TComDataCU::setPartSizeSubParts( PartSize eMode, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2159 | { |
---|
2160 | Â assert(Â sizeof(Â *m_pePartSize)Â ==Â 1Â ); |
---|
2161 |  memset( m_pePartSize + uiAbsPartIdx, eMode, m_pcPic->getNumPartitionsInCtu() >> ( 2 * uiDepth ) ); |
---|
2162 | } |
---|
2163 | |
---|
2164 | Void TComDataCU::setCUTransquantBypassSubParts( Bool flag, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2165 | { |
---|
2166 |  memset( m_CUTransquantBypass + uiAbsPartIdx, flag, m_pcPic->getNumPartitionsInCtu() >> ( 2 * uiDepth ) ); |
---|
2167 | } |
---|
2168 | |
---|
2169 | Void TComDataCU::setSkipFlagSubParts( Bool skip, UInt absPartIdx, UInt depth ) |
---|
2170 | { |
---|
2171 | Â assert(Â sizeof(Â *m_skipFlag)Â ==Â 1Â ); |
---|
2172 |  memset( m_skipFlag + absPartIdx, skip, m_pcPic->getNumPartitionsInCtu() >> ( 2 * depth ) ); |
---|
2173 | } |
---|
2174 | |
---|
2175 | #if NH_3D_DIS |
---|
2176 | Void TComDataCU::setDISFlagSubParts( Bool bDIS, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2177 | { |
---|
2178 | Â Â assert(Â sizeof(Â *m_bDISFlag)Â ==Â 1Â ); |
---|
2179 |   memset( m_bDISFlag + uiAbsPartIdx, bDIS, m_pcPic->getNumPartitionsInCtu() >> ( 2 * uiDepth ) ); |
---|
2180 | } |
---|
2181 | |
---|
2182 | Void TComDataCU::setDISTypeSubParts(UChar ucDISType, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2183 | { |
---|
2184 | Â assert(Â sizeof(Â *m_ucDISType)Â ==Â 1Â ); |
---|
2185 |  memset( m_ucDISType + uiAbsPartIdx, ucDISType, m_pcPic->getNumPartitionsInCtu() >> ( 2 * uiDepth ) ); |
---|
2186 | } |
---|
2187 | #endif |
---|
2188 | |
---|
2189 | Void TComDataCU::setPredModeSubParts( PredMode eMode, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2190 | { |
---|
2191 | Â assert(Â sizeof(Â *m_pePredMode)Â ==Â 1Â ); |
---|
2192 |  memset( m_pePredMode + uiAbsPartIdx, eMode, m_pcPic->getNumPartitionsInCtu() >> ( 2 * uiDepth ) ); |
---|
2193 | } |
---|
2194 | |
---|
2195 | Void TComDataCU::setChromaQpAdjSubParts( UChar val, Int absPartIdx, Int depth ) |
---|
2196 | { |
---|
2197 | Â assert(Â sizeof(*m_ChromaQpAdj)Â ==Â 1Â ); |
---|
2198 |  memset( m_ChromaQpAdj + absPartIdx, val, m_pcPic->getNumPartitionsInCtu() >> ( 2 * depth ) ); |
---|
2199 | } |
---|
2200 | |
---|
2201 | Void TComDataCU::setQPSubCUs( Int qp, UInt absPartIdx, UInt depth, Bool &foundNonZeroCbf ) |
---|
2202 | { |
---|
2203 | Â UInt currPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (depth <<Â 1); |
---|
2204 | Â UInt currPartNumQ =Â currPartNumb >>Â 2; |
---|
2205 |  const UInt numValidComp = m_pcPic->getNumberValidComponents(); |
---|
2206 | |
---|
2207 | Â if(!foundNonZeroCbf) |
---|
2208 | Â { |
---|
2209 | Â Â if(getDepth(absPartIdx)Â >Â depth) |
---|
2210 | Â Â { |
---|
2211 |    for ( UInt partUnitIdx = 0; partUnitIdx < 4; partUnitIdx++ ) |
---|
2212 | Â Â Â { |
---|
2213 |     setQPSubCUs( qp, absPartIdx+partUnitIdx*currPartNumQ, depth+1, foundNonZeroCbf ); |
---|
2214 | Â Â Â } |
---|
2215 | Â Â } |
---|
2216 | Â Â else |
---|
2217 | Â Â { |
---|
2218 |    if(getCbf( absPartIdx, COMPONENT_Y ) || (numValidComp>COMPONENT_Cb && getCbf( absPartIdx, COMPONENT_Cb )) || (numValidComp>COMPONENT_Cr && getCbf( absPartIdx, COMPONENT_Cr) ) ) |
---|
2219 | Â Â Â { |
---|
2220 | Â Â Â Â foundNonZeroCbf =Â true; |
---|
2221 | Â Â Â } |
---|
2222 | Â Â Â else |
---|
2223 | Â Â Â { |
---|
2224 |     setQPSubParts(qp, absPartIdx, depth); |
---|
2225 | Â Â Â } |
---|
2226 | Â Â } |
---|
2227 | Â } |
---|
2228 | } |
---|
2229 | |
---|
2230 | Void TComDataCU::setQPSubParts( Int qp, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2231 | { |
---|
2232 |  const UInt numPart = m_pcPic->getNumPartitionsInCtu() >> (uiDepth << 1); |
---|
2233 |  memset(m_phQP+uiAbsPartIdx, qp, numPart); |
---|
2234 | } |
---|
2235 | |
---|
2236 | Void TComDataCU::setIntraDirSubParts( const ChannelType channelType, const UInt dir, const UInt absPartIdx, const UInt depth ) |
---|
2237 | { |
---|
2238 | Â UInt numPart =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (depth <<Â 1); |
---|
2239 |  memset( m_puhIntraDir[channelType] + absPartIdx, dir,sizeof(UChar)*numPart ); |
---|
2240 | } |
---|
2241 | |
---|
2242 | template<typename T> |
---|
2243 | Void TComDataCU::setSubPart( T uiParameter, T* puhBaseCtu, UInt uiCUAddr, UInt uiCUDepth, UInt uiPUIdx ) |
---|
2244 | { |
---|
2245 | Â assert(Â sizeof(T)Â ==Â 1Â );Â // Using memset() works only for types of size 1 |
---|
2246 | |
---|
2247 | Â UInt uiCurrPartNumQ =Â (m_pcPic->getNumPartitionsInCtu()Â >>Â (2Â *Â uiCUDepth))Â >>Â 2; |
---|
2248 |  switch ( m_pePartSize[ uiCUAddr ] ) |
---|
2249 | Â { |
---|
2250 |   case SIZE_2Nx2N: |
---|
2251 |    memset( puhBaseCtu + uiCUAddr, uiParameter, 4 * uiCurrPartNumQ ); |
---|
2252 | Â Â Â break; |
---|
2253 |   case SIZE_2NxN: |
---|
2254 |    memset( puhBaseCtu + uiCUAddr, uiParameter, 2 * uiCurrPartNumQ ); |
---|
2255 | Â Â Â break; |
---|
2256 |   case SIZE_Nx2N: |
---|
2257 |    memset( puhBaseCtu + uiCUAddr, uiParameter, uiCurrPartNumQ ); |
---|
2258 |    memset( puhBaseCtu + uiCUAddr + 2 * uiCurrPartNumQ, uiParameter, uiCurrPartNumQ ); |
---|
2259 | Â Â Â break; |
---|
2260 |   case SIZE_NxN: |
---|
2261 |    memset( puhBaseCtu + uiCUAddr, uiParameter, uiCurrPartNumQ ); |
---|
2262 | Â Â Â break; |
---|
2263 |   case SIZE_2NxnU: |
---|
2264 |    if ( uiPUIdx == 0 ) |
---|
2265 | Â Â Â { |
---|
2266 |     memset( puhBaseCtu + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 1) ); |
---|
2267 |     memset( puhBaseCtu + uiCUAddr + uiCurrPartNumQ, uiParameter, (uiCurrPartNumQ >> 1) ); |
---|
2268 | Â Â Â } |
---|
2269 |    else if ( uiPUIdx == 1 ) |
---|
2270 | Â Â Â { |
---|
2271 |     memset( puhBaseCtu + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 1) ); |
---|
2272 |     memset( puhBaseCtu + uiCUAddr + uiCurrPartNumQ, uiParameter, ((uiCurrPartNumQ >> 1) + (uiCurrPartNumQ << 1)) ); |
---|
2273 | Â Â Â } |
---|
2274 | Â Â Â else |
---|
2275 | Â Â Â { |
---|
2276 | Â Â Â Â assert(0); |
---|
2277 | Â Â Â } |
---|
2278 | Â Â Â break; |
---|
2279 |   case SIZE_2NxnD: |
---|
2280 |    if ( uiPUIdx == 0 ) |
---|
2281 | Â Â Â { |
---|
2282 |     memset( puhBaseCtu + uiCUAddr, uiParameter, ((uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1)) ); |
---|
2283 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1) + uiCurrPartNumQ, uiParameter, (uiCurrPartNumQ >> 1) ); |
---|
2284 | Â Â Â } |
---|
2285 |    else if ( uiPUIdx == 1 ) |
---|
2286 | Â Â Â { |
---|
2287 |     memset( puhBaseCtu + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 1) ); |
---|
2288 |     memset( puhBaseCtu + uiCUAddr + uiCurrPartNumQ, uiParameter, (uiCurrPartNumQ >> 1) ); |
---|
2289 | Â Â Â } |
---|
2290 | Â Â Â else |
---|
2291 | Â Â Â { |
---|
2292 | Â Â Â Â assert(0); |
---|
2293 | Â Â Â } |
---|
2294 | Â Â Â break; |
---|
2295 |   case SIZE_nLx2N: |
---|
2296 |    if ( uiPUIdx == 0 ) |
---|
2297 | Â Â Â { |
---|
2298 |     memset( puhBaseCtu + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2299 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2300 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2301 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2302 | Â Â Â } |
---|
2303 |    else if ( uiPUIdx == 1 ) |
---|
2304 | Â Â Â { |
---|
2305 |     memset( puhBaseCtu + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2306 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) ); |
---|
2307 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2308 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) ); |
---|
2309 | Â Â Â } |
---|
2310 | Â Â Â else |
---|
2311 | Â Â Â { |
---|
2312 | Â Â Â Â assert(0); |
---|
2313 | Â Â Â } |
---|
2314 | Â Â Â break; |
---|
2315 |   case SIZE_nRx2N: |
---|
2316 |    if ( uiPUIdx == 0 ) |
---|
2317 | Â Â Â { |
---|
2318 |     memset( puhBaseCtu + uiCUAddr, uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) ); |
---|
2319 |     memset( puhBaseCtu + uiCUAddr + uiCurrPartNumQ + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2320 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) ); |
---|
2321 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1) + uiCurrPartNumQ + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2322 | Â Â Â } |
---|
2323 |    else if ( uiPUIdx == 1 ) |
---|
2324 | Â Â Â { |
---|
2325 |     memset( puhBaseCtu + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2326 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2327 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2328 |     memset( puhBaseCtu + uiCUAddr + (uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) ); |
---|
2329 | Â Â Â } |
---|
2330 | Â Â Â else |
---|
2331 | Â Â Â { |
---|
2332 | Â Â Â Â assert(0); |
---|
2333 | Â Â Â } |
---|
2334 | Â Â Â break; |
---|
2335 | Â Â default: |
---|
2336 | Â Â Â assert(Â 0Â ); |
---|
2337 | Â Â Â break; |
---|
2338 | Â } |
---|
2339 | } |
---|
2340 | |
---|
2341 | #if NH_3D_SDC_INTRA |
---|
2342 | Void TComDataCU::setSDCFlagSubParts ( Bool bSDCFlag, UInt absPartIdx, UInt depth ) |
---|
2343 | { |
---|
2344 | Â assert(Â sizeof(Â *m_pbSDCFlag)Â ==Â 1Â ); |
---|
2345 |  memset( m_pbSDCFlag + absPartIdx, bSDCFlag, m_pcPic->getNumPartitionsInCtu() >> ( 2 * depth ) ); |
---|
2346 | } |
---|
2347 | |
---|
2348 | Bool TComDataCU::getSDCAvailable(Â UInt uiAbsPartIdx ) |
---|
2349 | { |
---|
2350 | Â if(Â getSlice()->getIsDepth()Â &&Â isIntra(uiAbsPartIdx)Â &&Â getPartitionSize(uiAbsPartIdx)Â ==Â SIZE_2Nx2N ) |
---|
2351 | Â { |
---|
2352 |   UInt lumaPredMode = getIntraDir( CHANNEL_TYPE_LUMA, uiAbsPartIdx ); |
---|
2353 |   if( lumaPredMode < NUM_INTRA_MODE ) { return true; } |
---|
2354 | #if NH_3D_DMM |
---|
2355 |   if( isDmmMode( lumaPredMode )   ) { return true; } |
---|
2356 | #endif |
---|
2357 | Â } |
---|
2358 |  return false; |
---|
2359 | } |
---|
2360 | #endif |
---|
2361 | |
---|
2362 | Void TComDataCU::setMergeFlagSubParts ( Bool bMergeFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2363 | { |
---|
2364 |  setSubPart( bMergeFlag, m_pbMergeFlag, uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2365 | } |
---|
2366 | |
---|
2367 | Void TComDataCU::setMergeIndexSubParts ( UInt uiMergeIndex, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2368 | { |
---|
2369 |  setSubPart<UChar>( uiMergeIndex, m_puhMergeIndex, uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2370 | } |
---|
2371 | |
---|
2372 | #if NH_3D_SPIVMP |
---|
2373 | Void TComDataCU::setSPIVMPFlagSubParts( Bool bSPIVMPFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2374 | { |
---|
2375 |  setSubPart<Bool>( bSPIVMPFlag, m_pbSPIVMPFlag, uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2376 | } |
---|
2377 | #endif |
---|
2378 | |
---|
2379 | #if NH_3D_VSP |
---|
2380 | Void TComDataCU::setVSPFlagSubParts( Char iVSPFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2381 | { |
---|
2382 |  setSubPart<Char>( iVSPFlag, m_piVSPFlag, uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2383 | } |
---|
2384 | template<typename T> |
---|
2385 | Void TComDataCU::setSubPartT( T uiParameter, T* puhBaseLCU, UInt uiCUAddr, UInt uiCUDepth, UInt uiPUIdx ) |
---|
2386 | { |
---|
2387 | Â UInt uiCurrPartNumQ =Â (m_pcPic->getNumPartitionsInCtu()Â >>Â (2Â *Â uiCUDepth))Â >>Â 2; |
---|
2388 |  switch ( m_pePartSize[ uiCUAddr ] ) |
---|
2389 | Â { |
---|
2390 |  case SIZE_2Nx2N: |
---|
2391 |   for (UInt ui = 0; ui < 4 * uiCurrPartNumQ; ui++) |
---|
2392 | Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2393 | |
---|
2394 | Â Â break; |
---|
2395 |  case SIZE_2NxN: |
---|
2396 |   for (UInt ui = 0; ui < 2 * uiCurrPartNumQ; ui++) |
---|
2397 | Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2398 | Â Â break; |
---|
2399 |  case SIZE_Nx2N: |
---|
2400 |   for (UInt ui = 0; ui < uiCurrPartNumQ; ui++) |
---|
2401 | Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2402 |   for (UInt ui = 0; ui < uiCurrPartNumQ; ui++) |
---|
2403 | Â Â Â puhBaseLCU[uiCUAddr +Â 2Â *Â uiCurrPartNumQ +Â ui]Â =Â uiParameter; |
---|
2404 | Â Â break; |
---|
2405 |  case SIZE_NxN: |
---|
2406 |   for (UInt ui = 0; ui < uiCurrPartNumQ; ui++) |
---|
2407 | Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2408 | Â Â break; |
---|
2409 |  case SIZE_2NxnU: |
---|
2410 |   if ( uiPUIdx == 0 ) |
---|
2411 | Â Â { |
---|
2412 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 1); ui++) |
---|
2413 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2414 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 1); ui++) |
---|
2415 | Â Â Â Â puhBaseLCU[uiCUAddr +Â uiCurrPartNumQ +Â ui]Â =Â uiParameter; |
---|
2416 | |
---|
2417 | Â Â } |
---|
2418 |   else if ( uiPUIdx == 1 ) |
---|
2419 | Â Â { |
---|
2420 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 1); ui++) |
---|
2421 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2422 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 1) + (uiCurrPartNumQ << 1); ui++) |
---|
2423 | Â Â Â Â puhBaseLCU[uiCUAddr +Â uiCurrPartNumQ +Â ui]Â =Â uiParameter; |
---|
2424 | |
---|
2425 | Â Â } |
---|
2426 | Â Â else |
---|
2427 | Â Â { |
---|
2428 | Â Â Â assert(0); |
---|
2429 | Â Â } |
---|
2430 | Â Â break; |
---|
2431 |  case SIZE_2NxnD: |
---|
2432 |   if ( uiPUIdx == 0 ) |
---|
2433 | Â Â { |
---|
2434 |    for (UInt ui = 0; ui < ((uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1)); ui++) |
---|
2435 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2436 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 1); ui++) |
---|
2437 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â uiCurrPartNumQ +Â ui]Â =Â uiParameter; |
---|
2438 | |
---|
2439 | Â Â } |
---|
2440 |   else if ( uiPUIdx == 1 ) |
---|
2441 | Â Â { |
---|
2442 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 1); ui++) |
---|
2443 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2444 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 1); ui++) |
---|
2445 | Â Â Â Â puhBaseLCU[uiCUAddr +Â uiCurrPartNumQ +Â ui]Â =Â uiParameter; |
---|
2446 | |
---|
2447 | Â Â } |
---|
2448 | Â Â else |
---|
2449 | Â Â { |
---|
2450 | Â Â Â assert(0); |
---|
2451 | Â Â } |
---|
2452 | Â Â break; |
---|
2453 |  case SIZE_nLx2N: |
---|
2454 |   if ( uiPUIdx == 0 ) |
---|
2455 | Â Â { |
---|
2456 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2457 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2458 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2459 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2460 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2461 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2462 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2463 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2464 | |
---|
2465 | Â Â } |
---|
2466 |   else if ( uiPUIdx == 1 ) |
---|
2467 | Â Â { |
---|
2468 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2469 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2470 |    for (UInt ui = 0; ui < (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)); ui++) |
---|
2471 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2472 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2473 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2474 |    for (UInt ui = 0; ui < (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)); ui++) |
---|
2475 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2476 | |
---|
2477 | Â Â } |
---|
2478 | Â Â else |
---|
2479 | Â Â { |
---|
2480 | Â Â Â assert(0); |
---|
2481 | Â Â } |
---|
2482 | Â Â break; |
---|
2483 |  case SIZE_nRx2N: |
---|
2484 |   if ( uiPUIdx == 0 ) |
---|
2485 | Â Â { |
---|
2486 |    for (UInt ui = 0; ui < (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)); ui++) |
---|
2487 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2488 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2489 | Â Â Â Â puhBaseLCU[uiCUAddr +Â uiCurrPartNumQ +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2490 |    for (UInt ui = 0; ui < (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)); ui++) |
---|
2491 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2492 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2493 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â uiCurrPartNumQ +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2494 | |
---|
2495 | Â Â } |
---|
2496 |   else if ( uiPUIdx == 1 ) |
---|
2497 | Â Â { |
---|
2498 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2499 | Â Â Â Â puhBaseLCU[uiCUAddr +Â ui]Â =Â uiParameter; |
---|
2500 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2501 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2502 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2503 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2504 |    for (UInt ui = 0; ui < (uiCurrPartNumQ >> 2); ui++) |
---|
2505 | Â Â Â Â puhBaseLCU[uiCUAddr +Â (uiCurrPartNumQ <<Â 1)Â +Â (uiCurrPartNumQ >>Â 1)Â +Â ui]Â =Â uiParameter; |
---|
2506 | |
---|
2507 | Â Â } |
---|
2508 | Â Â else |
---|
2509 | Â Â { |
---|
2510 | Â Â Â assert(0); |
---|
2511 | Â Â } |
---|
2512 | Â Â break; |
---|
2513 | Â default: |
---|
2514 | Â Â assert(Â 0Â ); |
---|
2515 | Â } |
---|
2516 | |
---|
2517 | } |
---|
2518 | #endif |
---|
2519 | |
---|
2520 | Void TComDataCU::setInterDirSubParts( UInt uiDir, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2521 | { |
---|
2522 |  setSubPart<UChar>( uiDir, m_puhInterDir, uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2523 | } |
---|
2524 | |
---|
2525 | Void TComDataCU::setMVPIdxSubParts( Int iMVPIdx, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2526 | { |
---|
2527 |  setSubPart<Char>( iMVPIdx, m_apiMVPIdx[eRefPicList], uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2528 | } |
---|
2529 | |
---|
2530 | Void TComDataCU::setMVPNumSubParts( Int iMVPNum, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth ) |
---|
2531 | { |
---|
2532 |  setSubPart<Char>( iMVPNum, m_apiMVPNum[eRefPicList], uiAbsPartIdx, uiDepth, uiPartIdx ); |
---|
2533 | } |
---|
2534 | |
---|
2535 | |
---|
2536 | Void TComDataCU::setTrIdxSubParts( UInt uiTrIdx, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2537 | { |
---|
2538 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2539 | |
---|
2540 |  memset( m_puhTrIdx + uiAbsPartIdx, uiTrIdx, sizeof(UChar)*uiCurrPartNumb ); |
---|
2541 | } |
---|
2542 | |
---|
2543 | Void TComDataCU::setTransformSkipSubParts( const UInt useTransformSkip[MAX_NUM_COMPONENT], UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2544 | { |
---|
2545 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2546 | |
---|
2547 | Â for(UInt i=0;Â i<MAX_NUM_COMPONENT;Â i++) |
---|
2548 | Â { |
---|
2549 |   memset( m_puhTransformSkip[i] + uiAbsPartIdx, useTransformSkip[i], sizeof( UChar ) * uiCurrPartNumb ); |
---|
2550 | Â } |
---|
2551 | } |
---|
2552 | |
---|
2553 | Void TComDataCU::setTransformSkipSubParts( UInt useTransformSkip, ComponentID compID, UInt uiAbsPartIdx, UInt uiDepth) |
---|
2554 | { |
---|
2555 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2556 | |
---|
2557 |  memset( m_puhTransformSkip[compID] + uiAbsPartIdx, useTransformSkip, sizeof( UChar ) * uiCurrPartNumb ); |
---|
2558 | } |
---|
2559 | |
---|
2560 | Void TComDataCU::setTransformSkipPartRange ( UInt useTransformSkip, ComponentID compID, UInt uiAbsPartIdx, UInt uiCoveredPartIdxes ) |
---|
2561 | { |
---|
2562 |  memset((m_puhTransformSkip[compID] + uiAbsPartIdx), useTransformSkip, (sizeof(UChar) * uiCoveredPartIdxes)); |
---|
2563 | } |
---|
2564 | |
---|
2565 | Void TComDataCU::setCrossComponentPredictionAlphaPartRange( Char alphaValue, ComponentID compID, UInt uiAbsPartIdx, UInt uiCoveredPartIdxes ) |
---|
2566 | { |
---|
2567 |  memset((m_crossComponentPredictionAlpha[compID] + uiAbsPartIdx), alphaValue, (sizeof(Char) * uiCoveredPartIdxes)); |
---|
2568 | } |
---|
2569 | |
---|
2570 | Void TComDataCU::setExplicitRdpcmModePartRange ( UInt rdpcmMode, ComponentID compID, UInt uiAbsPartIdx, UInt uiCoveredPartIdxes ) |
---|
2571 | { |
---|
2572 |  memset((m_explicitRdpcmMode[compID] + uiAbsPartIdx), rdpcmMode, (sizeof(UChar) * uiCoveredPartIdxes)); |
---|
2573 | } |
---|
2574 | |
---|
2575 | Void TComDataCU::setSizeSubParts( UInt uiWidth, UInt uiHeight, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2576 | { |
---|
2577 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
2578 | |
---|
2579 |  memset( m_puhWidth + uiAbsPartIdx, uiWidth, sizeof(UChar)*uiCurrPartNumb ); |
---|
2580 |  memset( m_puhHeight + uiAbsPartIdx, uiHeight, sizeof(UChar)*uiCurrPartNumb ); |
---|
2581 | } |
---|
2582 | |
---|
2583 | UChar TComDataCU::getNumPartitions(const UInt uiAbsPartIdx) |
---|
2584 | { |
---|
2585 | Â UChar iNumPart =Â 0; |
---|
2586 | |
---|
2587 |  switch ( m_pePartSize[uiAbsPartIdx] ) |
---|
2588 | Â { |
---|
2589 |   case SIZE_2Nx2N:  iNumPart = 1; break; |
---|
2590 |   case SIZE_2NxN:   iNumPart = 2; break; |
---|
2591 |   case SIZE_Nx2N:   iNumPart = 2; break; |
---|
2592 |   case SIZE_NxN:   iNumPart = 4; break; |
---|
2593 |   case SIZE_2NxnU:  iNumPart = 2; break; |
---|
2594 |   case SIZE_2NxnD:  iNumPart = 2; break; |
---|
2595 |   case SIZE_nLx2N:  iNumPart = 2; break; |
---|
2596 |   case SIZE_nRx2N:  iNumPart = 2; break; |
---|
2597 | Â Â default:Â Â Â Â Â Â assert (0);Â Â break; |
---|
2598 | Â } |
---|
2599 | |
---|
2600 |  return iNumPart; |
---|
2601 | } |
---|
2602 | |
---|
2603 | // This is for use by a leaf/sub CU object only, with no additional AbsPartIdx |
---|
2604 | #if NH_3D_IC || NH_3D_VSP |
---|
2605 | Void TComDataCU::getPartIndexAndSize( UInt uiPartIdx, UInt& ruiPartAddr, Int& riWidth, Int& riHeight, UInt uiAbsPartIdx, Bool bLCU) |
---|
2606 | { |
---|
2607 |  UInt uiNumPartition = bLCU ? (getWidth(uiAbsPartIdx)*getHeight(uiAbsPartIdx) >> 4) : m_uiNumPartition; |
---|
2608 |  UInt uiTmpAbsPartIdx = bLCU ? uiAbsPartIdx : 0; |
---|
2609 | |
---|
2610 |  switch ( m_pePartSize[uiTmpAbsPartIdx] ) |
---|
2611 | Â { |
---|
2612 |  case SIZE_2NxN: |
---|
2613 |   riWidth = getWidth( uiTmpAbsPartIdx );   riHeight = getHeight( uiTmpAbsPartIdx ) >> 1; ruiPartAddr = ( uiPartIdx == 0 )? 0 : uiNumPartition >> 1; |
---|
2614 | Â Â break; |
---|
2615 |  case SIZE_Nx2N: |
---|
2616 |   riWidth = getWidth( uiTmpAbsPartIdx ) >> 1; riHeight = getHeight( uiTmpAbsPartIdx );   ruiPartAddr = ( uiPartIdx == 0 )? 0 : uiNumPartition >> 2; |
---|
2617 | Â Â break; |
---|
2618 |  case SIZE_NxN: |
---|
2619 | Â Â riWidth =Â getWidth(Â uiTmpAbsPartIdx )Â >>Â 1;Â riHeight =Â getHeight(Â uiTmpAbsPartIdx )Â >>Â 1;Â ruiPartAddr =Â (Â uiNumPartition >>Â 2Â )Â *Â uiPartIdx; |
---|
2620 | Â Â break; |
---|
2621 |  case SIZE_2NxnU: |
---|
2622 |   riWidth   = getWidth( uiTmpAbsPartIdx ); |
---|
2623 |   riHeight  = ( uiPartIdx == 0 ) ? getHeight( uiTmpAbsPartIdx ) >> 2 : ( getHeight( uiTmpAbsPartIdx ) >> 2 ) + ( getHeight( uiTmpAbsPartIdx ) >> 1 ); |
---|
2624 |   ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : uiNumPartition >> 3; |
---|
2625 | Â Â break; |
---|
2626 |  case SIZE_2NxnD: |
---|
2627 |   riWidth   = getWidth( uiTmpAbsPartIdx ); |
---|
2628 |   riHeight  = ( uiPartIdx == 0 ) ? ( getHeight( uiTmpAbsPartIdx ) >> 2 ) + ( getHeight( uiTmpAbsPartIdx ) >> 1 ) : getHeight( uiTmpAbsPartIdx ) >> 2; |
---|
2629 |   ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : (uiNumPartition >> 1) + (uiNumPartition >> 3); |
---|
2630 | Â Â break; |
---|
2631 |  case SIZE_nLx2N: |
---|
2632 |   riWidth   = ( uiPartIdx == 0 ) ? getWidth( uiTmpAbsPartIdx ) >> 2 : ( getWidth( uiTmpAbsPartIdx ) >> 2 ) + ( getWidth( uiTmpAbsPartIdx ) >> 1 ); |
---|
2633 |   riHeight  = getHeight( uiTmpAbsPartIdx ); |
---|
2634 |   ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : uiNumPartition >> 4; |
---|
2635 | Â Â break; |
---|
2636 |  case SIZE_nRx2N: |
---|
2637 |   riWidth   = ( uiPartIdx == 0 ) ? ( getWidth( uiTmpAbsPartIdx ) >> 2 ) + ( getWidth( uiTmpAbsPartIdx ) >> 1 ) : getWidth( uiTmpAbsPartIdx ) >> 2; |
---|
2638 |   riHeight  = getHeight( uiTmpAbsPartIdx ); |
---|
2639 |   ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : (uiNumPartition >> 2) + (uiNumPartition >> 4); |
---|
2640 | Â Â break; |
---|
2641 | Â default: |
---|
2642 | Â Â assert (Â m_pePartSize[uiTmpAbsPartIdx]Â ==Â SIZE_2Nx2N );Â |
---|
2643 | Â Â riWidth =Â getWidth(Â uiTmpAbsPartIdx );Â Â Â riHeight =Â getHeight(Â uiTmpAbsPartIdx );Â Â Â ruiPartAddr =Â 0; |
---|
2644 | Â Â break; |
---|
2645 | Â } |
---|
2646 | } |
---|
2647 | #else |
---|
2648 | |
---|
2649 | Void TComDataCU::getPartIndexAndSize( UInt uiPartIdx, UInt& ruiPartAddr, Int& riWidth, Int& riHeight ) |
---|
2650 | { |
---|
2651 |  switch ( m_pePartSize[0] ) |
---|
2652 | Â { |
---|
2653 |   case SIZE_2NxN: |
---|
2654 |    riWidth = getWidth(0);   riHeight = getHeight(0) >> 1; ruiPartAddr = ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 1; |
---|
2655 | Â Â Â break; |
---|
2656 |   case SIZE_Nx2N: |
---|
2657 |    riWidth = getWidth(0) >> 1; riHeight = getHeight(0);   ruiPartAddr = ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 2; |
---|
2658 | Â Â Â break; |
---|
2659 |   case SIZE_NxN: |
---|
2660 | Â Â Â riWidth =Â getWidth(0)Â >>Â 1;Â riHeight =Â getHeight(0)Â >>Â 1;Â ruiPartAddr =Â (Â m_uiNumPartition >>Â 2Â )Â *Â uiPartIdx; |
---|
2661 | Â Â Â break; |
---|
2662 |   case SIZE_2NxnU: |
---|
2663 |    riWidth   = getWidth(0); |
---|
2664 |    riHeight  = ( uiPartIdx == 0 ) ? getHeight(0) >> 2 : ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 ); |
---|
2665 |    ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 3; |
---|
2666 | Â Â Â break; |
---|
2667 |   case SIZE_2NxnD: |
---|
2668 |    riWidth   = getWidth(0); |
---|
2669 |    riHeight  = ( uiPartIdx == 0 ) ? ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 ) : getHeight(0) >> 2; |
---|
2670 |    ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : (m_uiNumPartition >> 1) + (m_uiNumPartition >> 3); |
---|
2671 | Â Â Â break; |
---|
2672 |   case SIZE_nLx2N: |
---|
2673 |    riWidth   = ( uiPartIdx == 0 ) ? getWidth(0) >> 2 : ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 ); |
---|
2674 |    riHeight  = getHeight(0); |
---|
2675 |    ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 4; |
---|
2676 | Â Â Â break; |
---|
2677 |   case SIZE_nRx2N: |
---|
2678 |    riWidth   = ( uiPartIdx == 0 ) ? ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 ) : getWidth(0) >> 2; |
---|
2679 |    riHeight  = getHeight(0); |
---|
2680 |    ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : (m_uiNumPartition >> 2) + (m_uiNumPartition >> 4); |
---|
2681 | Â Â Â break; |
---|
2682 | Â Â default: |
---|
2683 | Â Â Â assert (Â m_pePartSize[0]Â ==Â SIZE_2Nx2N ); |
---|
2684 | Â Â Â riWidth =Â getWidth(0);Â Â Â riHeight =Â getHeight(0);Â Â Â ruiPartAddr =Â 0; |
---|
2685 | Â Â Â break; |
---|
2686 | Â } |
---|
2687 | } |
---|
2688 | #endif |
---|
2689 | |
---|
2690 | |
---|
2691 | Void TComDataCU::getMvField ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList, TComMvField& rcMvField ) |
---|
2692 | { |
---|
2693 |  if ( pcCU == NULL ) // OUT OF BOUNDARY |
---|
2694 | Â { |
---|
2695 |   TComMv cZeroMv; |
---|
2696 |   rcMvField.setMvField( cZeroMv, NOT_VALID ); |
---|
2697 | Â Â return; |
---|
2698 | Â } |
---|
2699 | |
---|
2700 | Â TComCUMvField*Â pcCUMvField =Â pcCU->getCUMvField(Â eRefPicList ); |
---|
2701 |  rcMvField.setMvField( pcCUMvField->getMv( uiAbsPartIdx ), pcCUMvField->getRefIdx( uiAbsPartIdx ) ); |
---|
2702 | } |
---|
2703 | |
---|
2704 | Void TComDataCU::deriveLeftRightTopIdxGeneral ( UInt uiAbsPartIdx, UInt uiPartIdx, UInt& ruiPartIdxLT, UInt& ruiPartIdxRT ) |
---|
2705 | { |
---|
2706 | Â ruiPartIdxLT =Â m_absZIdxInCtu +Â uiAbsPartIdx; |
---|
2707 | Â UInt uiPUWidth =Â 0; |
---|
2708 | |
---|
2709 |  switch ( m_pePartSize[uiAbsPartIdx] ) |
---|
2710 | Â { |
---|
2711 |   case SIZE_2Nx2N: uiPUWidth = m_puhWidth[uiAbsPartIdx]; break; |
---|
2712 |   case SIZE_2NxN: uiPUWidth = m_puhWidth[uiAbsPartIdx];  break; |
---|
2713 |   case SIZE_Nx2N: uiPUWidth = m_puhWidth[uiAbsPartIdx] >> 1; break; |
---|
2714 |   case SIZE_NxN:  uiPUWidth = m_puhWidth[uiAbsPartIdx] >> 1; break; |
---|
2715 |   case SIZE_2NxnU:  uiPUWidth = m_puhWidth[uiAbsPartIdx]; break; |
---|
2716 |   case SIZE_2NxnD:  uiPUWidth = m_puhWidth[uiAbsPartIdx]; break; |
---|
2717 |   case SIZE_nLx2N: |
---|
2718 |    if ( uiPartIdx == 0 ) |
---|
2719 | Â Â Â { |
---|
2720 | Â Â Â Â uiPUWidth =Â m_puhWidth[uiAbsPartIdx]Â >>Â 2; |
---|
2721 | Â Â Â } |
---|
2722 |    else if ( uiPartIdx == 1 ) |
---|
2723 | Â Â Â { |
---|
2724 | Â Â Â Â uiPUWidth =Â (m_puhWidth[uiAbsPartIdx]Â >>Â 1)Â +Â (m_puhWidth[uiAbsPartIdx]Â >>Â 2); |
---|
2725 | Â Â Â } |
---|
2726 | Â Â Â else |
---|
2727 | Â Â Â { |
---|
2728 | Â Â Â Â assert(0); |
---|
2729 | Â Â Â } |
---|
2730 | Â Â Â break; |
---|
2731 |   case SIZE_nRx2N: |
---|
2732 |    if ( uiPartIdx == 0 ) |
---|
2733 | Â Â Â { |
---|
2734 | Â Â Â Â uiPUWidth =Â (m_puhWidth[uiAbsPartIdx]Â >>Â 1)Â +Â (m_puhWidth[uiAbsPartIdx]Â >>Â 2); |
---|
2735 | Â Â Â } |
---|
2736 |    else if ( uiPartIdx == 1 ) |
---|
2737 | Â Â Â { |
---|
2738 | Â Â Â Â uiPUWidth =Â m_puhWidth[uiAbsPartIdx]Â >>Â 2; |
---|
2739 | Â Â Â } |
---|
2740 | Â Â Â else |
---|
2741 | Â Â Â { |
---|
2742 | Â Â Â Â assert(0); |
---|
2743 | Â Â Â } |
---|
2744 | Â Â Â break; |
---|
2745 | Â Â default: |
---|
2746 | Â Â Â assert (0); |
---|
2747 | Â Â Â break; |
---|
2748 | Â } |
---|
2749 | |
---|
2750 | Â ruiPartIdxRT =Â g_auiRasterToZscan [g_auiZscanToRaster[Â ruiPartIdxLT ]Â +Â uiPUWidth /Â m_pcPic->getMinCUWidth()Â -Â 1Â ]; |
---|
2751 | } |
---|
2752 | |
---|
2753 | Void TComDataCU::deriveLeftBottomIdxGeneral( UInt uiAbsPartIdx, UInt uiPartIdx, UInt& ruiPartIdxLB ) |
---|
2754 | { |
---|
2755 | Â UInt uiPUHeight =Â 0; |
---|
2756 |  switch ( m_pePartSize[uiAbsPartIdx] ) |
---|
2757 | Â { |
---|
2758 |   case SIZE_2Nx2N: uiPUHeight = m_puhHeight[uiAbsPartIdx];  break; |
---|
2759 |   case SIZE_2NxN: uiPUHeight = m_puhHeight[uiAbsPartIdx] >> 1;  break; |
---|
2760 |   case SIZE_Nx2N: uiPUHeight = m_puhHeight[uiAbsPartIdx]; break; |
---|
2761 |   case SIZE_NxN:  uiPUHeight = m_puhHeight[uiAbsPartIdx] >> 1;  break; |
---|
2762 |   case SIZE_2NxnU: |
---|
2763 |    if ( uiPartIdx == 0 ) |
---|
2764 | Â Â Â { |
---|
2765 | Â Â Â Â uiPUHeight =Â m_puhHeight[uiAbsPartIdx]Â >>Â 2; |
---|
2766 | Â Â Â } |
---|
2767 |    else if ( uiPartIdx == 1 ) |
---|
2768 | Â Â Â { |
---|
2769 | Â Â Â Â uiPUHeight =Â (m_puhHeight[uiAbsPartIdx]Â >>Â 1)Â +Â (m_puhHeight[uiAbsPartIdx]Â >>Â 2); |
---|
2770 | Â Â Â } |
---|
2771 | Â Â Â else |
---|
2772 | Â Â Â { |
---|
2773 | Â Â Â Â assert(0); |
---|
2774 | Â Â Â } |
---|
2775 | Â Â Â break; |
---|
2776 |   case SIZE_2NxnD: |
---|
2777 |    if ( uiPartIdx == 0 ) |
---|
2778 | Â Â Â { |
---|
2779 | Â Â Â Â uiPUHeight =Â (m_puhHeight[uiAbsPartIdx]Â >>Â 1)Â +Â (m_puhHeight[uiAbsPartIdx]Â >>Â 2); |
---|
2780 | Â Â Â } |
---|
2781 |    else if ( uiPartIdx == 1 ) |
---|
2782 | Â Â Â { |
---|
2783 | Â Â Â Â uiPUHeight =Â m_puhHeight[uiAbsPartIdx]Â >>Â 2; |
---|
2784 | Â Â Â } |
---|
2785 | Â Â Â else |
---|
2786 | Â Â Â { |
---|
2787 | Â Â Â Â assert(0); |
---|
2788 | Â Â Â } |
---|
2789 | Â Â Â break; |
---|
2790 |   case SIZE_nLx2N: uiPUHeight = m_puhHeight[uiAbsPartIdx]; break; |
---|
2791 |   case SIZE_nRx2N: uiPUHeight = m_puhHeight[uiAbsPartIdx]; break; |
---|
2792 | Â Â default: |
---|
2793 | Â Â Â assert (0); |
---|
2794 | Â Â Â break; |
---|
2795 | Â } |
---|
2796 | |
---|
2797 | Â ruiPartIdxLBÂ Â Â =Â g_auiRasterToZscan [g_auiZscanToRaster[Â m_absZIdxInCtu +Â uiAbsPartIdx ]Â +Â ((uiPUHeight /Â m_pcPic->getMinCUHeight())Â -Â 1)*m_pcPic->getNumPartInCtuWidth()]; |
---|
2798 | } |
---|
2799 | |
---|
2800 | Void TComDataCU::deriveLeftRightTopIdx ( UInt uiPartIdx, UInt& ruiPartIdxLT, UInt& ruiPartIdxRT ) |
---|
2801 | { |
---|
2802 | Â ruiPartIdxLT =Â m_absZIdxInCtu; |
---|
2803 | Â ruiPartIdxRT =Â g_auiRasterToZscan [g_auiZscanToRaster[Â ruiPartIdxLT ]Â +Â m_puhWidth[0]Â /Â m_pcPic->getMinCUWidth()Â -Â 1Â ]; |
---|
2804 | |
---|
2805 |  switch ( m_pePartSize[0] ) |
---|
2806 | Â { |
---|
2807 |   case SIZE_2Nx2N:                                                                break; |
---|
2808 |   case SIZE_2NxN: |
---|
2809 |    ruiPartIdxLT += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 1; ruiPartIdxRT += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 1; |
---|
2810 | Â Â Â break; |
---|
2811 |   case SIZE_Nx2N: |
---|
2812 |    ruiPartIdxLT += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 2; ruiPartIdxRT -= ( uiPartIdx == 1 )? 0 : m_uiNumPartition >> 2; |
---|
2813 | Â Â Â break; |
---|
2814 |   case SIZE_NxN: |
---|
2815 | Â Â Â ruiPartIdxLT +=Â (Â m_uiNumPartition >>Â 2Â )Â *Â uiPartIdx;Â Â Â Â Â ruiPartIdxRT +=Â (Â m_uiNumPartition >>Â 2Â )Â *Â (Â uiPartIdx -Â 1Â ); |
---|
2816 | Â Â Â break; |
---|
2817 |   case SIZE_2NxnU: |
---|
2818 |    ruiPartIdxLT += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 3; |
---|
2819 |    ruiPartIdxRT += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 3; |
---|
2820 | Â Â Â break; |
---|
2821 |   case SIZE_2NxnD: |
---|
2822 |    ruiPartIdxLT += ( uiPartIdx == 0 )? 0 : ( m_uiNumPartition >> 1 ) + ( m_uiNumPartition >> 3 ); |
---|
2823 |    ruiPartIdxRT += ( uiPartIdx == 0 )? 0 : ( m_uiNumPartition >> 1 ) + ( m_uiNumPartition >> 3 ); |
---|
2824 | Â Â Â break; |
---|
2825 |   case SIZE_nLx2N: |
---|
2826 |    ruiPartIdxLT += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 4; |
---|
2827 |    ruiPartIdxRT -= ( uiPartIdx == 1 )? 0 : ( m_uiNumPartition >> 2 ) + ( m_uiNumPartition >> 4 ); |
---|
2828 | Â Â Â break; |
---|
2829 |   case SIZE_nRx2N: |
---|
2830 |    ruiPartIdxLT += ( uiPartIdx == 0 )? 0 : ( m_uiNumPartition >> 2 ) + ( m_uiNumPartition >> 4 ); |
---|
2831 |    ruiPartIdxRT -= ( uiPartIdx == 1 )? 0 : m_uiNumPartition >> 4; |
---|
2832 | Â Â Â break; |
---|
2833 | Â Â default: |
---|
2834 | Â Â Â assert (0); |
---|
2835 | Â Â Â break; |
---|
2836 | Â } |
---|
2837 | |
---|
2838 | } |
---|
2839 | |
---|
2840 | Void TComDataCU::deriveLeftBottomIdx( UInt uiPartIdx,   UInt&   ruiPartIdxLB ) |
---|
2841 | { |
---|
2842 | Â ruiPartIdxLBÂ Â Â =Â g_auiRasterToZscan [g_auiZscanToRaster[Â m_absZIdxInCtu ]Â +Â (Â ((m_puhHeight[0]Â /Â m_pcPic->getMinCUHeight())>>1)Â -Â 1)*m_pcPic->getNumPartInCtuWidth()]; |
---|
2843 | |
---|
2844 |  switch ( m_pePartSize[0] ) |
---|
2845 | Â { |
---|
2846 |   case SIZE_2Nx2N: |
---|
2847 | Â Â Â ruiPartIdxLB +=Â m_uiNumPartition >>Â 1; |
---|
2848 | Â Â Â break; |
---|
2849 |   case SIZE_2NxN: |
---|
2850 |    ruiPartIdxLB += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 1; |
---|
2851 | Â Â Â break; |
---|
2852 |   case SIZE_Nx2N: |
---|
2853 |    ruiPartIdxLB += ( uiPartIdx == 0 )? m_uiNumPartition >> 1 : (m_uiNumPartition >> 2)*3; |
---|
2854 | Â Â Â break; |
---|
2855 |   case SIZE_NxN: |
---|
2856 | Â Â Â ruiPartIdxLB +=Â (Â m_uiNumPartition >>Â 2Â )Â *Â uiPartIdx; |
---|
2857 | Â Â Â break; |
---|
2858 |   case SIZE_2NxnU: |
---|
2859 |    ruiPartIdxLB += ( uiPartIdx == 0 ) ? -((Int)m_uiNumPartition >> 3) : m_uiNumPartition >> 1; |
---|
2860 | Â Â Â break; |
---|
2861 |   case SIZE_2NxnD: |
---|
2862 |    ruiPartIdxLB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 2) + (m_uiNumPartition >> 3): m_uiNumPartition >> 1; |
---|
2863 | Â Â Â break; |
---|
2864 |   case SIZE_nLx2N: |
---|
2865 |    ruiPartIdxLB += ( uiPartIdx == 0 ) ? m_uiNumPartition >> 1 : (m_uiNumPartition >> 1) + (m_uiNumPartition >> 4); |
---|
2866 | Â Â Â break; |
---|
2867 |   case SIZE_nRx2N: |
---|
2868 |    ruiPartIdxLB += ( uiPartIdx == 0 ) ? m_uiNumPartition >> 1 : (m_uiNumPartition >> 1) + (m_uiNumPartition >> 2) + (m_uiNumPartition >> 4); |
---|
2869 | Â Â Â break; |
---|
2870 | Â Â default: |
---|
2871 | Â Â Â assert (0); |
---|
2872 | Â Â Â break; |
---|
2873 | Â } |
---|
2874 | } |
---|
2875 | |
---|
2876 | /** Derive the partition index of neighbouring bottom right block |
---|
2877 |  * \param [in] uiPartIdx   current partition index |
---|
2878 | Â * \param [out] ruiPartIdxRBÂ partition index of neighbouring bottom right block |
---|
2879 | Â */ |
---|
2880 | Void TComDataCU::deriveRightBottomIdx( UInt uiPartIdx, UInt &ruiPartIdxRB ) |
---|
2881 | { |
---|
2882 | Â ruiPartIdxRBÂ Â Â =Â g_auiRasterToZscan [g_auiZscanToRaster[Â m_absZIdxInCtu ]Â +Â (Â ((m_puhHeight[0]Â /Â m_pcPic->getMinCUHeight())>>1)Â -Â 1)*m_pcPic->getNumPartInCtuWidth()Â +Â m_puhWidth[0]Â /Â m_pcPic->getMinCUWidth()Â -Â 1]; |
---|
2883 | |
---|
2884 |  switch ( m_pePartSize[0] ) |
---|
2885 | Â { |
---|
2886 |   case SIZE_2Nx2N: |
---|
2887 | Â Â Â ruiPartIdxRB +=Â m_uiNumPartition >>Â 1; |
---|
2888 | Â Â Â break; |
---|
2889 |   case SIZE_2NxN: |
---|
2890 |    ruiPartIdxRB += ( uiPartIdx == 0 )? 0 : m_uiNumPartition >> 1; |
---|
2891 | Â Â Â break; |
---|
2892 |   case SIZE_Nx2N: |
---|
2893 |    ruiPartIdxRB += ( uiPartIdx == 0 )? m_uiNumPartition >> 2 : (m_uiNumPartition >> 1); |
---|
2894 | Â Â Â break; |
---|
2895 |   case SIZE_NxN: |
---|
2896 | Â Â Â ruiPartIdxRB +=Â (Â m_uiNumPartition >>Â 2Â )Â *Â (Â uiPartIdx -Â 1Â ); |
---|
2897 | Â Â Â break; |
---|
2898 |   case SIZE_2NxnU: |
---|
2899 |    ruiPartIdxRB += ( uiPartIdx == 0 ) ? -((Int)m_uiNumPartition >> 3) : m_uiNumPartition >> 1; |
---|
2900 | Â Â Â break; |
---|
2901 |   case SIZE_2NxnD: |
---|
2902 |    ruiPartIdxRB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 2) + (m_uiNumPartition >> 3): m_uiNumPartition >> 1; |
---|
2903 | Â Â Â break; |
---|
2904 |   case SIZE_nLx2N: |
---|
2905 |    ruiPartIdxRB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 3) + (m_uiNumPartition >> 4): m_uiNumPartition >> 1; |
---|
2906 | Â Â Â break; |
---|
2907 |   case SIZE_nRx2N: |
---|
2908 |    ruiPartIdxRB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 2) + (m_uiNumPartition >> 3) + (m_uiNumPartition >> 4) : m_uiNumPartition >> 1; |
---|
2909 | Â Â Â break; |
---|
2910 | Â Â default: |
---|
2911 | Â Â Â assert (0); |
---|
2912 | Â Â Â break; |
---|
2913 | Â } |
---|
2914 | } |
---|
2915 | |
---|
2916 | Bool TComDataCU::hasEqualMotion( UInt uiAbsPartIdx, TComDataCU* pcCandCU, UInt uiCandAbsPartIdx ) |
---|
2917 | { |
---|
2918 |  if ( getInterDir( uiAbsPartIdx ) != pcCandCU->getInterDir( uiCandAbsPartIdx ) ) |
---|
2919 | Â { |
---|
2920 |   return false; |
---|
2921 | Â } |
---|
2922 | |
---|
2923 |  for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ ) |
---|
2924 | Â { |
---|
2925 |   if ( getInterDir( uiAbsPartIdx ) & ( 1 << uiRefListIdx ) ) |
---|
2926 | Â Â { |
---|
2927 |    if ( getCUMvField( RefPicList( uiRefListIdx ) )->getMv( uiAbsPartIdx )   != pcCandCU->getCUMvField( RefPicList( uiRefListIdx ) )->getMv( uiCandAbsPartIdx ) || |
---|
2928 | Â Â Â Â getCUMvField(Â RefPicList(Â uiRefListIdx )Â )->getRefIdx(Â uiAbsPartIdx )Â !=Â pcCandCU->getCUMvField(Â RefPicList(Â uiRefListIdx )Â )->getRefIdx(Â uiCandAbsPartIdx )Â ) |
---|
2929 | Â Â Â { |
---|
2930 |     return false; |
---|
2931 | Â Â Â } |
---|
2932 | Â Â } |
---|
2933 | Â } |
---|
2934 | |
---|
2935 |  return true; |
---|
2936 | } |
---|
2937 | |
---|
2938 | #if NH_3D_VSP |
---|
2939 | /** Add a VSP merging candidate |
---|
2940 | Â * \Inputs |
---|
2941 | Â * \param uiPUIdx: PU index within a CU |
---|
2942 | Â * \param ucVspMergePos: Specify the VSP merge candidate position |
---|
2943 | Â * \param mrgCandIdx: Target merge candidate index. At encoder, it is set equal to -1, such that the whole merge candidate list will be constructed. |
---|
2944 | Â * \param pDinfo: The "disparity information" derived from neighboring blocks. Type 1 MV. |
---|
2945 | Â * \param uiCount: The next position to add VSP merge candidate |
---|
2946 | Â * |
---|
2947 | Â * \Outputs |
---|
2948 | Â * \param uiCount: The next position to add merge candidate. Will be updated if VSP is successfully added |
---|
2949 | Â * \param abCandIsInter: abCandIsInter[iCount] tells that VSP candidate is an Inter candidate, if VSP is successfully added |
---|
2950 | Â * \param pcMvFieldNeighbours:Â Â Return combined motion information, then stored to a global buffer |
---|
2951 | Â *Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â 1) the "disparity vector". Type 1 MV. To be used to fetch a depth block. |
---|
2952 |  *                  2) the ref index /list.  Type 2 reference picture pointer, typically for texture |
---|
2953 | Â * \param puhInterDirNeighbours: Indicate the VSP prediction direction. |
---|
2954 | Â * \param vspFlag: vspFlag[iCount] will be set (equal to 1), if VSP is successfully added. To be used to indicate the actual position of the VSP candidate |
---|
2955 | Â * |
---|
2956 | Â * \Return |
---|
2957 | Â *Â Â true:Â if the VSP candidate is added at the target position |
---|
2958 | Â *Â Â false: otherwise |
---|
2959 | Â */ |
---|
2960 | inline Bool TComDataCU::xAddVspCand( Int mrgCandIdx, DisInfo* pDInfo, Int& iCount) |
---|
2961 | { |
---|
2962 |  if ( m_pcSlice->getViewIndex() == 0 || !m_pcSlice->getViewSynthesisPredFlag( ) || m_pcSlice->getIsDepth() || pDInfo->m_aVIdxCan == -1) |
---|
2963 | Â { |
---|
2964 |   return false; |
---|
2965 | Â } |
---|
2966 | |
---|
2967 | Â Int refViewIdx =Â pDInfo->m_aVIdxCan; |
---|
2968 |  TComPic* picDepth = getSlice()->getIvPic( true, refViewIdx ); |
---|
2969 | |
---|
2970 | Â if(Â picDepth ==Â NULLÂ )Â // No depth reference avail |
---|
2971 | Â { |
---|
2972 | Â Â // Is this allowed to happen? When not an assertion should be added here! |
---|
2973 |   return false; |
---|
2974 | Â } |
---|
2975 | |
---|
2976 | Â TComMvField mvVSP[2]; |
---|
2977 | Â UChar dirVSP; |
---|
2978 |  Bool refViewAvailFlag = false; |
---|
2979 |  UChar predFlag[2]   = {0, 0}; |
---|
2980 | |
---|
2981 | Â for(Â Int iRefListIdX =Â 0;Â iRefListIdX <Â 2Â &&Â !refViewAvailFlag;Â iRefListIdX++Â ) |
---|
2982 | Â { |
---|
2983 | Â Â RefPicList eRefPicListX =Â RefPicList(Â iRefListIdX ); |
---|
2984 |   for ( Int i = 0; i < m_pcSlice->getNumRefIdx(eRefPicListX) && !refViewAvailFlag; i++ ) |
---|
2985 | Â Â { |
---|
2986 |    Int viewIdxRefInListX = m_pcSlice->getRefPic(eRefPicListX, i)->getViewIndex(); |
---|
2987 |    if ( viewIdxRefInListX == refViewIdx ) |
---|
2988 | Â Â Â { |
---|
2989 |     refViewAvailFlag   = true; |
---|
2990 | Â Â Â Â predFlag[iRefListIdX]Â =Â 1; |
---|
2991 |     mvVSP[0+iRefListIdX].setMvField( pDInfo->m_acNBDV, i ); |
---|
2992 | #if NH_3D_NBDV |
---|
2993 | Â Â Â Â mvVSP[0+iRefListIdX].getMv().setIDVFlag (false); |
---|
2994 | #endif |
---|
2995 | Â Â Â } |
---|
2996 | Â Â } |
---|
2997 | Â } |
---|
2998 | |
---|
2999 | Â dirVSP =Â (predFlag[0]Â |Â (predFlag[1]Â <<Â 1)); |
---|
3000 |  m_mergCands[MRG_VSP].setCand( mvVSP, dirVSP, true |
---|
3001 | #if NH_3D_SPIVMP |
---|
3002 |   , false |
---|
3003 | #endif |
---|
3004 | Â Â ); |
---|
3005 |  if ( mrgCandIdx == iCount ) |
---|
3006 | Â { |
---|
3007 |   return true; |
---|
3008 | Â } |
---|
3009 | |
---|
3010 | Â iCount++; |
---|
3011 | |
---|
3012 |  return false; |
---|
3013 | } |
---|
3014 | #endif |
---|
3015 | |
---|
3016 | #if NH_3D_IV_MERGE |
---|
3017 | inline Bool TComDataCU::xAddIvMRGCand( Int mrgCandIdx, Int& iCount, Int* ivCandDir, TComMv* ivCandMv, Int* ivCandRefIdx ) |
---|
3018 | { |
---|
3019 | Â for(Int iLoop =Â 0;Â iLoop <Â 2;Â iLoop ++Â )Â |
---|
3020 | Â { |
---|
3021 | Â Â /// iLoop = 0 --> IvMCShift |
---|
3022 |   /// iLoop = 1 --> IvDCShift (Derived from IvDC) |
---|
3023 | Â Â if(ivCandDir[iLoop +Â 2]) |
---|
3024 | Â Â { |
---|
3025 | Â Â Â TComMvField tmpMV[2]; |
---|
3026 | Â Â Â UChar tmpDir =Â ivCandDir[iLoop +Â 2]; |
---|
3027 | Â Â Â if(Â (Â ivCandDir[iLoop +Â 2]Â &Â 1Â )Â ==Â 1Â ) |
---|
3028 | Â Â Â { |
---|
3029 |     tmpMV[0].setMvField( ivCandMv[ (iLoop<<1) + 4 ], ivCandRefIdx[ (iLoop<<1) + 4 ] ); |
---|
3030 | Â Â Â } |
---|
3031 | Â Â Â if(Â (Â ivCandDir[iLoop +Â 2]Â &Â 2Â )Â ==Â 2Â ) |
---|
3032 | Â Â Â { |
---|
3033 |     tmpMV[1].setMvField( ivCandMv[ (iLoop<<1) + 5 ], ivCandRefIdx[ (iLoop<<1) + 5 ] ); |
---|
3034 | Â Â Â } |
---|
3035 | Â Â Â |
---|
3036 | Â Â Â // Prune IvMC vs. IvMcShift |
---|
3037 | Â Â Â Bool bRemove =Â false;Â Â Â |
---|
3038 | Â Â Â if(Â !iLoop &&Â ivCandDir[0]Â >Â 0) |
---|
3039 | Â Â Â { |
---|
3040 | Â Â Â Â if(tmpDir ==Â m_mergCands[MRG_IVMC].m_uDir &&Â m_mergCands[MRG_IVMC].m_cMvField[0]==tmpMV[0]Â &&Â m_mergCands[MRG_IVMC].m_cMvField[1]==tmpMV[1]) |
---|
3041 | Â Â Â Â { |
---|
3042 |       bRemove             = true; |
---|
3043 | Â Â Â Â } |
---|
3044 | Â Â Â } |
---|
3045 | Â Â Â if(!bRemove) |
---|
3046 | Â Â Â { |
---|
3047 | #if NH_3D_NBDV |
---|
3048 | Â Â Â Â if(iLoop)Â // For IvMcShift candidate |
---|
3049 | Â Â Â Â { |
---|
3050 | Â Â Â Â Â tmpMV[0].getMv().setIDVFlag (false); |
---|
3051 | Â Â Â Â Â tmpMV[1].getMv().setIDVFlag (false); |
---|
3052 | Â Â Â Â } |
---|
3053 | #endif |
---|
3054 |     m_mergCands[MRG_IVSHIFT].setCand(tmpMV, tmpDir, false, false); |
---|
3055 | Â Â Â Â if(Â mrgCandIdx ==Â iCount ) |
---|
3056 | Â Â Â Â { |
---|
3057 |      return true; |
---|
3058 | Â Â Â Â } |
---|
3059 | Â Â Â Â iCount++; |
---|
3060 | Â Â Â } |
---|
3061 | Â Â Â break; |
---|
3062 | Â Â } |
---|
3063 | Â } |
---|
3064 |  return false; |
---|
3065 | }Â |
---|
3066 | |
---|
3067 | #endif |
---|
3068 | #if NH_3D_MLC |
---|
3069 | /** Construct a extended list of merging candidates |
---|
3070 | Â * \param pcMvFieldNeighbours |
---|
3071 | Â * \param puhInterDirNeighbours |
---|
3072 | Â * \param vspFlag |
---|
3073 | Â * \param pbSPIVMPFlag |
---|
3074 | Â * \param numValidMergeCand |
---|
3075 | Â */ |
---|
3076 | Void TComDataCU::buildMCL(TComMvField* pcMvFieldNeighbours, UChar* puhInterDirNeighbours |
---|
3077 | #if NH_3D_VSP |
---|
3078 |  , Int* vspFlag |
---|
3079 | #endif |
---|
3080 | #if NH_3D_SPIVMP |
---|
3081 |  , Bool* pbSPIVMPFlag |
---|
3082 | #endif |
---|
3083 |  , Int& numValidMergeCand |
---|
3084 | Â ) |
---|
3085 | { |
---|
3086 |  if (!( getSlice()->getIsDepth() || getSlice()->getViewIndex()>0)) |
---|
3087 | Â { |
---|
3088 | Â Â return; |
---|
3089 | Â } |
---|
3090 | |
---|
3091 | Â Int iCount =Â 0; |
---|
3092 | Â TComMv cZeroMv; |
---|
3093 | |
---|
3094 | Â // init temporal list |
---|
3095 | Â TComMvField extMergeCandList[MRG_MAX_NUM_CANDS_MEM <<Â 1]; |
---|
3096 | Â UChar uhInterDirNeighboursExt[MRG_MAX_NUM_CANDS_MEM]; |
---|
3097 | Â for(Â UInt ui =Â 0;Â ui <Â getSlice()->getMaxNumMergeCand();Â ++ui ) |
---|
3098 | Â { |
---|
3099 | Â Â uhInterDirNeighboursExt[ui]Â =Â puhInterDirNeighbours[ui]; |
---|
3100 |   extMergeCandList[ui<<1].setMvField(cZeroMv, NOT_VALID); |
---|
3101 |   extMergeCandList[(ui<<1)+1].setMvField(cZeroMv, NOT_VALID); |
---|
3102 | #if NH_3D_VSP |
---|
3103 | Â Â vspFlag[ui]Â =Â 0; |
---|
3104 | #endif |
---|
3105 | Â } |
---|
3106 | |
---|
3107 | Â // insert MPI ... IvShift candidate to extMergeCandList |
---|
3108 |  for (Int i=0; i<=MRG_IVSHIFT; i++) |
---|
3109 | Â { |
---|
3110 |   if (m_mergCands[i].m_bAvailable) |
---|
3111 | Â Â { |
---|
3112 |    m_mergCands[i].getCand(iCount, extMergeCandList, uhInterDirNeighboursExt |
---|
3113 | #if NH_3D_VSP |
---|
3114 |     , vspFlag |
---|
3115 | #endif |
---|
3116 | #if NH_3D_SPIVMP |
---|
3117 |     , pbSPIVMPFlag |
---|
3118 | #endif |
---|
3119 | Â Â Â Â ); |
---|
3120 | Â Â Â iCount++; |
---|
3121 |    if (iCount >= getSlice()->getMaxNumMergeCand()) |
---|
3122 | Â Â Â Â break; |
---|
3123 | Â Â } |
---|
3124 | Â } |
---|
3125 | |
---|
3126 | Â Int iCountBase =Â m_numSpatialCands; |
---|
3127 | Â // insert remaining base candidates to extMergeCandList |
---|
3128 |  while (iCount < getSlice()->getMaxNumMergeCand() && iCountBase < getSlice()->getMaxNumMergeCand()) |
---|
3129 | Â { |
---|
3130 | Â Â uhInterDirNeighboursExt[iCount]Â =Â puhInterDirNeighbours[iCountBase]; |
---|
3131 |   extMergeCandList[iCount<<1].setMvField(pcMvFieldNeighbours[iCountBase<<1].getMv(), pcMvFieldNeighbours[iCountBase<<1].getRefIdx()); |
---|
3132 |   if ( getSlice()->isInterB() ) |
---|
3133 | Â Â { |
---|
3134 |    extMergeCandList[(iCount<<1)+1].setMvField(pcMvFieldNeighbours[(iCountBase<<1)+1].getMv(), pcMvFieldNeighbours[(iCountBase<<1)+1].getRefIdx()); |
---|
3135 | Â Â } |
---|
3136 | Â Â iCountBase++; |
---|
3137 | Â Â iCount++; |
---|
3138 | Â } |
---|
3139 | |
---|
3140 | Â for(Â UInt ui =Â 0;Â ui <Â getSlice()->getMaxNumMergeCand();Â ui++Â ) |
---|
3141 | Â { |
---|
3142 | Â Â puhInterDirNeighbours[ui]Â =Â 0; |
---|
3143 |   pcMvFieldNeighbours[ui<<1].setMvField(cZeroMv, NOT_VALID); |
---|
3144 |   pcMvFieldNeighbours[(ui<<1)+1].setMvField(cZeroMv, NOT_VALID); |
---|
3145 | Â } |
---|
3146 | Â // copy extMergeCandList to output |
---|
3147 | Â for(Â UInt ui =Â 0;Â ui <Â getSlice()->getMaxNumMergeCand();Â ui++Â ) |
---|
3148 | Â { |
---|
3149 | Â Â puhInterDirNeighbours[ui]Â =Â uhInterDirNeighboursExt[ui]; |
---|
3150 |   pcMvFieldNeighbours[ui<<1].setMvField(extMergeCandList[ui<<1].getMv(), extMergeCandList[ui<<1].getRefIdx()); |
---|
3151 |   if ( getSlice()->isInterB() ) |
---|
3152 |    pcMvFieldNeighbours[(ui<<1)+1].setMvField(extMergeCandList[(ui<<1)+1].getMv(), extMergeCandList[(ui<<1)+1].getRefIdx()); |
---|
3153 | Â } |
---|
3154 | Â numValidMergeCand =Â iCount; |
---|
3155 | Â assert(iCount ==Â getSlice()->getMaxNumMergeCand()); |
---|
3156 | } |
---|
3157 | |
---|
3158 | |
---|
3159 | |
---|
3160 | /** Derive 3D merge candidates |
---|
3161 | Â * \param uiAbsPartIdx |
---|
3162 | Â * \param uiPUIdx |
---|
3163 | Â * \param pcMvFieldNeighbours |
---|
3164 | Â * \param puhInterDirNeighbours |
---|
3165 | Â * \param pcMvFieldSP |
---|
3166 | Â * \param puhInterDirNeighbours |
---|
3167 | Â * \param numValidMergeCand |
---|
3168 | Â */ |
---|
3169 | Void TComDataCU::xGetInterMergeCandidates( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField* pcMFieldNeighbours, UChar* puhInterDirNeighbours |
---|
3170 | #if NH_3D_SPIVMP |
---|
3171 |    , TComMvField* pcMvFieldSP, UChar* puhInterDirSP |
---|
3172 | #endif |
---|
3173 |    , Int& numValidMergeCand, Int mrgCandIdx |
---|
3174 | ) |
---|
3175 | { |
---|
3176 | #if NH_3D_IV_MERGE |
---|
3177 | Â TComMv cZeroMv; |
---|
3178 | Â TComMvField tmpMV[2];Â |
---|
3179 | #endif |
---|
3180 | |
---|
3181 | Â ////////////////////////////////// |
---|
3182 | Â //////// GET DISPARITIESÂ //////// |
---|
3183 | Â ////////////////////////////////// |
---|
3184 | #if NH_3D_IV_MERGE |
---|
3185 | Â DisInfo cDisInfo =Â getDvInfo(uiAbsPartIdx); |
---|
3186 | Â m_cDefaultDisInfo =Â cDisInfo; |
---|
3187 | #elif NH_3D_VSP |
---|
3188 | Â // for xAddVspCand() |
---|
3189 | Â DisInfo cDisInfo =Â getDvInfo(uiAbsPartIdx); |
---|
3190 | #endif |
---|
3191 | |
---|
3192 |  if (!( getSlice()->getIsDepth() || getSlice()->getViewIndex()>0)) |
---|
3193 | Â { |
---|
3194 | Â Â return; |
---|
3195 | Â } |
---|
3196 | Â numValidMergeCand =Â getSlice()->getMaxNumMergeCand(); |
---|
3197 | Â ////////////////////////////////// |
---|
3198 | Â //////// DERIVE LOCATIONS //////// |
---|
3199 | Â ////////////////////////////////// |
---|
3200 | Â // compute the location of the current PU |
---|
3201 |  Int xP, yP, nPSW, nPSH; |
---|
3202 |  this->getPartPosition(uiPUIdx, xP, yP, nPSW, nPSH); |
---|
3203 | |
---|
3204 | Â Int iCount =Â 0; |
---|
3205 |  UInt uiPartIdxLT, uiPartIdxRT, uiPartIdxLB; |
---|
3206 |  deriveLeftRightTopIdxGeneral( uiAbsPartIdx, uiPUIdx, uiPartIdxLT, uiPartIdxRT ); |
---|
3207 |  deriveLeftBottomIdxGeneral ( uiAbsPartIdx, uiPUIdx, uiPartIdxLB ); |
---|
3208 | #if NH_3D_TEXT_MERGE |
---|
3209 |  Bool bMPIFlag  = getSlice()->getMpiFlag(); |
---|
3210 |  Int tmpDir; |
---|
3211 | #endif |
---|
3212 | #if NH_3D_IV_MERGE || NH_3D_TEXT_MERGE |
---|
3213 | Â Bool bIsDepth =Â getSlice()->getIsDepth(); |
---|
3214 | #endif |
---|
3215 | |
---|
3216 | #if NH_3D_IC |
---|
3217 | Â Bool bICFlag =Â getICFlag(uiAbsPartIdx); |
---|
3218 | #endif |
---|
3219 | #if NH_3D_ARP |
---|
3220 | Â Bool bARPFlag =Â getARPW(uiAbsPartIdx)Â >Â 0; |
---|
3221 | #endif |
---|
3222 | #if NH_3D_DBBP |
---|
3223 | Â Bool bDBBPFlag =Â getDBBPFlag(uiAbsPartIdx); |
---|
3224 | Â assert(bDBBPFlag ==Â getDBBPFlag(0));Â |
---|
3225 | #endif |
---|
3226 | |
---|
3227 | #if NH_3D_NBDV |
---|
3228 | Â for(Int i =Â 0;Â i <Â MRG_MAX_NUM_CANDS_MEM;Â i++)Â |
---|
3229 | Â { |
---|
3230 | Â Â pcMFieldNeighbours[i<<1Â Â ].getMv().setIDVFlag (false); |
---|
3231 | Â Â pcMFieldNeighbours[(i<<1)+1].getMv().setIDVFlag (false); |
---|
3232 | Â } |
---|
3233 | #endif |
---|
3234 | Â // init containers |
---|
3235 |  for (Int i = 0; i<MRG_IVSHIFT+1; i++) |
---|
3236 | Â Â m_mergCands[i].init(); |
---|
3237 | |
---|
3238 | Â m_numSpatialCands =Â 0; |
---|
3239 | |
---|
3240 | Â ////////////////////////////////// |
---|
3241 | Â ///////// GET VSP FLAGS ////////// |
---|
3242 | Â ////////////////////////////////// |
---|
3243 | Â //left |
---|
3244 | Â UInt uiLeftPartIdx =Â 0; |
---|
3245 | Â TComDataCU*Â pcCULeft =Â 0; |
---|
3246 |  pcCULeft = getPULeft( uiLeftPartIdx, uiPartIdxLB ); |
---|
3247 | |
---|
3248 |  if (getAvailableFlagA1()) |
---|
3249 | Â { |
---|
3250 |   m_mergCands[MRG_A1].setCand( &pcMFieldNeighbours[m_numSpatialCands<<1], puhInterDirNeighbours[m_numSpatialCands] |
---|
3251 | #if NH_3D_VSP |
---|
3252 |   , (pcCULeft->getVSPFlag(uiLeftPartIdx) != 0 |
---|
3253 | #if NH_3D_IC |
---|
3254 | Â Â Â &&Â !bICFlag |
---|
3255 | #endif |
---|
3256 | #if NH_3D_ARP |
---|
3257 | Â Â Â &&Â !bARPFlag |
---|
3258 | #endif |
---|
3259 | #if NH_3D_DBBP |
---|
3260 | Â Â Â &&Â !bDBBPFlag |
---|
3261 | #endif |
---|
3262 | Â Â Â ) |
---|
3263 | #endif |
---|
3264 | #if NH_3D_SPIVMP |
---|
3265 |    , false |
---|
3266 | #endif |
---|
3267 | Â Â Â );Â |
---|
3268 | Â Â m_numSpatialCands++; |
---|
3269 | Â } |
---|
3270 | |
---|
3271 | Â // above |
---|
3272 |  if (getAvailableFlagB1()) |
---|
3273 | Â { |
---|
3274 |   m_mergCands[MRG_B1].setCand( &pcMFieldNeighbours[m_numSpatialCands<<1], puhInterDirNeighbours[m_numSpatialCands] |
---|
3275 | #if NH_3D_VSP |
---|
3276 |   , false |
---|
3277 | #endif |
---|
3278 | #if NH_3D_SPIVMP |
---|
3279 |    , false |
---|
3280 | #endif |
---|
3281 | Â Â Â );Â |
---|
3282 | Â Â m_numSpatialCands++; |
---|
3283 | Â } |
---|
3284 | |
---|
3285 | Â // above right |
---|
3286 |  if (getAvailableFlagB0()) |
---|
3287 | Â { |
---|
3288 |   m_mergCands[MRG_B0].setCand( &pcMFieldNeighbours[m_numSpatialCands<<1], puhInterDirNeighbours[m_numSpatialCands] |
---|
3289 | #if NH_3D_VSP |
---|
3290 |   , false |
---|
3291 | #endif |
---|
3292 | #if NH_3D_SPIVMP |
---|
3293 |    , false |
---|
3294 | #endif |
---|
3295 | Â Â Â );Â |
---|
3296 | Â Â m_numSpatialCands++; |
---|
3297 | Â } |
---|
3298 | |
---|
3299 | Â // left bottom |
---|
3300 |  if (getAvailableFlagA0()) |
---|
3301 | Â { |
---|
3302 |   m_mergCands[MRG_A0].setCand( &pcMFieldNeighbours[m_numSpatialCands<<1], puhInterDirNeighbours[m_numSpatialCands] |
---|
3303 | #if NH_3D_VSP |
---|
3304 |   , false |
---|
3305 | #endif |
---|
3306 | #if NH_3D_SPIVMP |
---|
3307 |    , false |
---|
3308 | #endif |
---|
3309 | Â Â Â );Â |
---|
3310 | Â Â m_numSpatialCands++; |
---|
3311 | Â } |
---|
3312 | |
---|
3313 | Â // above left |
---|
3314 |  if (getAvailableFlagB2()) |
---|
3315 | Â { |
---|
3316 |   m_mergCands[MRG_B2].setCand( &pcMFieldNeighbours[m_numSpatialCands<<1], puhInterDirNeighbours[m_numSpatialCands] |
---|
3317 | #if NH_3D_VSP |
---|
3318 |   , false |
---|
3319 | #endif |
---|
3320 | #if NH_3D_SPIVMP |
---|
3321 |    , false |
---|
3322 | #endif |
---|
3323 | Â Â Â );Â |
---|
3324 | Â Â m_numSpatialCands++; |
---|
3325 | Â } |
---|
3326 | |
---|
3327 | |
---|
3328 | #if NH_3D_TEXT_MERGE |
---|
3329 | |
---|
3330 | Â ///////////////////////////////////////////// |
---|
3331 | Â //////// TEXTURE MERGE CANDIDATE (T) //////// |
---|
3332 | Â ///////////////////////////////////////////// |
---|
3333 | |
---|
3334 | Â bMPIFlag &=Â (nPSW +Â nPSH >Â 12); |
---|
3335 | Â if(Â bMPIFlag) |
---|
3336 | Â { |
---|
3337 |   tmpMV[0].setMvField( cZeroMv, NOT_VALID ); |
---|
3338 |   tmpMV[1].setMvField( cZeroMv, NOT_VALID ); |
---|
3339 |   tmpDir    = 0; |
---|
3340 | |
---|
3341 | Â Â Bool bSPIVMPFlag =Â false; |
---|
3342 | |
---|
3343 | Â Â TComPic *Â pcTexPic =Â m_pcSlice->getTexturePic(); |
---|
3344 | #if H_3D_FCO |
---|
3345 |   if (pcTexPic && pcTexPic->getReconMark()) |
---|
3346 | Â Â { |
---|
3347 | #endif  |
---|
3348 |    TComPicYuv*  pcTexRec = pcTexPic->getPicYuvRec (); |
---|
3349 |    UInt     uiPartAddr; |
---|
3350 |    Int      iWidth, iHeight; |
---|
3351 |    Int      iCurrPosX, iCurrPosY; |
---|
3352 | |
---|
3353 |    this->getPartIndexAndSize( uiPUIdx, uiPartAddr, iWidth, iHeight ); |
---|
3354 |    pcTexRec->getTopLeftSamplePos( this->getCtuRsAddr(), this->getZorderIdxInCtu() + uiPartAddr, iCurrPosX, iCurrPosY ); |
---|
3355 | |
---|
3356 |    Int iPUWidth, iPUHeight, iNumPart, iNumPartLine; |
---|
3357 |    this->getSPPara(iWidth, iHeight, iNumPart, iNumPartLine, iPUWidth, iPUHeight); |
---|
3358 | |
---|
3359 |    for (Int i=0; i<iNumPart; i++) |
---|
3360 | Â Â Â { |
---|
3361 | Â Â Â Â puhInterDirSP[i]Â =Â 0; |
---|
3362 |     pcMvFieldSP[2*i].getMv().set(0, 0); |
---|
3363 |     pcMvFieldSP[2*i+1].getMv().set(0, 0); |
---|
3364 | Â Â Â Â pcMvFieldSP[2*i].setRefIdx(-1); |
---|
3365 | Â Â Â Â pcMvFieldSP[2*i+1].setRefIdx(-1); |
---|
3366 | Â Â Â } |
---|
3367 | |
---|
3368 |    Int     iTexCUAddr; |
---|
3369 |    Int     iTexAbsPartIdx; |
---|
3370 | Â Â Â TComDataCU*Â pcTexCU; |
---|
3371 | Â Â Â Int iPartition =Â 0; |
---|
3372 | Â Â Â Int iInterDirSaved =Â 0; |
---|
3373 | Â Â Â TComMvField cMvFieldSaved[2]; |
---|
3374 | |
---|
3375 | Â Â Â Int iOffsetX =Â iPUWidth/2;; |
---|
3376 | Â Â Â Int iOffsetY =Â iPUHeight/2; |
---|
3377 | |
---|
3378 |    Int     iTexPosX, iTexPosY; |
---|
3379 | #if NH_3D_INTEGER_MV_DEPTH |
---|
3380 |    const TComMv cMvRounding( 1 << ( 2 - 1 ), 1 << ( 2 - 1 ) ); |
---|
3381 | #endif |
---|
3382 |    Int     iCenterPosX = iCurrPosX + ( ( iWidth / iPUWidth ) >> 1 ) * iPUWidth + ( iPUWidth >> 1 ); |
---|
3383 |    Int     iCenterPosY = iCurrPosY + ( ( iHeight / iPUHeight ) >> 1 ) * iPUHeight + (iPUHeight >> 1); |
---|
3384 |    Int     iTexCenterCUAddr, iTexCenterAbsPartIdx; |
---|
3385 | |
---|
3386 | Â Â Â if(iWidth ==Â iPUWidth &&Â iHeight ==Â iPUHeight) |
---|
3387 | Â Â Â { |
---|
3388 | Â Â Â Â iCenterPosX =Â iCurrPosX +Â (iWidth >>Â 1); |
---|
3389 | Â Â Â Â iCenterPosY =Â iCurrPosY +Â (iHeight >>Â 1); |
---|
3390 | Â Â Â } |
---|
3391 | |
---|
3392 | Â Â Â // derivation of center motion parameters from the collocated texture CU |
---|
3393 | |
---|
3394 |    pcTexRec->getCUAddrAndPartIdx( iCenterPosX , iCenterPosY , iTexCenterCUAddr, iTexCenterAbsPartIdx ); |
---|
3395 | Â Â Â TComDataCU*Â pcDefaultCUÂ Â =Â pcTexPic->getCtu(Â iTexCenterCUAddr ); |
---|
3396 | |
---|
3397 | Â Â Â if(Â pcDefaultCU->getPredictionMode(Â iTexCenterAbsPartIdx )Â !=Â MODE_INTRA ) |
---|
3398 | Â Â Â { |
---|
3399 | Â Â Â Â for(Â UInt uiCurrRefListId =Â 0;Â uiCurrRefListId <Â 2;Â uiCurrRefListId++Â ) |
---|
3400 | Â Â Â Â { |
---|
3401 |      RefPicList eCurrRefPicList = RefPicList( uiCurrRefListId ); |
---|
3402 | |
---|
3403 | Â Â Â Â Â TComMvField cDefaultMvField; |
---|
3404 |      pcDefaultCU->getMvField( pcDefaultCU, iTexCenterAbsPartIdx, eCurrRefPicList, cDefaultMvField ); |
---|
3405 |      Int     iDefaultRefIdx   = cDefaultMvField.getRefIdx(); |
---|
3406 |      if (iDefaultRefIdx >= 0) |
---|
3407 | Â Â Â Â Â { |
---|
3408 |       Int iDefaultRefPOC = pcDefaultCU->getSlice()->getRefPOC(eCurrRefPicList, iDefaultRefIdx); |
---|
3409 |       for (Int iRefPicList = 0; iRefPicList < m_pcSlice->getNumRefIdx( eCurrRefPicList ); iRefPicList++) |
---|
3410 | Â Â Â Â Â Â { |
---|
3411 |        if (iDefaultRefPOC == m_pcSlice->getRefPOC(eCurrRefPicList, iRefPicList)) |
---|
3412 | Â Â Â Â Â Â Â { |
---|
3413 | Â Â Â Â Â Â Â Â bSPIVMPFlag =Â true; |
---|
3414 | #if NH_3D_INTEGER_MV_DEPTH |
---|
3415 | Â Â Â Â Â Â Â Â TComMv cMv =Â cDefaultMvField.getMv()Â +Â cMvRounding; |
---|
3416 | Â Â Â Â Â Â Â Â cMv >>=Â 2; |
---|
3417 | #else |
---|
3418 | Â Â Â Â Â Â Â Â TComMv cMv =Â cDefaultMvField.getMv(); |
---|
3419 | #endif |
---|
3420 |         cMvFieldSaved[eCurrRefPicList].setMvField(cMv, iRefPicList) ; |
---|
3421 | Â Â Â Â Â Â Â Â break; |
---|
3422 | Â Â Â Â Â Â Â } |
---|
3423 | Â Â Â Â Â Â } |
---|
3424 | Â Â Â Â Â } |
---|
3425 | Â Â Â Â } |
---|
3426 | Â Â Â } |
---|
3427 |    if ( bSPIVMPFlag == true ) |
---|
3428 | Â Â Â {Â Â |
---|
3429 |     iInterDirSaved = (cMvFieldSaved[0].getRefIdx()!=-1 ? 1: 0) + (cMvFieldSaved[1].getRefIdx()!=-1 ? 2: 0); |
---|
3430 | Â Â Â Â tmpDir =Â iInterDirSaved; |
---|
3431 | Â Â Â Â tmpMV[0]Â =Â cMvFieldSaved[0]; |
---|
3432 | Â Â Â Â tmpMV[1]Â =Â cMvFieldSaved[1]; |
---|
3433 | Â Â Â } |
---|
3434 | |
---|
3435 |    if ( iInterDirSaved != 0 ) |
---|
3436 | Â Â Â { |
---|
3437 |     for (Int i=iCurrPosY; i < iCurrPosY + iHeight; i += iPUHeight) |
---|
3438 | Â Â Â Â { |
---|
3439 |      for (Int j = iCurrPosX; j < iCurrPosX + iWidth; j += iPUWidth) |
---|
3440 | Â Â Â Â Â { |
---|
3441 | Â Â Â Â Â Â iTexPosXÂ Â Â =Â j +Â iOffsetX; |
---|
3442 | Â Â Â Â Â Â iTexPosYÂ Â Â =Â i +Â iOffsetY;Â |
---|
3443 |       pcTexRec->getCUAddrAndPartIdx( iTexPosX, iTexPosY, iTexCUAddr, iTexAbsPartIdx ); |
---|
3444 | Â Â Â Â Â Â pcTexCUÂ =Â pcTexPic->getCtu(Â iTexCUAddr ); |
---|
3445 | |
---|
3446 | Â Â Â Â Â Â if(Â pcTexCU &&Â !pcTexCU->isIntra(iTexAbsPartIdx)Â ) |
---|
3447 | Â Â Â Â Â Â { |
---|
3448 | Â Â Â Â Â Â Â for(Â UInt uiCurrRefListId =Â 0;Â uiCurrRefListId <Â 2;Â uiCurrRefListId++Â ) |
---|
3449 | Â Â Â Â Â Â Â { |
---|
3450 |         RefPicList eCurrRefPicList = RefPicList( uiCurrRefListId ); |
---|
3451 | Â Â Â Â Â Â Â Â TComMvField cTexMvField; |
---|
3452 |         pcTexCU->getMvField( pcTexCU, iTexAbsPartIdx, eCurrRefPicList, cTexMvField ); |
---|
3453 |         Int iValidDepRef = getPic()->isTextRefValid( eCurrRefPicList, cTexMvField.getRefIdx() ); |
---|
3454 | Â Â Â Â Â Â Â Â if(Â (cTexMvField.getRefIdx()>=0)Â &&Â (Â iValidDepRef >=Â 0Â )Â ) |
---|
3455 | Â Â Â Â Â Â Â Â { |
---|
3456 | #if NH_3D_INTEGER_MV_DEPTH |
---|
3457 | Â Â Â Â Â Â Â Â Â TComMv cMv =Â cTexMvField.getMv()Â +Â cMvRounding; |
---|
3458 | Â Â Â Â Â Â Â Â Â cMv >>=2;Â Â Â Â Â |
---|
3459 | #else |
---|
3460 | Â Â Â Â Â Â Â Â Â TComMv cMv =Â cTexMvField.getMv(); |
---|
3461 | #endif     |
---|
3462 |          pcMvFieldSP[2*iPartition + uiCurrRefListId].setMvField(cMv, iValidDepRef); |
---|
3463 | Â Â Â Â Â Â Â Â } |
---|
3464 | Â Â Â Â Â Â Â } |
---|
3465 | Â Â Â Â Â Â } |
---|
3466 |       puhInterDirSP[iPartition] = (pcMvFieldSP[2*iPartition].getRefIdx()!=-1 ? 1: 0) + (pcMvFieldSP[2*iPartition+1].getRefIdx()!=-1 ? 2: 0); |
---|
3467 |       if (puhInterDirSP[iPartition] == 0) |
---|
3468 | Â Â Â Â Â Â { |
---|
3469 |        if (iInterDirSaved != 0) |
---|
3470 | Â Â Â Â Â Â Â { |
---|
3471 | Â Â Â Â Â Â Â Â puhInterDirSP[iPartition]Â =Â iInterDirSaved; |
---|
3472 | Â Â Â Â Â Â Â Â pcMvFieldSP[2*iPartition]Â =Â cMvFieldSaved[0]; |
---|
3473 | Â Â Â Â Â Â Â Â pcMvFieldSP[2*iPartition +Â 1]Â =Â cMvFieldSaved[1]; |
---|
3474 | Â Â Â Â Â Â Â } |
---|
3475 | Â Â Â Â Â Â } |
---|
3476 | |
---|
3477 | Â Â Â Â Â Â iPartition ++; |
---|
3478 | Â Â Â Â Â } |
---|
3479 | Â Â Â Â } |
---|
3480 | Â Â Â } |
---|
3481 | #if H_3D_FCO |
---|
3482 | Â Â } |
---|
3483 | #endif |
---|
3484 | Â Â if(Â tmpDir !=Â 0Â ) |
---|
3485 | Â Â { |
---|
3486 | Â Â Â Int iCnloop =Â 0; |
---|
3487 | Â Â Â for(iCnloop =Â 0;Â iCnloop <Â 2;Â iCnloop ++) |
---|
3488 | Â Â Â { |
---|
3489 |     if ( !m_mergCands[MRG_A1+iCnloop].m_bAvailable ) // prunning to A1, B1 |
---|
3490 | Â Â Â Â { |
---|
3491 | Â Â Â Â Â continue; |
---|
3492 | Â Â Â Â } |
---|
3493 |     if (tmpDir == m_mergCands[MRG_A1+iCnloop].m_uDir && tmpMV[0]==m_mergCands[MRG_A1+iCnloop].m_cMvField[0] && tmpMV[1]==m_mergCands[MRG_A1+iCnloop].m_cMvField[1]) |
---|
3494 | Â Â Â Â { |
---|
3495 | Â Â Â Â Â m_mergCands[MRG_A1+iCnloop].m_bAvailable =Â false; |
---|
3496 | Â Â Â Â Â break; |
---|
3497 | Â Â Â Â }Â Â Â |
---|
3498 | Â Â Â } |
---|
3499 |    m_mergCands[MRG_T].setCand( tmpMV, tmpDir, false, bSPIVMPFlag); |
---|
3500 | |
---|
3501 |    if ( mrgCandIdx == iCount ) |
---|
3502 | Â Â Â { |
---|
3503 | Â Â Â Â return; |
---|
3504 | Â Â Â } |
---|
3505 | Â Â Â iCount ++; |
---|
3506 | Â Â } |
---|
3507 | Â } |
---|
3508 | #endif |
---|
3509 | |
---|
3510 | #if NH_3D_IV_MERGE |
---|
3511 | Â ///////////////////////////////////////////////////////////////// |
---|
3512 | Â //////// DERIVE IvMC, IvMCShift,IvDCShift, IvDCÂ Candidates ///// |
---|
3513 | Â ///////////////////////////////////////////////////////////////// |
---|
3514 | |
---|
3515 | Â // { IvMCL0, IvMCL1, IvDCL0, IvDCL1, IvMCL0Shift, IvMCL1Shift, IvDCL0Shift, IvDCL1Shift };Â |
---|
3516 | Â // An enumerator would be appropriate here! |
---|
3517 |  TComMv ivCandMv  [8]; |
---|
3518 |  Int  ivCandRefIdx[8] = {-1, -1, -1, -1, -1, -1, -1, -1}; |
---|
3519 | |
---|
3520 | Â // { IvMC, IvDC, IvMCShift, IvDCShift };Â |
---|
3521 |  Int  ivCandDir  [4] = {0, 0, 0, 0}; |
---|
3522 | |
---|
3523 |  Bool ivMvPredFlag  = getSlice()->getIvMvPredFlag(); |
---|
3524 | |
---|
3525 | Â ivMvPredFlag &=Â (nPSW +Â nPSH >Â 12); |
---|
3526 |  if ( ivMvPredFlag && cDisInfo.m_aVIdxCan!=-1) |
---|
3527 | Â { |
---|
3528 | #if NH_3D_IC |
---|
3529 |   getInterViewMergeCands(uiPUIdx, ivCandRefIdx, ivCandMv, &cDisInfo, ivCandDir , bIsDepth, pcMvFieldSP, puhInterDirSP, bICFlag ); |
---|
3530 | #else |
---|
3531 |   getInterViewMergeCands(uiPUIdx, ivCandRefIdx, ivCandMv, &cDisInfo, ivCandDir , bIsDepth, pcMvFieldSP, puhInterDirSP, false ); |
---|
3532 | #endif |
---|
3533 | Â }Â |
---|
3534 | |
---|
3535 | Â /////////////////////////////////////////////// |
---|
3536 | Â //////// INTER VIEW MOTION COMP(IvMC) ///////// |
---|
3537 | Â /////////////////////////////////////////////// |
---|
3538 | Â if(Â getSlice()->getIsDepth()Â ) |
---|
3539 | Â { |
---|
3540 | Â Â ivCandDir[1]Â =Â ivCandDir[2]Â =Â ivCandDir[3]Â =Â 0; |
---|
3541 | Â } |
---|
3542 | |
---|
3543 | Â if(Â ivCandDir[0]Â ) |
---|
3544 | Â { |
---|
3545 |   tmpMV[0].setMvField( cZeroMv, NOT_VALID ); |
---|
3546 |   tmpMV[1].setMvField( cZeroMv, NOT_VALID ); |
---|
3547 | |
---|
3548 | Â Â if(Â (Â ivCandDir[0]Â &Â 1Â )Â ==Â 1Â ) |
---|
3549 | Â Â { |
---|
3550 |    tmpMV[0].setMvField( ivCandMv[ 0 ], ivCandRefIdx[ 0 ] ); |
---|
3551 | Â Â } |
---|
3552 | Â Â if(Â (Â ivCandDir[0]Â &Â 2Â )Â ==Â 2Â ) |
---|
3553 | Â Â { |
---|
3554 |    tmpMV[1].setMvField( ivCandMv[ 1 ], ivCandRefIdx[ 1 ] ); |
---|
3555 | Â Â } |
---|
3556 | |
---|
3557 | Â Â Bool bRemoveSpa =Â false;Â //pruning |
---|
3558 | |
---|
3559 |   if (!bIsDepth) |
---|
3560 | Â Â { |
---|
3561 | Â Â Â for(Int i =Â 0;Â i <Â 2;Â i ++) |
---|
3562 | Â Â Â { |
---|
3563 |     if ( !m_mergCands[MRG_A1 + i].m_bAvailable ) // prunning to A1, B1 |
---|
3564 | Â Â Â Â { |
---|
3565 | Â Â Â Â Â continue; |
---|
3566 | Â Â Â Â } |
---|
3567 |     if (ivCandDir[0] == m_mergCands[MRG_A1+i].m_uDir && tmpMV[0]==m_mergCands[MRG_A1+i].m_cMvField[0] && tmpMV[1]==m_mergCands[MRG_A1+i].m_cMvField[1]) |
---|
3568 | Â Â Â Â { |
---|
3569 | Â Â Â Â Â m_mergCands[MRG_A1+i].m_bAvailable =Â false; |
---|
3570 | Â Â Â Â Â break; |
---|
3571 | Â Â Â Â }Â Â Â |
---|
3572 | Â Â Â } |
---|
3573 | Â Â } |
---|
3574 |   if (bIsDepth) |
---|
3575 | Â Â { |
---|
3576 |    if (m_mergCands[MRG_T].m_bAvailable && ivCandDir[0] == m_mergCands[MRG_T].m_uDir && tmpMV[0]==m_mergCands[MRG_T].m_cMvField[0] && tmpMV[1]==m_mergCands[MRG_T].m_cMvField[1]) |
---|
3577 | Â Â Â { |
---|
3578 |     bRemoveSpa           = true; |
---|
3579 | Â Â Â } |
---|
3580 | Â Â } |
---|
3581 |   if (!bRemoveSpa) |
---|
3582 | Â Â { |
---|
3583 | Â Â Â Bool spiMvpFlag =Â false; |
---|
3584 | Â Â Â if(!m_pcSlice->getIsDepth()) |
---|
3585 | Â Â Â { |
---|
3586 | Â Â Â Â spiMvpFlag =Â true; |
---|
3587 | Â Â Â } |
---|
3588 | #if NH_3D_DBBP |
---|
3589 | Â Â Â spiMvpFlag &=Â !bDBBPFlag; |
---|
3590 | #endif |
---|
3591 | |
---|
3592 |    m_mergCands[MRG_IVMC].setCand( tmpMV, ivCandDir[0], false, spiMvpFlag); |
---|
3593 | |
---|
3594 |    if ( mrgCandIdx == iCount ) |
---|
3595 | Â Â Â { |
---|
3596 | Â Â Â Â return; |
---|
3597 | Â Â Â } |
---|
3598 | Â Â Â iCount ++; |
---|
3599 | Â Â } |
---|
3600 | Â }Â |
---|
3601 | |
---|
3602 | Â // early termination |
---|
3603 |  if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3604 | Â { |
---|
3605 | Â Â return; |
---|
3606 | Â } |
---|
3607 | #endif |
---|
3608 | |
---|
3609 | Â iCount +=Â m_mergCands[MRG_A1].m_bAvailable +Â m_mergCands[MRG_B1].m_bAvailable; |
---|
3610 | |
---|
3611 | #if NH_3D_VSP |
---|
3612 | Â ///////////////////////////////////////////////// |
---|
3613 | Â //////// VIEW SYNTHESIS PREDICTION (VSP) //////// |
---|
3614 | Â ///////////////////////////////////////////////// |
---|
3615 |  if (iCount<getSlice()->getMaxNumMergeCand()) |
---|
3616 | Â { |
---|
3617 |   if ( |
---|
3618 | Â Â Â (!getAvailableFlagA1()Â ||Â !(pcCULeft->getVSPFlag(uiLeftPartIdx)Â !=Â 0))Â && |
---|
3619 | #if NH_3D_IC |
---|
3620 | Â Â Â !bICFlag && |
---|
3621 | #endif |
---|
3622 | #if NH_3D_ARP |
---|
3623 | Â Â Â !bARPFlag && |
---|
3624 | #endif |
---|
3625 | #if H_3D |
---|
3626 | Â Â Â (nPSW +Â nPSH >Â 12)Â && |
---|
3627 | #endif |
---|
3628 | #if NH_3D_DBBP |
---|
3629 | Â Â Â !bDBBPFlag && |
---|
3630 | #endif |
---|
3631 |    xAddVspCand( mrgCandIdx, &cDisInfo, iCount ) ) |
---|
3632 | Â Â { |
---|
3633 | Â Â Â return; |
---|
3634 | Â Â } |
---|
3635 | |
---|
3636 | Â Â // early termination |
---|
3637 |   if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3638 | Â Â { |
---|
3639 | Â Â Â return; |
---|
3640 | Â Â } |
---|
3641 | Â } |
---|
3642 | #endif |
---|
3643 | |
---|
3644 | Â iCount +=Â m_mergCands[MRG_B0].m_bAvailable; |
---|
3645 | |
---|
3646 | #if NH_3D_IV_MERGE |
---|
3647 | Â ///////////////////////////////////////////// |
---|
3648 | Â //////// INTER VIEW DISP COMP (IvDC) //////// |
---|
3649 | Â ///////////////////////////////////////////// |
---|
3650 | Â if(Â ivCandDir[1]Â &&Â iCount <Â getSlice()->getMaxNumMergeCand()Â &&Â !getSlice()->getIsDepth()Â ) |
---|
3651 | Â { |
---|
3652 | Â Â assert(iCount <Â getSlice()->getMaxNumMergeCand()); |
---|
3653 | |
---|
3654 |   tmpMV[0].setMvField( cZeroMv, NOT_VALID ); |
---|
3655 |   tmpMV[1].setMvField( cZeroMv, NOT_VALID ); |
---|
3656 | Â Â if(Â (Â ivCandDir[1]Â &Â 1Â )Â ==Â 1Â ) |
---|
3657 | Â Â { |
---|
3658 |    tmpMV[0].setMvField( ivCandMv[ 2 ], ivCandRefIdx[ 2 ] ); |
---|
3659 | Â Â } |
---|
3660 | Â Â if(Â (Â ivCandDir[1]Â &Â 2Â )Â ==Â 2Â ) |
---|
3661 | Â Â { |
---|
3662 |    tmpMV[1].setMvField( ivCandMv[ 3 ], ivCandRefIdx[ 3 ] ); |
---|
3663 | Â Â } |
---|
3664 | |
---|
3665 | Â Â Bool bRemoveSpa =Â false;Â //pruning to A1, B1 |
---|
3666 | Â Â for(Int i =Â 0;Â i <Â 2;Â i ++) |
---|
3667 | Â Â { |
---|
3668 |    if ( !m_mergCands[MRG_A1+i].m_bAvailable ) |
---|
3669 | Â Â Â { |
---|
3670 | Â Â Â Â continue; |
---|
3671 | Â Â Â } |
---|
3672 |    if (ivCandDir[1] == m_mergCands[MRG_A1+i].m_uDir && tmpMV[0]==m_mergCands[MRG_A1+i].m_cMvField[0] && tmpMV[1]==m_mergCands[MRG_A1+i].m_cMvField[1]) |
---|
3673 | Â Â Â { |
---|
3674 |     bRemoveSpa           = true; |
---|
3675 | Â Â Â Â break; |
---|
3676 | Â Â Â }Â Â Â |
---|
3677 | Â Â } |
---|
3678 | Â Â if(!bRemoveSpa) |
---|
3679 | Â Â { |
---|
3680 | #if NH_3D_NBDV |
---|
3681 | Â Â Â tmpMV[0].getMv().setIDVFlag (false); |
---|
3682 | Â Â Â tmpMV[1].getMv().setIDVFlag (false); |
---|
3683 | #endif |
---|
3684 |    m_mergCands[MRG_IVDC].setCand( tmpMV, ivCandDir[1], false, false); |
---|
3685 | |
---|
3686 |    if ( mrgCandIdx == iCount ) |
---|
3687 | Â Â Â Â return; |
---|
3688 | Â Â Â iCount ++; |
---|
3689 | |
---|
3690 | Â Â Â // early termination |
---|
3691 |    if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3692 | Â Â Â { |
---|
3693 | Â Â Â Â return; |
---|
3694 | Â Â Â } |
---|
3695 | Â Â } |
---|
3696 | Â }Â |
---|
3697 | #endif // H_3D_IV_MERGE |
---|
3698 | |
---|
3699 | Â iCount +=Â m_mergCands[MRG_A0].m_bAvailable +Â m_mergCands[MRG_B2].m_bAvailable; |
---|
3700 | |
---|
3701 | #if NH_3D_IV_MERGE |
---|
3702 | Â //////////////////////////////////////////////////// |
---|
3703 | Â //////// SHIFTED IV (IvMCShift + IvDCShift) //////// |
---|
3704 | Â //////////////////////////////////////////////////// |
---|
3705 | Â if(Â ivMvPredFlag &&Â iCount <Â getSlice()->getMaxNumMergeCand()Â &&Â !getSlice()->getIsDepth()Â )Â |
---|
3706 | Â { |
---|
3707 |   if(xAddIvMRGCand( mrgCandIdx, iCount, ivCandDir, ivCandMv, ivCandRefIdx ) ) |
---|
3708 | Â Â { |
---|
3709 | Â Â Â return; |
---|
3710 | Â Â } |
---|
3711 | Â Â //early termination |
---|
3712 |   if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3713 | Â Â { |
---|
3714 | Â Â Â return; |
---|
3715 | Â Â } |
---|
3716 | Â } |
---|
3717 | #endif |
---|
3718 | } |
---|
3719 | #endif |
---|
3720 | |
---|
3721 | //! Construct a list of merging candidates |
---|
3722 | Void TComDataCU::getInterMergeCandidates( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField* pcMvFieldNeighbours, UChar* puhInterDirNeighbours, Int& numValidMergeCand, Int mrgCandIdx ) |
---|
3723 | { |
---|
3724 | Â UInt uiAbsPartAddr =Â m_absZIdxInCtu +Â uiAbsPartIdx; |
---|
3725 | #if NH_3D_MLC |
---|
3726 | Â Bool abCandIsInter[Â MRG_MAX_NUM_CANDS_MEM ]; |
---|
3727 | #else |
---|
3728 | Â Bool abCandIsInter[Â MRG_MAX_NUM_CANDS ]; |
---|
3729 | #endif |
---|
3730 | Â for(Â UInt ui =Â 0;Â ui <Â getSlice()->getMaxNumMergeCand();Â ++ui ) |
---|
3731 | Â { |
---|
3732 | Â Â abCandIsInter[ui]Â =Â false; |
---|
3733 | Â Â pcMvFieldNeighbours[Â (Â ui <<Â 1Â )Â Â Â ].setRefIdx(NOT_VALID); |
---|
3734 | Â Â pcMvFieldNeighbours[Â (Â ui <<Â 1Â )Â +Â 1Â ].setRefIdx(NOT_VALID); |
---|
3735 | Â } |
---|
3736 | Â numValidMergeCand =Â getSlice()->getMaxNumMergeCand(); |
---|
3737 | Â // compute the location of the current PU |
---|
3738 |  Int xP, yP, nPSW, nPSH; |
---|
3739 |  this->getPartPosition(uiPUIdx, xP, yP, nPSW, nPSH); |
---|
3740 | |
---|
3741 | Â Int iCount =Â 0; |
---|
3742 | |
---|
3743 |  UInt uiPartIdxLT, uiPartIdxRT, uiPartIdxLB; |
---|
3744 | Â PartSize cCurPS =Â getPartitionSize(Â uiAbsPartIdx ); |
---|
3745 |  deriveLeftRightTopIdxGeneral( uiAbsPartIdx, uiPUIdx, uiPartIdxLT, uiPartIdxRT ); |
---|
3746 |  deriveLeftBottomIdxGeneral( uiAbsPartIdx, uiPUIdx, uiPartIdxLB ); |
---|
3747 | |
---|
3748 | Â //left |
---|
3749 | Â UInt uiLeftPartIdx =Â 0; |
---|
3750 | Â TComDataCU*Â pcCULeft =Â 0; |
---|
3751 |  pcCULeft = getPULeft( uiLeftPartIdx, uiPartIdxLB ); |
---|
3752 | |
---|
3753 | Â Bool isAvailableA1 =Â pcCULeft && |
---|
3754 |             pcCULeft->isDiffMER(xP -1, yP+nPSH-1, xP, yP) && |
---|
3755 | Â Â Â Â Â Â Â Â Â Â Â Â !(Â uiPUIdx ==Â 1Â &&Â (cCurPS ==Â SIZE_Nx2N ||Â cCurPS ==Â SIZE_nLx2N ||Â cCurPS ==Â SIZE_nRx2N)Â )Â && |
---|
3756 | Â Â Â Â Â Â Â Â Â Â Â Â pcCULeft->isInter(Â uiLeftPartIdx )Â ; |
---|
3757 | |
---|
3758 |  if ( isAvailableA1 ) |
---|
3759 | Â { |
---|
3760 | #if NH_3D_MLC |
---|
3761 | Â Â m_bAvailableFlagA1 =Â 1; |
---|
3762 | #endif |
---|
3763 | Â Â abCandIsInter[iCount]Â =Â true; |
---|
3764 | Â Â // get Inter Dir |
---|
3765 | Â Â puhInterDirNeighbours[iCount]Â =Â pcCULeft->getInterDir(Â uiLeftPartIdx ); |
---|
3766 | Â Â // get Mv from Left |
---|
3767 |   pcCULeft->getMvField( pcCULeft, uiLeftPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount<<1] ); |
---|
3768 |   if ( getSlice()->isInterB() ) |
---|
3769 | Â Â { |
---|
3770 |    pcCULeft->getMvField( pcCULeft, uiLeftPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount<<1)+1] ); |
---|
3771 | Â Â } |
---|
3772 |   if ( mrgCandIdx == iCount ) |
---|
3773 | Â Â { |
---|
3774 | Â Â Â return; |
---|
3775 | Â Â } |
---|
3776 | Â Â iCount ++; |
---|
3777 | Â } |
---|
3778 | |
---|
3779 | Â // early termination |
---|
3780 |  if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3781 | Â { |
---|
3782 | Â Â return; |
---|
3783 | Â } |
---|
3784 | Â // above |
---|
3785 | Â UInt uiAbovePartIdx =Â 0; |
---|
3786 | Â TComDataCU*Â pcCUAbove =Â 0; |
---|
3787 |  pcCUAbove = getPUAbove( uiAbovePartIdx, uiPartIdxRT ); |
---|
3788 | |
---|
3789 | Â Bool isAvailableB1 =Â pcCUAbove && |
---|
3790 |             pcCUAbove->isDiffMER(xP+nPSW-1, yP-1, xP, yP) && |
---|
3791 | Â Â Â Â Â Â Â Â Â Â Â Â !(Â uiPUIdx ==Â 1Â &&Â (cCurPS ==Â SIZE_2NxN ||Â cCurPS ==Â SIZE_2NxnU ||Â cCurPS ==Â SIZE_2NxnD)Â )Â && |
---|
3792 | Â Â Â Â Â Â Â Â Â Â Â Â pcCUAbove->isInter(Â uiAbovePartIdx ); |
---|
3793 | |
---|
3794 |  if ( isAvailableB1 && (!isAvailableA1 || !pcCULeft->hasEqualMotion( uiLeftPartIdx, pcCUAbove, uiAbovePartIdx ) ) ) |
---|
3795 | Â { |
---|
3796 | #if NH_3D_MLC |
---|
3797 | Â Â m_bAvailableFlagB1 =Â 1; |
---|
3798 | #endif |
---|
3799 | Â Â abCandIsInter[iCount]Â =Â true; |
---|
3800 | Â Â // get Inter Dir |
---|
3801 | Â Â puhInterDirNeighbours[iCount]Â =Â pcCUAbove->getInterDir(Â uiAbovePartIdx ); |
---|
3802 | Â Â // get Mv from Left |
---|
3803 |   pcCUAbove->getMvField( pcCUAbove, uiAbovePartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount<<1] ); |
---|
3804 |   if ( getSlice()->isInterB() ) |
---|
3805 | Â Â { |
---|
3806 |    pcCUAbove->getMvField( pcCUAbove, uiAbovePartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount<<1)+1] ); |
---|
3807 | Â Â } |
---|
3808 |   if ( mrgCandIdx == iCount ) |
---|
3809 | Â Â { |
---|
3810 | Â Â Â return; |
---|
3811 | Â Â } |
---|
3812 | Â Â iCount ++; |
---|
3813 | Â } |
---|
3814 | Â // early termination |
---|
3815 |  if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3816 | Â { |
---|
3817 | Â Â return; |
---|
3818 | Â } |
---|
3819 | |
---|
3820 | Â // above right |
---|
3821 | Â UInt uiAboveRightPartIdx =Â 0; |
---|
3822 | Â TComDataCU*Â pcCUAboveRight =Â 0; |
---|
3823 |  pcCUAboveRight = getPUAboveRight( uiAboveRightPartIdx, uiPartIdxRT ); |
---|
3824 | |
---|
3825 | Â Bool isAvailableB0 =Â pcCUAboveRight && |
---|
3826 |             pcCUAboveRight->isDiffMER(xP+nPSW, yP-1, xP, yP) && |
---|
3827 | Â Â Â Â Â Â Â Â Â Â Â Â pcCUAboveRight->isInter(Â uiAboveRightPartIdx ); |
---|
3828 | |
---|
3829 |  if ( isAvailableB0 && ( !isAvailableB1 || !pcCUAbove->hasEqualMotion( uiAbovePartIdx, pcCUAboveRight, uiAboveRightPartIdx ) ) ) |
---|
3830 | Â { |
---|
3831 | #if NH_3D_MLC |
---|
3832 | Â Â m_bAvailableFlagB0 =Â 1; |
---|
3833 | #endif |
---|
3834 | Â Â abCandIsInter[iCount]Â =Â true; |
---|
3835 | Â Â // get Inter Dir |
---|
3836 | Â Â puhInterDirNeighbours[iCount]Â =Â pcCUAboveRight->getInterDir(Â uiAboveRightPartIdx ); |
---|
3837 | Â Â // get Mv from Left |
---|
3838 |   pcCUAboveRight->getMvField( pcCUAboveRight, uiAboveRightPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount<<1] ); |
---|
3839 |   if ( getSlice()->isInterB() ) |
---|
3840 | Â Â { |
---|
3841 |    pcCUAboveRight->getMvField( pcCUAboveRight, uiAboveRightPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount<<1)+1] ); |
---|
3842 | Â Â } |
---|
3843 |   if ( mrgCandIdx == iCount ) |
---|
3844 | Â Â { |
---|
3845 | Â Â Â return; |
---|
3846 | Â Â } |
---|
3847 | Â Â iCount ++; |
---|
3848 | Â } |
---|
3849 | Â // early termination |
---|
3850 |  if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3851 | Â { |
---|
3852 | Â Â return; |
---|
3853 | Â } |
---|
3854 | |
---|
3855 | Â //left bottom |
---|
3856 | Â UInt uiLeftBottomPartIdx =Â 0; |
---|
3857 | Â TComDataCU*Â pcCULeftBottom =Â 0; |
---|
3858 |  pcCULeftBottom = this->getPUBelowLeft( uiLeftBottomPartIdx, uiPartIdxLB ); |
---|
3859 | |
---|
3860 | Â Bool isAvailableA0 =Â pcCULeftBottom && |
---|
3861 |             pcCULeftBottom->isDiffMER(xP-1, yP+nPSH, xP, yP) && |
---|
3862 | Â Â Â Â Â Â Â Â Â Â Â Â pcCULeftBottom->isInter(Â uiLeftBottomPartIdx )Â ; |
---|
3863 | |
---|
3864 |  if ( isAvailableA0 && ( !isAvailableA1 || !pcCULeft->hasEqualMotion( uiLeftPartIdx, pcCULeftBottom, uiLeftBottomPartIdx ) ) ) |
---|
3865 | Â { |
---|
3866 | #if NH_3D_MLC |
---|
3867 | Â Â m_bAvailableFlagA0 =Â 1; |
---|
3868 | #endif |
---|
3869 | Â Â abCandIsInter[iCount]Â =Â true; |
---|
3870 | Â Â // get Inter Dir |
---|
3871 | Â Â puhInterDirNeighbours[iCount]Â =Â pcCULeftBottom->getInterDir(Â uiLeftBottomPartIdx ); |
---|
3872 | Â Â // get Mv from Left |
---|
3873 |   pcCULeftBottom->getMvField( pcCULeftBottom, uiLeftBottomPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount<<1] ); |
---|
3874 |   if ( getSlice()->isInterB() ) |
---|
3875 | Â Â { |
---|
3876 |    pcCULeftBottom->getMvField( pcCULeftBottom, uiLeftBottomPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount<<1)+1] ); |
---|
3877 | Â Â } |
---|
3878 |   if ( mrgCandIdx == iCount ) |
---|
3879 | Â Â { |
---|
3880 | Â Â Â return; |
---|
3881 | Â Â } |
---|
3882 | Â Â iCount ++; |
---|
3883 | Â } |
---|
3884 | Â // early termination |
---|
3885 |  if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3886 | Â { |
---|
3887 | Â Â return; |
---|
3888 | Â } |
---|
3889 | |
---|
3890 | Â // above left |
---|
3891 | Â if(Â iCount <Â 4Â ) |
---|
3892 | Â { |
---|
3893 | Â Â UInt uiAboveLeftPartIdx =Â 0; |
---|
3894 | Â Â TComDataCU*Â pcCUAboveLeft =Â 0; |
---|
3895 |   pcCUAboveLeft = getPUAboveLeft( uiAboveLeftPartIdx, uiAbsPartAddr ); |
---|
3896 | |
---|
3897 | Â Â Bool isAvailableB2 =Â pcCUAboveLeft && |
---|
3898 |              pcCUAboveLeft->isDiffMER(xP-1, yP-1, xP, yP) && |
---|
3899 | Â Â Â Â Â Â Â Â Â Â Â Â Â pcCUAboveLeft->isInter(Â uiAboveLeftPartIdx ); |
---|
3900 | |
---|
3901 |   if ( isAvailableB2 && ( !isAvailableA1 || !pcCULeft->hasEqualMotion( uiLeftPartIdx, pcCUAboveLeft, uiAboveLeftPartIdx ) ) |
---|
3902 |     && ( !isAvailableB1 || !pcCUAbove->hasEqualMotion( uiAbovePartIdx, pcCUAboveLeft, uiAboveLeftPartIdx ) ) ) |
---|
3903 | Â Â { |
---|
3904 | #if NH_3D_MLC |
---|
3905 | Â Â Â m_bAvailableFlagB2 =Â 1; |
---|
3906 | #endif |
---|
3907 | Â Â Â abCandIsInter[iCount]Â =Â true; |
---|
3908 | Â Â Â // get Inter Dir |
---|
3909 | Â Â Â puhInterDirNeighbours[iCount]Â =Â pcCUAboveLeft->getInterDir(Â uiAboveLeftPartIdx ); |
---|
3910 | Â Â Â // get Mv from Left |
---|
3911 |    pcCUAboveLeft->getMvField( pcCUAboveLeft, uiAboveLeftPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount<<1] ); |
---|
3912 |    if ( getSlice()->isInterB() ) |
---|
3913 | Â Â Â { |
---|
3914 |     pcCUAboveLeft->getMvField( pcCUAboveLeft, uiAboveLeftPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount<<1)+1] ); |
---|
3915 | Â Â Â } |
---|
3916 |    if ( mrgCandIdx == iCount ) |
---|
3917 | Â Â Â { |
---|
3918 | Â Â Â Â return; |
---|
3919 | Â Â Â } |
---|
3920 | Â Â Â iCount ++; |
---|
3921 | Â Â } |
---|
3922 | Â } |
---|
3923 | Â // early termination |
---|
3924 |  if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
3925 | Â { |
---|
3926 | Â Â return; |
---|
3927 | Â } |
---|
3928 | |
---|
3929 |  if ( getSlice()->getEnableTMVPFlag() ) |
---|
3930 | Â { |
---|
3931 | Â Â //>> MTK colocated-RightBottom |
---|
3932 | Â Â UInt uiPartIdxRB; |
---|
3933 | |
---|
3934 |   deriveRightBottomIdx( uiPUIdx, uiPartIdxRB ); |
---|
3935 | |
---|
3936 | Â Â UInt uiAbsPartIdxTmp =Â g_auiZscanToRaster[uiPartIdxRB]; |
---|
3937 |   const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
3938 |   const UInt numPartInCtuHeight = m_pcPic->getNumPartInCtuHeight(); |
---|
3939 | |
---|
3940 | Â Â TComMv cColMv; |
---|
3941 | Â Â Int iRefIdx; |
---|
3942 | Â Â Int ctuRsAddr =Â -1; |
---|
3943 | |
---|
3944 |   if (  ( ( m_pcPic->getCtu(m_ctuRsAddr)->getCUPelX() + g_auiRasterToPelX[uiAbsPartIdxTmp] + m_pcPic->getMinCUWidth () ) < m_pcSlice->getSPS()->getPicWidthInLumaSamples () ) // image boundary check |
---|
3945 | Â Â Â Â &&Â (Â (Â m_pcPic->getCtu(m_ctuRsAddr)->getCUPelY()Â +Â g_auiRasterToPelY[uiAbsPartIdxTmp]Â +Â m_pcPic->getMinCUHeight()Â )Â <Â m_pcSlice->getSPS()->getPicHeightInLumaSamples()Â )Â ) |
---|
3946 | Â Â { |
---|
3947 |    if ( ( uiAbsPartIdxTmp % numPartInCtuWidth < numPartInCtuWidth - 1 ) &&      // is not at the last column of CTU |
---|
3948 |     ( uiAbsPartIdxTmp / numPartInCtuWidth < numPartInCtuHeight - 1 ) )       // is not at the last row  of CTU |
---|
3949 | Â Â Â { |
---|
3950 | Â Â Â Â uiAbsPartAddr =Â g_auiRasterToZscan[Â uiAbsPartIdxTmp +Â numPartInCtuWidth +Â 1Â ]; |
---|
3951 | Â Â Â Â ctuRsAddr =Â getCtuRsAddr(); |
---|
3952 | Â Â Â } |
---|
3953 |    else if ( uiAbsPartIdxTmp % numPartInCtuWidth < numPartInCtuWidth - 1 )      // is not at the last column of CTU But is last row of CTU |
---|
3954 | Â Â Â { |
---|
3955 | Â Â Â Â uiAbsPartAddr =Â g_auiRasterToZscan[Â (uiAbsPartIdxTmp +Â numPartInCtuWidth +Â 1)Â %Â m_pcPic->getNumPartitionsInCtu()Â ]; |
---|
3956 | Â Â Â } |
---|
3957 |    else if ( uiAbsPartIdxTmp / numPartInCtuWidth < numPartInCtuHeight - 1 )     // is not at the last row of CTU But is last column of CTU |
---|
3958 | Â Â Â { |
---|
3959 | Â Â Â Â uiAbsPartAddr =Â g_auiRasterToZscan[Â uiAbsPartIdxTmp +Â 1Â ]; |
---|
3960 | Â Â Â Â ctuRsAddr =Â getCtuRsAddr()Â +Â 1; |
---|
3961 | Â Â Â } |
---|
3962 |    else //is the right bottom corner of CTU |
---|
3963 | Â Â Â { |
---|
3964 | Â Â Â Â uiAbsPartAddr =Â 0; |
---|
3965 | Â Â Â } |
---|
3966 | Â Â } |
---|
3967 | |
---|
3968 | Â Â iRefIdx =Â 0; |
---|
3969 | |
---|
3970 | Â Â Bool bExistMV =Â false; |
---|
3971 | Â Â UInt uiPartIdxCenter; |
---|
3972 | Â Â Int dir =Â 0; |
---|
3973 | Â Â UInt uiArrayAddr =Â iCount; |
---|
3974 |   xDeriveCenterIdx( uiPUIdx, uiPartIdxCenter ); |
---|
3975 |   bExistMV = ctuRsAddr >= 0 && xGetColMVP( REF_PIC_LIST_0, ctuRsAddr, uiAbsPartAddr, cColMv, iRefIdx ); |
---|
3976 |   if( bExistMV == false ) |
---|
3977 | Â Â { |
---|
3978 |    bExistMV = xGetColMVP( REF_PIC_LIST_0, getCtuRsAddr(), uiPartIdxCenter, cColMv, iRefIdx ); |
---|
3979 | Â Â } |
---|
3980 | Â Â if(Â bExistMV ) |
---|
3981 | Â Â { |
---|
3982 | Â Â Â dir |=Â 1; |
---|
3983 |    pcMvFieldNeighbours[ 2 * uiArrayAddr ].setMvField( cColMv, iRefIdx ); |
---|
3984 | Â Â } |
---|
3985 | |
---|
3986 |   if ( getSlice()->isInterB() ) |
---|
3987 | Â Â { |
---|
3988 | #if NH_3D_TMVP |
---|
3989 | Â Â Â iRefIdx =Â 0; |
---|
3990 | #endif |
---|
3991 |    bExistMV = ctuRsAddr >= 0 && xGetColMVP( REF_PIC_LIST_1, ctuRsAddr, uiAbsPartAddr, cColMv, iRefIdx); |
---|
3992 |    if( bExistMV == false ) |
---|
3993 | Â Â Â { |
---|
3994 |     bExistMV = xGetColMVP( REF_PIC_LIST_1, getCtuRsAddr(), uiPartIdxCenter, cColMv, iRefIdx ); |
---|
3995 | Â Â Â } |
---|
3996 | Â Â Â if(Â bExistMV ) |
---|
3997 | Â Â Â { |
---|
3998 | Â Â Â Â dir |=Â 2; |
---|
3999 |     pcMvFieldNeighbours[ 2 * uiArrayAddr + 1 ].setMvField( cColMv, iRefIdx ); |
---|
4000 | Â Â Â } |
---|
4001 | Â Â } |
---|
4002 | |
---|
4003 |   if (dir != 0) |
---|
4004 | Â Â { |
---|
4005 | Â Â Â puhInterDirNeighbours[uiArrayAddr]Â =Â dir; |
---|
4006 | Â Â Â abCandIsInter[uiArrayAddr]Â =Â true; |
---|
4007 | #if NH_3D_NBDV |
---|
4008 | Â Â Â pcMvFieldNeighbours[iCount<<1Â Â ].getMv().setIDVFlag (false); |
---|
4009 | Â Â Â pcMvFieldNeighbours[(iCount<<1)+1].getMv().setIDVFlag (false); |
---|
4010 | #endif |
---|
4011 | |
---|
4012 |    if ( mrgCandIdx == iCount ) |
---|
4013 | Â Â Â { |
---|
4014 | Â Â Â Â return; |
---|
4015 | Â Â Â } |
---|
4016 | Â Â Â iCount++; |
---|
4017 | Â Â } |
---|
4018 | Â } |
---|
4019 | Â // early termination |
---|
4020 |  if (iCount == getSlice()->getMaxNumMergeCand()) |
---|
4021 | Â { |
---|
4022 | Â Â return; |
---|
4023 | Â } |
---|
4024 | |
---|
4025 | Â UInt uiArrayAddr =Â iCount; |
---|
4026 | Â UInt uiCutoff =Â uiArrayAddr; |
---|
4027 | |
---|
4028 | #if NH_3D_MLC |
---|
4029 |  if ( getSlice()->isInterB() && iCount<5) |
---|
4030 | #else |
---|
4031 |  if ( getSlice()->isInterB() ) |
---|
4032 | #endif |
---|
4033 | Â { |
---|
4034 |   static const UInt NUM_PRIORITY_LIST=12; |
---|
4035 |   static const UInt uiPriorityList0[NUM_PRIORITY_LIST] = {0 , 1, 0, 2, 1, 2, 0, 3, 1, 3, 2, 3}; |
---|
4036 |   static const UInt uiPriorityList1[NUM_PRIORITY_LIST] = {1 , 0, 2, 0, 2, 1, 3, 0, 3, 1, 3, 2}; |
---|
4037 | |
---|
4038 |   for (Int idx=0; idx<uiCutoff*(uiCutoff-1) && uiArrayAddr!= getSlice()->getMaxNumMergeCand(); idx++) |
---|
4039 | Â Â { |
---|
4040 | Â Â Â assert(idx<NUM_PRIORITY_LIST); |
---|
4041 | Â Â Â Int i =Â uiPriorityList0[idx]; |
---|
4042 | Â Â Â Int j =Â uiPriorityList1[idx]; |
---|
4043 |    if (abCandIsInter[i] && abCandIsInter[j]&& (puhInterDirNeighbours[i]&0x1)&&(puhInterDirNeighbours[j]&0x2)) |
---|
4044 | Â Â Â { |
---|
4045 | Â Â Â Â abCandIsInter[uiArrayAddr]Â =Â true; |
---|
4046 | Â Â Â Â puhInterDirNeighbours[uiArrayAddr]Â =Â 3; |
---|
4047 | |
---|
4048 | Â Â Â Â // get Mv from cand[i] and cand[j] |
---|
4049 |     pcMvFieldNeighbours[uiArrayAddr << 1].setMvField(pcMvFieldNeighbours[i<<1].getMv(), pcMvFieldNeighbours[i<<1].getRefIdx()); |
---|
4050 |     pcMvFieldNeighbours[( uiArrayAddr << 1 ) + 1].setMvField(pcMvFieldNeighbours[(j<<1)+1].getMv(), pcMvFieldNeighbours[(j<<1)+1].getRefIdx()); |
---|
4051 | |
---|
4052 |     Int iRefPOCL0 = m_pcSlice->getRefPOC( REF_PIC_LIST_0, pcMvFieldNeighbours[(uiArrayAddr<<1)].getRefIdx() ); |
---|
4053 |     Int iRefPOCL1 = m_pcSlice->getRefPOC( REF_PIC_LIST_1, pcMvFieldNeighbours[(uiArrayAddr<<1)+1].getRefIdx() ); |
---|
4054 |     if (iRefPOCL0 == iRefPOCL1 && pcMvFieldNeighbours[(uiArrayAddr<<1)].getMv() == pcMvFieldNeighbours[(uiArrayAddr<<1)+1].getMv()) |
---|
4055 | Â Â Â Â { |
---|
4056 | Â Â Â Â Â abCandIsInter[uiArrayAddr]Â =Â false; |
---|
4057 | Â Â Â Â } |
---|
4058 | Â Â Â Â else |
---|
4059 | Â Â Â Â { |
---|
4060 | Â Â Â Â Â uiArrayAddr++; |
---|
4061 | Â Â Â Â } |
---|
4062 | Â Â Â } |
---|
4063 | Â Â } |
---|
4064 | Â } |
---|
4065 | Â // early termination |
---|
4066 |  if (uiArrayAddr == getSlice()->getMaxNumMergeCand()) |
---|
4067 | Â { |
---|
4068 | Â Â return; |
---|
4069 | Â } |
---|
4070 | |
---|
4071 |  Int iNumRefIdx = (getSlice()->isInterB()) ? min(m_pcSlice->getNumRefIdx(REF_PIC_LIST_0), m_pcSlice->getNumRefIdx(REF_PIC_LIST_1)) : m_pcSlice->getNumRefIdx(REF_PIC_LIST_0); |
---|
4072 | |
---|
4073 | Â Int r =Â 0; |
---|
4074 | Â Int refcnt =Â 0; |
---|
4075 |  while (uiArrayAddr < getSlice()->getMaxNumMergeCand()) |
---|
4076 | Â { |
---|
4077 | Â Â abCandIsInter[uiArrayAddr]Â =Â true; |
---|
4078 | Â Â puhInterDirNeighbours[uiArrayAddr]Â =Â 1; |
---|
4079 |   pcMvFieldNeighbours[uiArrayAddr << 1].setMvField( TComMv(0, 0), r); |
---|
4080 | |
---|
4081 |   if ( getSlice()->isInterB() ) |
---|
4082 | Â Â { |
---|
4083 | Â Â Â puhInterDirNeighbours[uiArrayAddr]Â =Â 3; |
---|
4084 |    pcMvFieldNeighbours[(uiArrayAddr << 1) + 1].setMvField(TComMv(0, 0), r); |
---|
4085 | Â Â } |
---|
4086 | Â Â uiArrayAddr++; |
---|
4087 | |
---|
4088 |   if ( refcnt == iNumRefIdx - 1 ) |
---|
4089 | Â Â { |
---|
4090 | Â Â Â r =Â 0; |
---|
4091 | Â Â } |
---|
4092 | Â Â else |
---|
4093 | Â Â { |
---|
4094 | Â Â Â ++r; |
---|
4095 | Â Â Â ++refcnt; |
---|
4096 | Â Â } |
---|
4097 | Â } |
---|
4098 | Â numValidMergeCand =Â uiArrayAddr; |
---|
4099 | } |
---|
4100 | |
---|
4101 | /** Check whether the current PU and a spatial neighboring PU are in a same ME region. |
---|
4102 | Â * \param xN, yNÂ Â location of the upper-left corner pixel of a neighboring PU |
---|
4103 | Â * \param xP, yPÂ Â location of the upper-left corner pixel of the current PU |
---|
4104 | Â */ |
---|
4105 | Bool TComDataCU::isDiffMER(Int xN, Int yN, Int xP, Int yP) |
---|
4106 | { |
---|
4107 | |
---|
4108 | Â UInt plevel =Â this->getSlice()->getPPS()->getLog2ParallelMergeLevelMinus2()Â +Â 2; |
---|
4109 |  if ((xN>>plevel)!= (xP>>plevel)) |
---|
4110 | Â { |
---|
4111 |   return true; |
---|
4112 | Â } |
---|
4113 |  if ((yN>>plevel)!= (yP>>plevel)) |
---|
4114 | Â { |
---|
4115 |   return true; |
---|
4116 | Â } |
---|
4117 |  return false; |
---|
4118 | } |
---|
4119 | |
---|
4120 | /** Calculate the location of upper-left corner pixel and size of the current PU. |
---|
4121 |  * \param partIdx    PU index within a CU |
---|
4122 | Â * \param xP, yPÂ Â Â Â location of the upper-left corner pixel of the current PU |
---|
4123 | Â * \param nPSW, nPSHÂ Â size of the current PU |
---|
4124 | Â */ |
---|
4125 | Void TComDataCU::getPartPosition( UInt partIdx, Int& xP, Int& yP, Int& nPSW, Int& nPSH) |
---|
4126 | { |
---|
4127 | Â UInt col =Â m_uiCUPelX; |
---|
4128 | Â UInt row =Â m_uiCUPelY; |
---|
4129 | |
---|
4130 |  switch ( m_pePartSize[0] ) |
---|
4131 | Â { |
---|
4132 |  case SIZE_2NxN: |
---|
4133 | Â Â nPSW =Â getWidth(0); |
---|
4134 | Â Â nPSH =Â getHeight(0)Â >>Â 1; |
---|
4135 | Â Â xPÂ Â =Â col; |
---|
4136 |   yP  = (partIdx ==0)? row: row + nPSH; |
---|
4137 | Â Â break; |
---|
4138 |  case SIZE_Nx2N: |
---|
4139 | Â Â nPSW =Â getWidth(0)Â >>Â 1; |
---|
4140 | Â Â nPSH =Â getHeight(0); |
---|
4141 |   xP  = (partIdx ==0)? col: col + nPSW; |
---|
4142 | Â Â yPÂ Â =Â row; |
---|
4143 | Â Â break; |
---|
4144 |  case SIZE_NxN: |
---|
4145 | Â Â nPSW =Â getWidth(0)Â >>Â 1; |
---|
4146 | Â Â nPSH =Â getHeight(0)Â >>Â 1; |
---|
4147 | Â Â xPÂ Â =Â col +Â (partIdx&0x1)*nPSW; |
---|
4148 | Â Â yPÂ Â =Â row +Â (partIdx>>1)*nPSH; |
---|
4149 | Â Â break; |
---|
4150 |  case SIZE_2NxnU: |
---|
4151 | Â Â nPSW =Â getWidth(0); |
---|
4152 |   nPSH = ( partIdx == 0 ) ? getHeight(0) >> 2 : ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 ); |
---|
4153 | Â Â xPÂ Â =Â col; |
---|
4154 |   yP  = (partIdx ==0)? row: row + getHeight(0) - nPSH; |
---|
4155 | |
---|
4156 | Â Â break; |
---|
4157 |  case SIZE_2NxnD: |
---|
4158 | Â Â nPSW =Â getWidth(0); |
---|
4159 |   nPSH = ( partIdx == 0 ) ? ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 ) : getHeight(0) >> 2; |
---|
4160 | Â Â xPÂ Â =Â col; |
---|
4161 |   yP  = (partIdx ==0)? row: row + getHeight(0) - nPSH; |
---|
4162 | Â Â break; |
---|
4163 |  case SIZE_nLx2N: |
---|
4164 |   nPSW = ( partIdx == 0 ) ? getWidth(0) >> 2 : ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 ); |
---|
4165 | Â Â nPSH =Â getHeight(0); |
---|
4166 |   xP  = (partIdx ==0)? col: col + getWidth(0) - nPSW; |
---|
4167 | Â Â yPÂ Â =Â row; |
---|
4168 | Â Â break; |
---|
4169 |  case SIZE_nRx2N: |
---|
4170 |   nPSW = ( partIdx == 0 ) ? ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 ) : getWidth(0) >> 2; |
---|
4171 | Â Â nPSH =Â getHeight(0); |
---|
4172 |   xP  = (partIdx ==0)? col: col + getWidth(0) - nPSW; |
---|
4173 | Â Â yPÂ Â =Â row; |
---|
4174 | Â Â break; |
---|
4175 | Â default: |
---|
4176 | Â Â assert (Â m_pePartSize[0]Â ==Â SIZE_2Nx2N ); |
---|
4177 | Â Â nPSW =Â getWidth(0); |
---|
4178 | Â Â nPSH =Â getHeight(0); |
---|
4179 | Â Â xPÂ Â =Â col ; |
---|
4180 | Â Â yPÂ Â =Â row ; |
---|
4181 | |
---|
4182 | Â Â break; |
---|
4183 | Â } |
---|
4184 | } |
---|
4185 | |
---|
4186 | /** Constructs a list of candidates for AMVP |
---|
4187 | Â * \param uiPartIdx |
---|
4188 | Â * \param uiPartAddr |
---|
4189 | Â * \param eRefPicList |
---|
4190 | Â * \param iRefIdx |
---|
4191 | Â * \param pInfo |
---|
4192 | Â */ |
---|
4193 | Void TComDataCU::fillMvpCand ( UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, Int iRefIdx, AMVPInfo* pInfo ) |
---|
4194 | { |
---|
4195 | Â TComMv cMvPred; |
---|
4196 | Â Bool bAddedSmvp =Â false; |
---|
4197 | |
---|
4198 | Â pInfo->iN =Â 0; |
---|
4199 |  if (iRefIdx < 0) |
---|
4200 | Â { |
---|
4201 | Â Â return; |
---|
4202 | Â } |
---|
4203 | |
---|
4204 | Â //-- Get Spatial MV |
---|
4205 |  UInt uiPartIdxLT, uiPartIdxRT, uiPartIdxLB; |
---|
4206 |  const UInt numPartInCtuWidth = m_pcPic->getNumPartInCtuWidth(); |
---|
4207 |  const UInt numPartInCtuHeight = m_pcPic->getNumPartInCtuHeight(); |
---|
4208 | Â Bool bAdded =Â false; |
---|
4209 | |
---|
4210 |  deriveLeftRightTopIdx( uiPartIdx, uiPartIdxLT, uiPartIdxRT ); |
---|
4211 |  deriveLeftBottomIdx( uiPartIdx, uiPartIdxLB ); |
---|
4212 | |
---|
4213 | Â TComDataCU*Â tmpCU =Â NULL; |
---|
4214 | Â UInt idx; |
---|
4215 |  tmpCU = getPUBelowLeft(idx, uiPartIdxLB); |
---|
4216 | Â bAddedSmvp =Â (tmpCU !=Â NULL)Â &&Â (tmpCU->isInter(idx)); |
---|
4217 | |
---|
4218 |  if (!bAddedSmvp) |
---|
4219 | Â { |
---|
4220 |   tmpCU = getPULeft(idx, uiPartIdxLB); |
---|
4221 | Â Â bAddedSmvp =Â (tmpCU !=Â NULL)Â &&Â (tmpCU->isInter(idx)); |
---|
4222 | Â } |
---|
4223 | |
---|
4224 | Â // Left predictor search |
---|
4225 |  bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_BELOW_LEFT); |
---|
4226 |  if (!bAdded) |
---|
4227 | Â { |
---|
4228 |   bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_LEFT ); |
---|
4229 | Â } |
---|
4230 | |
---|
4231 | Â if(!bAdded) |
---|
4232 | Â { |
---|
4233 |   bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_BELOW_LEFT); |
---|
4234 |   if (!bAdded) |
---|
4235 | Â Â { |
---|
4236 |    xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_LEFT ); |
---|
4237 | Â Â } |
---|
4238 | Â } |
---|
4239 | |
---|
4240 | Â // Above predictor search |
---|
4241 |  bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE_RIGHT); |
---|
4242 | |
---|
4243 |  if (!bAdded) |
---|
4244 | Â { |
---|
4245 |   bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE); |
---|
4246 | Â } |
---|
4247 | |
---|
4248 | Â if(!bAdded) |
---|
4249 | Â { |
---|
4250 |   xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxLT, MD_ABOVE_LEFT); |
---|
4251 | Â } |
---|
4252 | |
---|
4253 | Â if(!bAddedSmvp) |
---|
4254 | Â { |
---|
4255 |   bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE_RIGHT); |
---|
4256 |   if (!bAdded) |
---|
4257 | Â Â { |
---|
4258 |    bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE); |
---|
4259 | Â Â } |
---|
4260 | |
---|
4261 | Â Â if(!bAdded) |
---|
4262 | Â Â { |
---|
4263 |    xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxLT, MD_ABOVE_LEFT); |
---|
4264 | Â Â } |
---|
4265 | Â } |
---|
4266 | |
---|
4267 |  if ( pInfo->iN == 2 ) |
---|
4268 | Â { |
---|
4269 |   if ( pInfo->m_acMvCand[ 0 ] == pInfo->m_acMvCand[ 1 ] ) |
---|
4270 | Â Â { |
---|
4271 | Â Â Â pInfo->iN =Â 1; |
---|
4272 | Â Â } |
---|
4273 | Â } |
---|
4274 | |
---|
4275 |  if ( getSlice()->getEnableTMVPFlag() ) |
---|
4276 | Â { |
---|
4277 | Â Â // Get Temporal Motion Predictor |
---|
4278 | Â Â Int iRefIdx_Col =Â iRefIdx; |
---|
4279 | Â Â TComMv cColMv; |
---|
4280 | Â Â UInt uiPartIdxRB; |
---|
4281 | Â Â UInt uiAbsPartIdx; |
---|
4282 | Â Â UInt uiAbsPartAddr; |
---|
4283 | |
---|
4284 |   deriveRightBottomIdx( uiPartIdx, uiPartIdxRB ); |
---|
4285 | Â Â uiAbsPartAddr =Â m_absZIdxInCtu +Â uiPartAddr; |
---|
4286 | |
---|
4287 | Â Â //----Â co-located RightBottom Temporal Predictor (H) ---// |
---|
4288 | Â Â uiAbsPartIdx =Â g_auiZscanToRaster[uiPartIdxRB]; |
---|
4289 | Â Â Int ctuRsAddr =Â -1; |
---|
4290 |   if ( ( ( m_pcPic->getCtu(m_ctuRsAddr)->getCUPelX() + g_auiRasterToPelX[uiAbsPartIdx] + m_pcPic->getMinCUWidth () ) < m_pcSlice->getSPS()->getPicWidthInLumaSamples () ) // image boundary check |
---|
4291 | Â Â Â Â &&Â (Â (Â m_pcPic->getCtu(m_ctuRsAddr)->getCUPelY()Â +Â g_auiRasterToPelY[uiAbsPartIdx]Â +Â m_pcPic->getMinCUHeight()Â )Â <Â m_pcSlice->getSPS()->getPicHeightInLumaSamples()Â )Â ) |
---|
4292 | Â Â { |
---|
4293 |    if ( ( uiAbsPartIdx % numPartInCtuWidth < numPartInCtuWidth - 1 ) && // is not at the last column of CTU |
---|
4294 |       ( uiAbsPartIdx / numPartInCtuWidth < numPartInCtuHeight - 1 ) ) // is not at the last row  of CTU |
---|
4295 | Â Â Â { |
---|
4296 | Â Â Â Â uiAbsPartAddr =Â g_auiRasterToZscan[Â uiAbsPartIdx +Â numPartInCtuWidth +Â 1Â ]; |
---|
4297 | Â Â Â Â ctuRsAddr =Â getCtuRsAddr(); |
---|
4298 | Â Â Â } |
---|
4299 |    else if ( uiAbsPartIdx % numPartInCtuWidth < numPartInCtuWidth - 1 ) // is not at the last column of CTU But is last row of CTU |
---|
4300 | Â Â Â { |
---|
4301 | Â Â Â Â uiAbsPartAddr =Â g_auiRasterToZscan[Â (uiAbsPartIdx +Â numPartInCtuWidth +Â 1)Â %Â m_pcPic->getNumPartitionsInCtu()Â ]; |
---|
4302 | Â Â Â } |
---|
4303 |    else if ( uiAbsPartIdx / numPartInCtuWidth < numPartInCtuHeight - 1 ) // is not at the last row of CTU But is last column of CTU |
---|
4304 | Â Â Â { |
---|
4305 | Â Â Â Â uiAbsPartAddr =Â g_auiRasterToZscan[Â uiAbsPartIdx +Â 1Â ]; |
---|
4306 | Â Â Â Â ctuRsAddr =Â getCtuRsAddr()Â +Â 1; |
---|
4307 | Â Â Â } |
---|
4308 |    else //is the right bottom corner of CTU |
---|
4309 | Â Â Â { |
---|
4310 | Â Â Â Â uiAbsPartAddr =Â 0; |
---|
4311 | Â Â Â } |
---|
4312 | Â Â } |
---|
4313 |   if ( ctuRsAddr >= 0 && xGetColMVP( eRefPicList, ctuRsAddr, uiAbsPartAddr, cColMv, iRefIdx_Col |
---|
4314 | #if NH_3D_TMVP |
---|
4315 |      , 0 |
---|
4316 | #endif |
---|
4317 | Â )Â ) |
---|
4318 | Â Â { |
---|
4319 | Â Â Â pInfo->m_acMvCand[pInfo->iN++]Â =Â cColMv; |
---|
4320 | Â Â } |
---|
4321 | Â Â else |
---|
4322 | Â Â { |
---|
4323 | Â Â Â UInt uiPartIdxCenter; |
---|
4324 |    xDeriveCenterIdx( uiPartIdx, uiPartIdxCenter ); |
---|
4325 |    if (xGetColMVP( eRefPicList, getCtuRsAddr(), uiPartIdxCenter, cColMv, iRefIdx_Col |
---|
4326 | #if NH_3D_TMVP |
---|
4327 |      , 0 |
---|
4328 | #endif |
---|
4329 | )) |
---|
4330 | Â Â Â { |
---|
4331 | Â Â Â Â pInfo->m_acMvCand[pInfo->iN++]Â =Â cColMv; |
---|
4332 | Â Â Â } |
---|
4333 | Â Â } |
---|
4334 |   //---- co-located RightBottom Temporal Predictor ---// |
---|
4335 | Â } |
---|
4336 | |
---|
4337 |  if (pInfo->iN > AMVP_MAX_NUM_CANDS) |
---|
4338 | Â { |
---|
4339 | Â Â pInfo->iN =Â AMVP_MAX_NUM_CANDS; |
---|
4340 | Â } |
---|
4341 | |
---|
4342 |  while (pInfo->iN < AMVP_MAX_NUM_CANDS) |
---|
4343 | Â { |
---|
4344 | Â Â pInfo->m_acMvCand[pInfo->iN].set(0,0); |
---|
4345 | Â Â pInfo->iN++; |
---|
4346 | Â } |
---|
4347 |  return ; |
---|
4348 | } |
---|
4349 | |
---|
4350 | |
---|
4351 | Bool TComDataCU::isBipredRestriction(UInt puIdx) |
---|
4352 | { |
---|
4353 | Â Int width =Â 0; |
---|
4354 | Â Int height =Â 0; |
---|
4355 | Â UInt partAddr; |
---|
4356 | |
---|
4357 | #if NH_3D_DBBP |
---|
4358 | Â if(Â getDBBPFlag(0)Â ) |
---|
4359 | Â { |
---|
4360 |   return true; |
---|
4361 | Â } |
---|
4362 | #endif |
---|
4363 | |
---|
4364 |  getPartIndexAndSize( puIdx, partAddr, width, height ); |
---|
4365 |  if ( getWidth(0) == 8 && (width < 8 || height < 8) ) |
---|
4366 | Â { |
---|
4367 |   return true; |
---|
4368 | Â } |
---|
4369 |  return false; |
---|
4370 | } |
---|
4371 | |
---|
4372 | |
---|
4373 | Void TComDataCU::clipMv  (TComMv& rcMv) |
---|
4374 | { |
---|
4375 |  const TComSPS &sps=*(m_pcSlice->getSPS()); |
---|
4376 |  Int iMvShift = 2; |
---|
4377 | #if NH_3D_INTEGER_MV_DEPTH |
---|
4378 | Â if(Â getSlice()->getIsDepth()Â ) |
---|
4379 | Â Â iMvShift =Â 0; |
---|
4380 | #endif |
---|
4381 | |
---|
4382 | Â Int iOffset =Â 8; |
---|
4383 | Â Int iHorMax =Â (Â sps.getPicWidthInLumaSamples()Â +Â iOffset -Â (Int)m_uiCUPelX -Â 1Â )Â <<Â iMvShift; |
---|
4384 | Â Int iHorMin =Â (Â Â Â -(Int)sps.getMaxCUWidth()Â -Â iOffset -Â (Int)m_uiCUPelX +Â 1Â )Â <<Â iMvShift; |
---|
4385 | |
---|
4386 | Â Int iVerMax =Â (Â sps.getPicHeightInLumaSamples()Â +Â iOffset -Â (Int)m_uiCUPelY -Â 1Â )Â <<Â iMvShift; |
---|
4387 | Â Int iVerMin =Â (Â Â Â -(Int)sps.getMaxCUHeight()Â -Â iOffset -Â (Int)m_uiCUPelY +Â 1Â )Â <<Â iMvShift; |
---|
4388 | |
---|
4389 |  rcMv.setHor( min (iHorMax, max (iHorMin, rcMv.getHor())) ); |
---|
4390 |  rcMv.setVer( min (iVerMax, max (iVerMin, rcMv.getVer())) ); |
---|
4391 | } |
---|
4392 | |
---|
4393 | #if NH_MV |
---|
4394 | Void TComDataCU::checkMvVertRest (TComMv& rcMv, RefPicList eRefPicList, int iRefIdx ) |
---|
4395 | { |
---|
4396 |  if ( getSlice()->getSPS()->getInterViewMvVertConstraintFlag() ) |
---|
4397 | Â { |
---|
4398 |   if ( getSlice()->getRefPic( eRefPicList, iRefIdx )->getPOC() == getSlice()->getPOC() ) |
---|
4399 | Â Â { |
---|
4400 | Â Â Â Â //When inter_view_mv_vert_constraint_flag is equal to 1, |
---|
4401 | Â Â Â Â //the vertical component of the motion vectors used for inter-layer prediction |
---|
4402 | Â Â Â Â //shall be equal to or less than 56 in units of luma samples |
---|
4403 | Â Â Â Â assert (Â rcMv.getVer()Â <=Â (56<<2)Â ); |
---|
4404 | Â Â } |
---|
4405 | Â } |
---|
4406 | } |
---|
4407 | #endif |
---|
4408 | |
---|
4409 | UInt TComDataCU::getIntraSizeIdx(UInt uiAbsPartIdx) |
---|
4410 | { |
---|
4411 |  UInt uiShift = ( m_pePartSize[uiAbsPartIdx]==SIZE_NxN ? 1 : 0 ); |
---|
4412 | |
---|
4413 | Â UChar uiWidth =Â m_puhWidth[uiAbsPartIdx]>>uiShift; |
---|
4414 |  UInt uiCnt = 0; |
---|
4415 | Â while(Â uiWidth ) |
---|
4416 | Â { |
---|
4417 | Â Â uiCnt++; |
---|
4418 | Â Â uiWidth>>=1; |
---|
4419 | Â } |
---|
4420 | Â uiCnt-=2; |
---|
4421 |  return uiCnt > 6 ? 6 : uiCnt; |
---|
4422 | } |
---|
4423 | |
---|
4424 | Void TComDataCU::clearCbf( UInt uiIdx, ComponentID compID, UInt uiNumParts ) |
---|
4425 | { |
---|
4426 |  memset( &m_puhCbf[compID][uiIdx], 0, sizeof(UChar)*uiNumParts); |
---|
4427 | } |
---|
4428 | |
---|
4429 | /** Set a I_PCM flag for all sub-partitions of a partition. |
---|
4430 | Â * \param bIpcmFlag I_PCM flag |
---|
4431 | Â * \param uiAbsPartIdx patition index |
---|
4432 | Â * \param uiDepth CU depth |
---|
4433 | Â * \returns Void |
---|
4434 | Â */ |
---|
4435 | Void TComDataCU::setIPCMFlagSubParts (Bool bIpcmFlag, UInt uiAbsPartIdx, UInt uiDepth) |
---|
4436 | { |
---|
4437 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
4438 | |
---|
4439 |  memset(m_pbIPCMFlag + uiAbsPartIdx, bIpcmFlag, sizeof(Bool)*uiCurrPartNumb ); |
---|
4440 | } |
---|
4441 | |
---|
4442 | /** Test whether the block at uiPartIdx is skipped. |
---|
4443 | Â * \param uiPartIdx Partition index |
---|
4444 | Â * \returns true if the current the block is skipped |
---|
4445 | Â */ |
---|
4446 | Bool TComDataCU::isSkipped(Â UInt uiPartIdx ) |
---|
4447 | { |
---|
4448 |  return ( getSkipFlag( uiPartIdx ) ); |
---|
4449 | } |
---|
4450 | |
---|
4451 | // ==================================================================================================================== |
---|
4452 | // Protected member functions |
---|
4453 | // ==================================================================================================================== |
---|
4454 | |
---|
4455 | Bool TComDataCU::xAddMVPCand( AMVPInfo* pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir ) |
---|
4456 | { |
---|
4457 | Â TComDataCU*Â pcTmpCU =Â NULL; |
---|
4458 | Â UInt uiIdx; |
---|
4459 | Â switch(Â eDir ) |
---|
4460 | Â { |
---|
4461 |   case MD_LEFT: |
---|
4462 | Â Â { |
---|
4463 |    pcTmpCU = getPULeft(uiIdx, uiPartUnitIdx); |
---|
4464 | Â Â Â break; |
---|
4465 | Â Â } |
---|
4466 |   case MD_ABOVE: |
---|
4467 | Â Â { |
---|
4468 |    pcTmpCU = getPUAbove(uiIdx, uiPartUnitIdx); |
---|
4469 | Â Â Â break; |
---|
4470 | Â Â } |
---|
4471 |   case MD_ABOVE_RIGHT: |
---|
4472 | Â Â { |
---|
4473 |    pcTmpCU = getPUAboveRight(uiIdx, uiPartUnitIdx); |
---|
4474 | Â Â Â break; |
---|
4475 | Â Â } |
---|
4476 |   case MD_BELOW_LEFT: |
---|
4477 | Â Â { |
---|
4478 |    pcTmpCU = getPUBelowLeft(uiIdx, uiPartUnitIdx); |
---|
4479 | Â Â Â break; |
---|
4480 | Â Â } |
---|
4481 |   case MD_ABOVE_LEFT: |
---|
4482 | Â Â { |
---|
4483 |    pcTmpCU = getPUAboveLeft(uiIdx, uiPartUnitIdx); |
---|
4484 | Â Â Â break; |
---|
4485 | Â Â } |
---|
4486 | Â Â default: |
---|
4487 | Â Â { |
---|
4488 | Â Â Â break; |
---|
4489 | Â Â } |
---|
4490 | Â } |
---|
4491 | |
---|
4492 |  if ( pcTmpCU == NULL ) |
---|
4493 | Â { |
---|
4494 |   return false; |
---|
4495 | Â } |
---|
4496 | |
---|
4497 |  if ( pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) >= 0 && m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getPOC() == pcTmpCU->getSlice()->getRefPOC( eRefPicList, pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) )) |
---|
4498 | Â { |
---|
4499 | Â Â TComMv cMvPred =Â pcTmpCU->getCUMvField(eRefPicList)->getMv(uiIdx); |
---|
4500 | |
---|
4501 | Â Â pInfo->m_acMvCand[Â pInfo->iN++]Â =Â cMvPred; |
---|
4502 |   return true; |
---|
4503 | Â } |
---|
4504 | |
---|
4505 | Â RefPicList eRefPicList2nd =Â REF_PIC_LIST_0; |
---|
4506 | Â if(Â Â Â Â eRefPicList ==Â REF_PIC_LIST_0 ) |
---|
4507 | Â { |
---|
4508 | Â Â eRefPicList2nd =Â REF_PIC_LIST_1; |
---|
4509 | Â } |
---|
4510 |  else if ( eRefPicList == REF_PIC_LIST_1) |
---|
4511 | Â { |
---|
4512 | Â Â eRefPicList2nd =Â REF_PIC_LIST_0; |
---|
4513 | Â } |
---|
4514 | |
---|
4515 | |
---|
4516 |  Int iCurrRefPOC = m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getPOC(); |
---|
4517 | Â Int iNeibRefPOC; |
---|
4518 | |
---|
4519 | |
---|
4520 | Â if(Â pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx)Â >=Â 0Â ) |
---|
4521 | Â { |
---|
4522 |   iNeibRefPOC = pcTmpCU->getSlice()->getRefPOC( eRefPicList2nd, pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) ); |
---|
4523 | Â Â if(Â iNeibRefPOC ==Â iCurrRefPOC )Â // Same Reference Frame But Diff List// |
---|
4524 | Â Â { |
---|
4525 | Â Â Â TComMv cMvPred =Â pcTmpCU->getCUMvField(eRefPicList2nd)->getMv(uiIdx); |
---|
4526 | Â Â Â pInfo->m_acMvCand[Â pInfo->iN++]Â =Â cMvPred; |
---|
4527 |    return true; |
---|
4528 | Â Â } |
---|
4529 | Â } |
---|
4530 |  return false; |
---|
4531 | } |
---|
4532 | |
---|
4533 | /** |
---|
4534 | Â * \param pInfo |
---|
4535 | Â * \param eRefPicList |
---|
4536 | Â * \param iRefIdx |
---|
4537 | Â * \param uiPartUnitIdx |
---|
4538 | Â * \param eDir |
---|
4539 | Â * \returns Bool |
---|
4540 | Â */ |
---|
4541 | Bool TComDataCU::xAddMVPCandOrder( AMVPInfo* pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir ) |
---|
4542 | { |
---|
4543 | Â TComDataCU*Â pcTmpCU =Â NULL; |
---|
4544 | Â UInt uiIdx; |
---|
4545 | Â switch(Â eDir ) |
---|
4546 | Â { |
---|
4547 |  case MD_LEFT: |
---|
4548 | Â Â { |
---|
4549 |    pcTmpCU = getPULeft(uiIdx, uiPartUnitIdx); |
---|
4550 | Â Â Â break; |
---|
4551 | Â Â } |
---|
4552 |  case MD_ABOVE: |
---|
4553 | Â Â { |
---|
4554 |    pcTmpCU = getPUAbove(uiIdx, uiPartUnitIdx); |
---|
4555 | Â Â Â break; |
---|
4556 | Â Â } |
---|
4557 |  case MD_ABOVE_RIGHT: |
---|
4558 | Â Â { |
---|
4559 |    pcTmpCU = getPUAboveRight(uiIdx, uiPartUnitIdx); |
---|
4560 | Â Â Â break; |
---|
4561 | Â Â } |
---|
4562 |  case MD_BELOW_LEFT: |
---|
4563 | Â Â { |
---|
4564 |    pcTmpCU = getPUBelowLeft(uiIdx, uiPartUnitIdx); |
---|
4565 | Â Â Â break; |
---|
4566 | Â Â } |
---|
4567 |  case MD_ABOVE_LEFT: |
---|
4568 | Â Â { |
---|
4569 |    pcTmpCU = getPUAboveLeft(uiIdx, uiPartUnitIdx); |
---|
4570 | Â Â Â break; |
---|
4571 | Â Â } |
---|
4572 | Â default: |
---|
4573 | Â Â { |
---|
4574 | Â Â Â break; |
---|
4575 | Â Â } |
---|
4576 | Â } |
---|
4577 | |
---|
4578 |  if ( pcTmpCU == NULL ) |
---|
4579 | Â { |
---|
4580 |   return false; |
---|
4581 | Â } |
---|
4582 | |
---|
4583 | Â RefPicList eRefPicList2nd =Â REF_PIC_LIST_0; |
---|
4584 | Â if(Â Â Â Â eRefPicList ==Â REF_PIC_LIST_0 ) |
---|
4585 | Â { |
---|
4586 | Â Â eRefPicList2nd =Â REF_PIC_LIST_1; |
---|
4587 | Â } |
---|
4588 |  else if ( eRefPicList == REF_PIC_LIST_1) |
---|
4589 | Â { |
---|
4590 | Â Â eRefPicList2nd =Â REF_PIC_LIST_0; |
---|
4591 | Â } |
---|
4592 | |
---|
4593 | Â Int iCurrPOC =Â m_pcSlice->getPOC(); |
---|
4594 |  Int iCurrRefPOC = m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getPOC(); |
---|
4595 | Â Int iNeibPOC =Â iCurrPOC; |
---|
4596 | Â Int iNeibRefPOC; |
---|
4597 |  Bool bIsCurrRefLongTerm = m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getIsLongTerm(); |
---|
4598 | Â Bool bIsNeibRefLongTerm =Â false; |
---|
4599 | |
---|
4600 | Â //---------------Â V1 (END) ------------------// |
---|
4601 | Â if(Â pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx)Â >=Â 0) |
---|
4602 | Â { |
---|
4603 |   iNeibRefPOC = pcTmpCU->getSlice()->getRefPOC( eRefPicList, pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) ); |
---|
4604 | Â Â TComMv cMvPred =Â pcTmpCU->getCUMvField(eRefPicList)->getMv(uiIdx); |
---|
4605 | Â Â TComMv rcMv; |
---|
4606 | |
---|
4607 |   bIsNeibRefLongTerm = pcTmpCU->getSlice()->getRefPic( eRefPicList, pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) )->getIsLongTerm(); |
---|
4608 |   if ( bIsCurrRefLongTerm == bIsNeibRefLongTerm ) |
---|
4609 | Â Â { |
---|
4610 |    if ( bIsCurrRefLongTerm || bIsNeibRefLongTerm ) |
---|
4611 | Â Â Â { |
---|
4612 | Â Â Â Â rcMv =Â cMvPred; |
---|
4613 | Â Â Â } |
---|
4614 | Â Â Â else |
---|
4615 | Â Â Â { |
---|
4616 |     Int iScale = xGetDistScaleFactor( iCurrPOC, iCurrRefPOC, iNeibPOC, iNeibRefPOC ); |
---|
4617 |     if ( iScale == 4096 ) |
---|
4618 | Â Â Â Â { |
---|
4619 | Â Â Â Â Â rcMv =Â cMvPred; |
---|
4620 | Â Â Â Â } |
---|
4621 | Â Â Â Â else |
---|
4622 | Â Â Â Â { |
---|
4623 | Â Â Â Â Â rcMv =Â cMvPred.scaleMv(Â iScale ); |
---|
4624 | Â Â Â Â } |
---|
4625 | Â Â Â } |
---|
4626 | |
---|
4627 | Â Â Â pInfo->m_acMvCand[Â pInfo->iN++]Â =Â rcMv; |
---|
4628 |    return true; |
---|
4629 | Â Â } |
---|
4630 | Â } |
---|
4631 | Â //---------------------- V2(END) --------------------// |
---|
4632 | Â if(Â pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx)Â >=Â 0) |
---|
4633 | Â { |
---|
4634 |   iNeibRefPOC = pcTmpCU->getSlice()->getRefPOC( eRefPicList2nd, pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) ); |
---|
4635 | Â Â TComMv cMvPred =Â pcTmpCU->getCUMvField(eRefPicList2nd)->getMv(uiIdx); |
---|
4636 | Â Â TComMv rcMv; |
---|
4637 | |
---|
4638 |   bIsNeibRefLongTerm = pcTmpCU->getSlice()->getRefPic( eRefPicList2nd, pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) )->getIsLongTerm(); |
---|
4639 |   if ( bIsCurrRefLongTerm == bIsNeibRefLongTerm ) |
---|
4640 | Â Â { |
---|
4641 |    if ( bIsCurrRefLongTerm || bIsNeibRefLongTerm ) |
---|
4642 | Â Â Â { |
---|
4643 | Â Â Â Â rcMv =Â cMvPred; |
---|
4644 | Â Â Â } |
---|
4645 | Â Â Â else |
---|
4646 | Â Â Â { |
---|
4647 |     Int iScale = xGetDistScaleFactor( iCurrPOC, iCurrRefPOC, iNeibPOC, iNeibRefPOC ); |
---|
4648 |     if ( iScale == 4096 ) |
---|
4649 | Â Â Â Â { |
---|
4650 | Â Â Â Â Â rcMv =Â cMvPred; |
---|
4651 | Â Â Â Â } |
---|
4652 | Â Â Â Â else |
---|
4653 | Â Â Â Â { |
---|
4654 | Â Â Â Â Â rcMv =Â cMvPred.scaleMv(Â iScale ); |
---|
4655 | Â Â Â Â } |
---|
4656 | Â Â Â } |
---|
4657 | |
---|
4658 | Â Â Â pInfo->m_acMvCand[Â pInfo->iN++]Â =Â rcMv; |
---|
4659 |    return true; |
---|
4660 | Â Â } |
---|
4661 | Â } |
---|
4662 | Â //---------------------- V3(END) --------------------// |
---|
4663 |  return false; |
---|
4664 | } |
---|
4665 | |
---|
4666 | Bool TComDataCU::xGetColMVP( RefPicList eRefPicList, Int ctuRsAddr, Int uiPartUnitIdx, TComMv& rcMv, Int& riRefIdx |
---|
4667 | #if NH_3D_TMVP |
---|
4668 |  , Bool bMRG |
---|
4669 | #endif |
---|
4670 | ) |
---|
4671 | { |
---|
4672 | Â UInt uiAbsPartAddr =Â uiPartUnitIdx; |
---|
4673 | |
---|
4674 |  RefPicList eColRefPicList; |
---|
4675 |  Int iColPOC, iColRefPOC, iCurrPOC, iCurrRefPOC, iScale; |
---|
4676 | Â TComMv cColMv; |
---|
4677 | |
---|
4678 | Â // use coldir. |
---|
4679 |  TComPic *pColPic = getSlice()->getRefPic( RefPicList(getSlice()->isInterB() ? 1-getSlice()->getColFromL0Flag() : 0), getSlice()->getColRefIdx()); |
---|
4680 | Â TComDataCU *pColCtu =Â pColPic->getCtu(Â ctuRsAddr ); |
---|
4681 | Â if(pColCtu->getPic()==0||pColCtu->getPartitionSize(uiPartUnitIdx)==NUMBER_OF_PART_SIZES) |
---|
4682 | Â { |
---|
4683 |   return false; |
---|
4684 | Â } |
---|
4685 | Â iCurrPOC =Â m_pcSlice->getPOC(); |
---|
4686 | Â iColPOC =Â pColCtu->getSlice()->getPOC(); |
---|
4687 | |
---|
4688 |  if (!pColCtu->isInter(uiAbsPartAddr)) |
---|
4689 | Â { |
---|
4690 |   return false; |
---|
4691 | Â } |
---|
4692 | |
---|
4693 |  eColRefPicList = getSlice()->getCheckLDC() ? eRefPicList : RefPicList(getSlice()->getColFromL0Flag()); |
---|
4694 | |
---|
4695 | Â Int iColRefIdx =Â pColCtu->getCUMvField(RefPicList(eColRefPicList))->getRefIdx(uiAbsPartAddr); |
---|
4696 | |
---|
4697 |  if (iColRefIdx < 0 ) |
---|
4698 | Â { |
---|
4699 | Â Â eColRefPicList =Â RefPicList(1Â -Â eColRefPicList); |
---|
4700 | Â Â iColRefIdx =Â pColCtu->getCUMvField(RefPicList(eColRefPicList))->getRefIdx(uiAbsPartAddr); |
---|
4701 | |
---|
4702 |   if (iColRefIdx < 0 ) |
---|
4703 | Â Â { |
---|
4704 |    return false; |
---|
4705 | Â Â } |
---|
4706 | Â } |
---|
4707 | |
---|
4708 | Â // Scale the vector. |
---|
4709 |  iColRefPOC = pColCtu->getSlice()->getRefPOC(eColRefPicList, iColRefIdx); |
---|
4710 | Â cColMv =Â pColCtu->getCUMvField(eColRefPicList)->getMv(uiAbsPartAddr); |
---|
4711 | |
---|
4712 |  iCurrRefPOC = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getPOC(); |
---|
4713 | |
---|
4714 |  Bool bIsCurrRefLongTerm = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getIsLongTerm(); |
---|
4715 |  Bool bIsColRefLongTerm = pColCtu->getSlice()->getIsUsedAsLongTerm(eColRefPicList, iColRefIdx); |
---|
4716 | |
---|
4717 |  if ( bIsCurrRefLongTerm != bIsColRefLongTerm ) |
---|
4718 | Â { |
---|
4719 | #if NH_3D_TMVP |
---|
4720 |   Int iAlterRefIdx = m_pcSlice->getAlterRefIdx(eRefPicList); |
---|
4721 | Â Â if(bMRG &&Â iAlterRefIdx >Â 0) |
---|
4722 | Â Â { |
---|
4723 | Â Â Â riRefIdx =Â iAlterRefIdx; |
---|
4724 |    bIsCurrRefLongTerm = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getIsLongTerm(); |
---|
4725 |    iCurrRefPOC = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getPOC(); |
---|
4726 | Â Â Â assert(bIsCurrRefLongTerm ==Â bIsColRefLongTerm); |
---|
4727 | Â Â } |
---|
4728 | Â Â else |
---|
4729 | Â Â { |
---|
4730 | #endif |
---|
4731 |   return false; |
---|
4732 | #if NH_3D_TMVP |
---|
4733 | Â Â } |
---|
4734 | #endif |
---|
4735 | Â } |
---|
4736 | |
---|
4737 |  if ( bIsCurrRefLongTerm || bIsColRefLongTerm ) |
---|
4738 | Â { |
---|
4739 | #if NH_3D_TMVP |
---|
4740 |   Int iCurrViewId  = m_pcSlice->getViewId (); |
---|
4741 |   Int iCurrRefViewId = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getViewId (); |
---|
4742 |   Int iColViewId   = pColCtu->getSlice()->getViewId(); |
---|
4743 |   Int iColRefViewId = pColCtu->getSlice()->getRefPic( eColRefPicList, pColCtu->getCUMvField(eColRefPicList)->getRefIdx(uiAbsPartAddr))->getViewId(); |
---|
4744 | Â Â iScale =Â 4096; |
---|
4745 |   if ( iCurrRefViewId != iCurrViewId && iColViewId != iColRefViewId ) |
---|
4746 | Â Â { |
---|
4747 |    iScale = xGetDistScaleFactor( iCurrViewId, iCurrRefViewId, iColViewId, iColRefViewId ); |
---|
4748 | Â Â } |
---|
4749 |   if ( bMRG && iScale != 4096 && m_pcSlice->getIvMvScalingFlag( ) ) |
---|
4750 | Â Â { |
---|
4751 | Â Â Â rcMv =Â cColMv.scaleMv(Â iScale ); |
---|
4752 | Â Â } |
---|
4753 | Â Â else |
---|
4754 | Â Â { |
---|
4755 | #endif |
---|
4756 | Â Â rcMv =Â cColMv; |
---|
4757 | #if NH_3D_TMVP |
---|
4758 | Â Â } |
---|
4759 | #endif |
---|
4760 | Â } |
---|
4761 | Â else |
---|
4762 | Â { |
---|
4763 |   iScale = xGetDistScaleFactor(iCurrPOC, iCurrRefPOC, iColPOC, iColRefPOC); |
---|
4764 |   if ( iScale == 4096 ) |
---|
4765 | Â Â { |
---|
4766 | Â Â Â rcMv =Â cColMv; |
---|
4767 | Â Â } |
---|
4768 | Â Â else |
---|
4769 | Â Â { |
---|
4770 | Â Â Â rcMv =Â cColMv.scaleMv(Â iScale ); |
---|
4771 | Â Â } |
---|
4772 | Â } |
---|
4773 | |
---|
4774 |  return true; |
---|
4775 | } |
---|
4776 | |
---|
4777 | Int TComDataCU::xGetDistScaleFactor(Int iCurrPOC, Int iCurrRefPOC, Int iColPOC, Int iColRefPOC) |
---|
4778 | { |
---|
4779 | Â Int iDiffPocD =Â iColPOC -Â iColRefPOC; |
---|
4780 | Â Int iDiffPocB =Â iCurrPOC -Â iCurrRefPOC; |
---|
4781 | |
---|
4782 | Â if(Â iDiffPocD ==Â iDiffPocB ) |
---|
4783 | Â { |
---|
4784 |   return 4096; |
---|
4785 | Â } |
---|
4786 | Â else |
---|
4787 | Â { |
---|
4788 |   Int iTDB   = Clip3( -128, 127, iDiffPocB ); |
---|
4789 |   Int iTDD   = Clip3( -128, 127, iDiffPocD ); |
---|
4790 | Â Â Int iXÂ Â Â Â =Â (0x4000Â +Â abs(iTDD/2))Â /Â iTDD; |
---|
4791 |   Int iScale  = Clip3( -4096, 4095, (iTDB * iX + 32) >> 6 ); |
---|
4792 |   return iScale; |
---|
4793 | Â } |
---|
4794 | } |
---|
4795 | |
---|
4796 | Void TComDataCU::xDeriveCenterIdx( UInt uiPartIdx, UInt& ruiPartIdxCenter ) |
---|
4797 | { |
---|
4798 | Â UInt uiPartAddr; |
---|
4799 |  Int iPartWidth; |
---|
4800 |  Int iPartHeight; |
---|
4801 |  getPartIndexAndSize( uiPartIdx, uiPartAddr, iPartWidth, iPartHeight); |
---|
4802 | |
---|
4803 | Â ruiPartIdxCenter =Â m_absZIdxInCtu+uiPartAddr;Â // partition origin. |
---|
4804 | Â ruiPartIdxCenter =Â g_auiRasterToZscan[Â g_auiZscanToRaster[Â ruiPartIdxCenter ] |
---|
4805 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â +Â (Â iPartHeight/m_pcPic->getMinCUHeight()Â )/2*m_pcPic->getNumPartInCtuWidth() |
---|
4806 | Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â +Â (Â iPartWidth/m_pcPic->getMinCUWidth()Â )/2]; |
---|
4807 | } |
---|
4808 | |
---|
4809 | #if NH_3D |
---|
4810 | Void TComDataCU::compressMV(Int scale) |
---|
4811 | { |
---|
4812 | Â Â Int scaleFactor =Â (4Â /Â scale )Â *Â AMVP_DECIMATION_FACTOR /Â m_unitSize; |
---|
4813 | #else |
---|
4814 | Void TComDataCU::compressMV() |
---|
4815 | { |
---|
4816 | Â Int scaleFactor =Â 4Â *Â AMVP_DECIMATION_FACTOR /Â m_unitSize; |
---|
4817 | #endif |
---|
4818 |  if (scaleFactor > 0) |
---|
4819 | Â { |
---|
4820 | Â Â for(UInt i=0;Â i<NUM_REF_PIC_LIST_01;Â i++) |
---|
4821 | Â Â { |
---|
4822 |    m_acCUMvField[i].compress(m_pePredMode, scaleFactor); |
---|
4823 | Â Â } |
---|
4824 | Â } |
---|
4825 | } |
---|
4826 | |
---|
4827 | UInt TComDataCU::getCoefScanIdx(const UInt uiAbsPartIdx, const UInt uiWidth, const UInt uiHeight, const ComponentID compID) const |
---|
4828 | { |
---|
4829 | Â //------------------------------------------------ |
---|
4830 | |
---|
4831 | Â //this mechanism is available for intra only |
---|
4832 | |
---|
4833 |  if (!isIntra(uiAbsPartIdx)) |
---|
4834 | Â { |
---|
4835 |   return SCAN_DIAG; |
---|
4836 | Â } |
---|
4837 | |
---|
4838 | Â //------------------------------------------------ |
---|
4839 | |
---|
4840 | Â //check that MDCS can be used for this TU |
---|
4841 | |
---|
4842 |  const ChromaFormat format = getPic()->getChromaFormat(); |
---|
4843 | |
---|
4844 |  const UInt maximumWidth = MDCS_MAXIMUM_WIDTH >> getComponentScaleX(compID, format); |
---|
4845 |  const UInt maximumHeight = MDCS_MAXIMUM_HEIGHT >> getComponentScaleY(compID, format); |
---|
4846 | |
---|
4847 |  if ((uiWidth > maximumWidth) || (uiHeight > maximumHeight)) |
---|
4848 | Â { |
---|
4849 |   return SCAN_DIAG; |
---|
4850 | Â } |
---|
4851 | |
---|
4852 | Â //------------------------------------------------ |
---|
4853 | |
---|
4854 | Â //otherwise, select the appropriate mode |
---|
4855 | |
---|
4856 |  UInt uiDirMode = getIntraDir(toChannelType(compID), uiAbsPartIdx); |
---|
4857 | #if NH_3D_DMM |
---|
4858 | Â mapDmmToIntraDir(Â uiDirMode ); |
---|
4859 | #endif |
---|
4860 | |
---|
4861 |  if (uiDirMode==DM_CHROMA_IDX) |
---|
4862 | Â { |
---|
4863 |   const TComSPS *sps=getSlice()->getSPS(); |
---|
4864 |   const UInt partsPerMinCU = 1<<(2*(sps->getMaxTotalCUDepth() - sps->getLog2DiffMaxMinCodingBlockSize())); |
---|
4865 |   uiDirMode = getIntraDir(CHANNEL_TYPE_LUMA, getChromasCorrespondingPULumaIdx(uiAbsPartIdx, getPic()->getChromaFormat(), partsPerMinCU)); |
---|
4866 | #if NH_3D_DMM |
---|
4867 | Â Â mapDmmToIntraDir(Â uiDirMode ); |
---|
4868 | #endif |
---|
4869 | Â } |
---|
4870 | |
---|
4871 |  if (isChroma(compID) && (format == CHROMA_422)) |
---|
4872 | Â { |
---|
4873 | Â Â uiDirMode =Â g_chroma422IntraAngleMappingTable[uiDirMode]; |
---|
4874 | Â } |
---|
4875 | |
---|
4876 | Â //------------------ |
---|
4877 | |
---|
4878 |  if   (abs((Int)uiDirMode - VER_IDX) <= MDCS_ANGLE_LIMIT) |
---|
4879 | Â { |
---|
4880 |   return SCAN_HOR; |
---|
4881 | Â } |
---|
4882 |  else if (abs((Int)uiDirMode - HOR_IDX) <= MDCS_ANGLE_LIMIT) |
---|
4883 | Â { |
---|
4884 |   return SCAN_VER; |
---|
4885 | Â } |
---|
4886 | Â else |
---|
4887 | Â { |
---|
4888 |   return SCAN_DIAG; |
---|
4889 | Â } |
---|
4890 | } |
---|
4891 | |
---|
4892 | #if NH_3D_VSO |
---|
4893 | Void TComDataCU::getPosInPic( UInt uiAbsPartIndex, Int& riPosX, Int& riPosY ) const |
---|
4894 | { |
---|
4895 | Â riPosX =Â g_auiRasterToPelX[g_auiZscanToRaster[uiAbsPartIndex]]Â +Â getCUPelX(); |
---|
4896 | Â riPosY =Â g_auiRasterToPelY[g_auiZscanToRaster[uiAbsPartIndex]]Â +Â getCUPelY();Â |
---|
4897 | } |
---|
4898 | #endif |
---|
4899 | |
---|
4900 | #if NH_3D_IV_MERGE |
---|
4901 | Void TComDataCU::getDispforDepth (UInt uiPartIdx, UInt uiPartAddr, DisInfo* pDisp) |
---|
4902 | { |
---|
4903 | Â assert(getPartitionSize(Â uiPartAddr )Â ==Â SIZE_2Nx2N); |
---|
4904 | |
---|
4905 | Â TComMv cMv;Â |
---|
4906 |  if ( getSlice()->getDefaultRefViewIdxAvailableFlag() ) |
---|
4907 | Â { |
---|
4908 | Â Â Int iViewIdx =Â getSlice()->getDefaultRefViewIdx(); |
---|
4909 | Â Â pDisp->m_aVIdxCan =Â iViewIdx; |
---|
4910 |   Int iDisp   = getSlice()->getDepthToDisparityB( iViewIdx )[ (Int64) (1 << ( getSlice()->getSPS()->getBitDepth(CHANNEL_TYPE_LUMA) - 1 )) ]; |
---|
4911 | |
---|
4912 | Â Â cMv.setHor(iDisp); |
---|
4913 | Â Â cMv.setVer(0); |
---|
4914 | Â Â pDisp->m_acNBDV =Â cMv; |
---|
4915 | Â Â pDisp->m_aVIdxCan =Â iViewIdx; |
---|
4916 | Â } |
---|
4917 | } |
---|
4918 | #endif |
---|
4919 | |
---|
4920 | #if NH_3D_DIS |
---|
4921 | Bool TComDataCU::getNeighDepth ( UInt uiPartIdx, UInt uiPartAddr, Pel* pNeighDepth, Int index ) |
---|
4922 | { |
---|
4923 | Â assert(uiPartIdx==0); |
---|
4924 |  const UInt uiPartIdxLT   = getZorderIdxInCtu() + uiPartAddr; |
---|
4925 |  const Int iPartIdxStride  = getPic()->getNumPartInCtuWidth(); |
---|
4926 | Â |
---|
4927 |  UInt uiMidPart, uiPartNeighbor; |
---|
4928 | Â TComDataCU*Â pcCUNeighbor; |
---|
4929 | Â Bool bDepAvail =Â false; |
---|
4930 |  Pel *pDepth = this->getPic()->getPicYuvRec()->getAddr(COMPONENT_Y); |
---|
4931 | Â Int iDepStride =Â this->getPic()->getPicYuvRec()->getStride(COMPONENT_Y); |
---|
4932 | |
---|
4933 |  Int xP, yP, nPSW, nPSH; |
---|
4934 |  this->getPartPosition( uiPartIdx, xP, yP, nPSW, nPSH ); |
---|
4935 | |
---|
4936 | Â switch(Â index ) |
---|
4937 | Â { |
---|
4938 |  case 0: // Mid Left |
---|
4939 | Â Â uiMidPart =Â g_auiZscanToRaster[uiPartIdxLT]Â +Â (nPSH>>1)Â /Â this->getPic()->getMinCUHeight()Â *Â iPartIdxStride; |
---|
4940 |   pcCUNeighbor = this->getPULeft( uiPartNeighbor, g_auiRasterToZscan[uiMidPart] ); |
---|
4941 |   if ( pcCUNeighbor ) |
---|
4942 | Â Â { |
---|
4943 | Â Â Â if(Â !this->getSlice()->getPPS()->getConstrainedIntraPred()Â ) |
---|
4944 | Â Â Â { |
---|
4945 | Â Â Â Â *pNeighDepth =Â pDepth[Â (yP+(nPSH>>1))Â *Â iDepStride +Â (xP-1)Â ]; |
---|
4946 | Â Â Â Â bDepAvail =Â true; |
---|
4947 | Â Â Â } |
---|
4948 |    else if ( pcCUNeighbor->getPredictionMode( uiPartNeighbor ) == MODE_INTRA ) |
---|
4949 | Â Â Â { |
---|
4950 | Â Â Â Â *pNeighDepth =Â pDepth[Â (yP+(nPSH>>1))Â *Â iDepStride +Â (xP-1)Â ]; |
---|
4951 | Â Â Â Â bDepAvail =Â true; |
---|
4952 | Â Â Â } |
---|
4953 | Â Â } |
---|
4954 | Â Â break; |
---|
4955 |  case 1: // Mid Above |
---|
4956 | Â Â uiMidPart =Â g_auiZscanToRaster[uiPartIdxLT]Â +Â (nPSW>>1)Â /Â this->getPic()->getMinCUWidth(); |
---|
4957 |   pcCUNeighbor = this->getPUAbove( uiPartNeighbor, g_auiRasterToZscan[uiMidPart] ); |
---|
4958 | Â Â if(Â pcCUNeighbor ) |
---|
4959 | Â Â { |
---|
4960 | Â Â Â if(Â !this->getSlice()->getPPS()->getConstrainedIntraPred()Â ) |
---|
4961 | Â Â Â { |
---|
4962 | Â Â Â Â *pNeighDepth =Â pDepth[Â (yP-1)Â *Â iDepStride +Â (xP +Â (nPSW>>1))Â ]; |
---|
4963 | Â Â Â Â bDepAvail =Â true; |
---|
4964 | Â Â Â } |
---|
4965 |    else if ( pcCUNeighbor->getPredictionMode( uiPartNeighbor ) == MODE_INTRA ) |
---|
4966 | Â Â Â { |
---|
4967 | Â Â Â Â *pNeighDepth =Â pDepth[Â (yP-1)Â *Â iDepStride +Â (xP +Â (nPSW>>1))Â ]; |
---|
4968 | Â Â Â Â bDepAvail =Â true; |
---|
4969 | Â Â Â } |
---|
4970 | Â Â } |
---|
4971 | Â Â break; |
---|
4972 | Â default: |
---|
4973 | Â Â break; |
---|
4974 | Â } |
---|
4975 | |
---|
4976 |  return bDepAvail; |
---|
4977 | } |
---|
4978 | #endif |
---|
4979 | #if NH_3D_NBDV |
---|
4980 | //Notes from QC: |
---|
4981 | //TBD#1: DoNBDV related contributions are just partially integrated under the marco of NH_3D_NBDV_REF, remove this comment once DoNBDV and BVSP are done |
---|
4982 | //TBD#2: set of DvMCP values need to be done as part of inter-view motion prediction process. Remove this comment once merge related integration is done |
---|
4983 | //To be checked: Parallel Merge features for NBDV, related to DV_DERIVATION_PARALLEL_B0096 and LGE_IVMP_PARALLEL_MERGE_B0136 are not integrated. The need of these features due to the adoption of CU-based NBDV is not clear. We need confirmation on this, especially by proponents |
---|
4984 | Void TComDataCU::getDisMvpCandNBDV(Â DisInfo*Â pDInfo |
---|
4985 | #if NH_3D_NBDV_REF |
---|
4986 | , Bool bDepthRefine |
---|
4987 | #endif |
---|
4988 | ) |
---|
4989 | { |
---|
4990 | Â //// ******* Init variables ******* ///// |
---|
4991 | Â // Init disparity struct for results |
---|
4992 | Â pDInfo->m_aVIdxCan =Â -1; |
---|
4993 | |
---|
4994 | Â // Init struct for disparities from MCP neighboring blocks |
---|
4995 | Â IDVInfo cIDVInfo; |
---|
4996 | Â cIDVInfo.m_bFound =Â false;Â |
---|
4997 | Â UInt uiPartIdx =Â 0; |
---|
4998 | Â UInt uiPartAddr =Â 0; |
---|
4999 |  for (UInt iCurDvMcpCand = 0; iCurDvMcpCand < IDV_CANDS; iCurDvMcpCand++) |
---|
5000 | Â { |
---|
5001 |   for (UInt iList = 0; iList < 2; iList++) |
---|
5002 | Â Â { |
---|
5003 | Â Â Â cIDVInfo.m_acMvCand[iList][iCurDvMcpCand].setZero(); |
---|
5004 | Â Â Â cIDVInfo.m_aVIdxCan[iList][iCurDvMcpCand]Â =Â 0;Â |
---|
5005 | Â Â Â cIDVInfo.m_bAvailab[iList][iCurDvMcpCand]Â =Â false;Â |
---|
5006 | Â Â } |
---|
5007 | Â } |
---|
5008 | #if NH_3D_NBDV_REF |
---|
5009 | Â if(Â !m_pcSlice->getDepthRefinementFlag(Â )Â ) |
---|
5010 | Â { |
---|
5011 | Â Â bDepthRefine =Â false; |
---|
5012 | Â } |
---|
5013 | #endif |
---|
5014 |  // Get Positions |
---|
5015 |  PartSize eCUMode  = getPartitionSize( uiPartAddr );  |
---|
5016 | Â assert(eCUMode ==Â SIZE_2Nx2N); |
---|
5017 |  UInt uiPartIdxLT, uiPartIdxRT, uiPartIdxLB; |
---|
5018 | |
---|
5019 |  deriveLeftRightTopIdxGeneral(uiPartAddr, uiPartIdx, uiPartIdxLT, uiPartIdxRT ); |
---|
5020 |  deriveLeftBottomIdxGeneral (uiPartAddr, uiPartIdx, uiPartIdxLB ); |
---|
5021 | |
---|
5022 | Â //// ******* Get disparity from temporal neighboring blocks ******* ///// |
---|
5023 |  if ( getSlice()->getEnableTMVPFlag() ) |
---|
5024 | Â { |
---|
5025 | Â Â TComMv cColMv; |
---|
5026 | Â Â Int iTargetViewIdx =Â 0; |
---|
5027 | Â Â Int iTStartViewIdx =Â 0;Â Â |
---|
5028 | |
---|
5029 | Â Â ///*** Derive center position *** |
---|
5030 | Â Â UInt uiPartIdxCenter; |
---|
5031 |   Int uiLCUIdx = getCtuRsAddr(); |
---|
5032 |   xDeriveCenterIdx(uiPartIdx, uiPartIdxCenter ); |
---|
5033 | |
---|
5034 | Â Â ///*** Search temporal candidate pictures for disparity vector *** |
---|
5035 |   const Int iNumCandPics = getPic()->getNumDdvCandPics(); |
---|
5036 | Â Â for(Int curCandPic =Â 0;Â curCandPic <Â iNumCandPics;Â curCandPic++) |
---|
5037 | Â Â { |
---|
5038 |    RefPicList eCurRefPicList  = REF_PIC_LIST_0 ; |
---|
5039 |    Int    curCandPicRefIdx = 0; |
---|
5040 | Â Â Â if(Â curCandPic ==Â 0Â )Â |
---|
5041 | Â Â Â {Â |
---|
5042 |     eCurRefPicList  = RefPicList(getSlice()->isInterB() ? 1-getSlice()->getColFromL0Flag() : 0); |
---|
5043 | Â Â Â Â curCandPicRefIdx =Â getSlice()->getColRefIdx(); |
---|
5044 | Â Â Â } |
---|
5045 |    else         |
---|
5046 | Â Â Â { |
---|
5047 |     eCurRefPicList  = getPic()->getRapRefList(); |
---|
5048 | Â Â Â Â curCandPicRefIdx =Â getPic()->getRapRefIdx(); |
---|
5049 | Â Â Â } |
---|
5050 | |
---|
5051 |    Bool bCheck = xGetColDisMV( curCandPic, eCurRefPicList, curCandPicRefIdx, uiLCUIdx,  uiPartIdxCenter, cColMv, iTargetViewIdx, iTStartViewIdx ); |
---|
5052 | |
---|
5053 | Â Â Â if(Â bCheck ) |
---|
5054 | Â Â Â { |
---|
5055 | Â Â Â Â pDInfo->m_acNBDV =Â cColMv; |
---|
5056 |     pDInfo->m_aVIdxCan = iTargetViewIdx; |
---|
5057 | |
---|
5058 | #if NH_3D_NBDV_REF |
---|
5059 | Â Â Â Â TComPic*Â picDepth =Â NULL;Â Â |
---|
5060 | #if H_3D_FCO_VSP_DONBDV_E0163 |
---|
5061 |     picDepth = getSlice()->getIvPic(true, getSlice()->getViewIndex() ); |
---|
5062 |     if ( picDepth->getPicYuvRec() != NULL ) |
---|
5063 | Â Â Â Â { |
---|
5064 | Â Â Â Â Â cColMv.setZero(); |
---|
5065 | Â Â Â Â } |
---|
5066 |     else // Go back with virtual depth |
---|
5067 | Â Â Â Â { |
---|
5068 |      picDepth = getSlice()->getIvPic( true, iTargetViewIdx ); |
---|
5069 | Â Â Â Â } |
---|
5070 | |
---|
5071 | Â Â Â Â assert(picDepth !=Â NULL); |
---|
5072 | #else |
---|
5073 |     picDepth = getSlice()->getIvPic( true, iTargetViewIdx ); |
---|
5074 | #endif |
---|
5075 |     if (picDepth && bDepthRefine) |
---|
5076 | Â Â Â Â { |
---|
5077 |      estimateDVFromDM(iTargetViewIdx, uiPartIdx, picDepth, uiPartAddr, &cColMv ); |
---|
5078 | Â Â Â Â } |
---|
5079 | Â Â Â Â pDInfo->m_acDoNBDVÂ =Â cColMv; |
---|
5080 | #endif //NH_3D_NBDV_REF |
---|
5081 | Â Â Â Â return; |
---|
5082 | Â Â Â } |
---|
5083 | Â Â } |
---|
5084 | Â }Â |
---|
5085 | |
---|
5086 | Â UInt uiIdx =Â 0; |
---|
5087 |  Bool    bCheckMcpDv = false;  |
---|
5088 | Â TComDataCU*Â pcTmpCUÂ Â Â =Â NULL; |
---|
5089 | |
---|
5090 | Â //// ******* Get disparity from left block ******* ///// |
---|
5091 |  pcTmpCU = getPULeft(uiIdx, uiPartIdxLB, true, false); |
---|
5092 | Â bCheckMcpDv =Â true;Â |
---|
5093 |  if ( xCheckSpatialNBDV( pcTmpCU, uiIdx, pDInfo, bCheckMcpDv, &cIDVInfo, DVFROM_LEFT |
---|
5094 | #if NH_3D_NBDV_REF |
---|
5095 |   , bDepthRefine |
---|
5096 | #endif |
---|
5097 | Â Â )Â ) |
---|
5098 | Â Â return; |
---|
5099 | |
---|
5100 | Â //// ******* Get disparity from above block ******* ///// |
---|
5101 |  pcTmpCU = getPUAbove(uiIdx, uiPartIdxRT, true, false, true); |
---|
5102 | Â if(pcTmpCU !=Â NULLÂ ) |
---|
5103 | Â { |
---|
5104 | Â Â bCheckMcpDv =Â (Â (Â getCtuRsAddr()Â -Â pcTmpCU->getCtuRsAddr()Â )Â ==Â 0); |
---|
5105 |   if ( xCheckSpatialNBDV( pcTmpCU, uiIdx, pDInfo, bCheckMcpDv, &cIDVInfo, DVFROM_ABOVE |
---|
5106 | #if NH_3D_NBDV_REF |
---|
5107 |    , bDepthRefine |
---|
5108 | #endif |
---|
5109 | Â Â Â )Â ) |
---|
5110 | Â Â Â return; |
---|
5111 | Â } |
---|
5112 | |
---|
5113 | Â //// ******* Search MCP blocks ******* ///// |
---|
5114 | Â if(Â cIDVInfo.m_bFound )Â |
---|
5115 | Â { |
---|
5116 | Â Â for(Â Int curPos =Â 0Â ;Â curPos <Â IDV_CANDS ;Â curPos++Â )Â |
---|
5117 | Â Â { |
---|
5118 |    for(Int iList = 0; iList < (getSlice()->isInterB() ? 2: 1); iList ++) |
---|
5119 | Â Â Â { |
---|
5120 | Â Â Â Â if(Â cIDVInfo.m_bAvailab[iList][curPos]Â ) |
---|
5121 | Â Â Â Â { |
---|
5122 | Â Â Â Â Â TComMv cDispVec =Â cIDVInfo.m_acMvCand[iList][Â curPos ]; |
---|
5123 | Â Â Â Â Â pDInfo->m_acNBDV =Â cDispVec; |
---|
5124 | Â Â Â Â Â pDInfo->m_aVIdxCan =Â cIDVInfo.m_aVIdxCan[iList][Â curPos ]; |
---|
5125 | #if NH_3D_NBDV_REF |
---|
5126 | #if H_3D_FCO_VSP_DONBDV_E0163 |
---|
5127 |      TComPic* picDepth = NULL; |
---|
5128 | |
---|
5129 |      picDepth = getSlice()->getIvPic(true, getSlice()->getViewIndex() ); |
---|
5130 |      if ( picDepth->getPicYuvRec() != NULL ) |
---|
5131 | Â Â Â Â Â { |
---|
5132 | Â Â Â Â Â Â cDispVec.setZero(); |
---|
5133 | Â Â Â Â Â } |
---|
5134 |      else // Go back with virtual depth |
---|
5135 | Â Â Â Â Â { |
---|
5136 |       picDepth = getSlice()->getIvPic( true, pDInfo->m_aVIdxCan ); |
---|
5137 | Â Â Â Â Â } |
---|
5138 | |
---|
5139 | Â Â Â Â Â assert(picDepth !=Â NULL); |
---|
5140 | #else |
---|
5141 |      TComPic* picDepth = getSlice()->getIvPic( true, pDInfo->m_aVIdxCan ); |
---|
5142 | #endif |
---|
5143 | |
---|
5144 |      if (picDepth && bDepthRefine) |
---|
5145 | Â Â Â Â Â { |
---|
5146 |       estimateDVFromDM (pDInfo->m_aVIdxCan, uiPartIdx, picDepth, uiPartAddr, &cDispVec); |
---|
5147 | Â Â Â Â Â } |
---|
5148 | Â Â Â Â Â pDInfo->m_acDoNBDV =Â cDispVec; |
---|
5149 | #endif |
---|
5150 | Â Â Â Â Â return; |
---|
5151 | Â Â Â Â } |
---|
5152 | Â Â Â } |
---|
5153 | Â Â } |
---|
5154 | Â } |
---|
5155 | |
---|
5156 |  TComMv defaultDV(0, 0); |
---|
5157 | Â pDInfo->m_acNBDV =Â defaultDV; |
---|
5158 | |
---|
5159 |  if (getSlice()->getDefaultRefViewIdxAvailableFlag()) |
---|
5160 | Â { |
---|
5161 | Â Â pDInfo->m_aVIdxCan =Â getSlice()->getDefaultRefViewIdx(); |
---|
5162 | |
---|
5163 | #if NH_3D_NBDV_REF |
---|
5164 | Â Â TComPic*Â picDepth =Â NULL; |
---|
5165 | #if H_3D_FCO_VSP_DONBDV_E0163 |
---|
5166 |   picDepth = getSlice()->getIvPic(true, getSlice()->getViewIndex() ); |
---|
5167 |   if ( picDepth->getPicYuvRec() != NULL ) |
---|
5168 | Â Â { |
---|
5169 | Â Â Â defaultDV.setZero(); |
---|
5170 | Â Â } |
---|
5171 |   else // Go back with virtual depth |
---|
5172 | Â Â { |
---|
5173 |    picDepth = getSlice()->getIvPic( true, getSlice()->getDefaultRefViewIdx()); |
---|
5174 | Â Â } |
---|
5175 | |
---|
5176 | Â Â assert(picDepth !=Â NULL); |
---|
5177 | #else |
---|
5178 |   picDepth = getSlice()->getIvPic( true, getSlice()->getDefaultRefViewIdx()); |
---|
5179 | #endif |
---|
5180 |   if (picDepth && bDepthRefine) |
---|
5181 | Â Â { |
---|
5182 |    estimateDVFromDM(getSlice()->getDefaultRefViewIdx(), uiPartIdx, picDepth, uiPartAddr, &defaultDV ); // from base view |
---|
5183 | Â Â } |
---|
5184 | Â Â pDInfo->m_acDoNBDV =Â defaultDV; |
---|
5185 | #endif |
---|
5186 | Â } |
---|
5187 | } |
---|
5188 | |
---|
5189 | #if NH_3D_NBDV_REF |
---|
5190 | Pel TComDataCU::getMcpFromDM(TComPicYuv* pcBaseViewDepthPicYuv, TComMv* mv, Int iBlkX, Int iBlkY, Int iBlkWidth, Int iBlkHeight, Int* aiShiftLUT ) |
---|
5191 | { |
---|
5192 |  Int iPictureWidth = pcBaseViewDepthPicYuv->getWidth(COMPONENT_Y); |
---|
5193 | Â Int iPictureHeight =Â pcBaseViewDepthPicYuv->getHeight(COMPONENT_Y); |
---|
5194 | |
---|
5195 |  Int depthStartPosX = Clip3(0,  iPictureWidth - 1, iBlkX + ((mv->getHor()+2)>>2)); |
---|
5196 |  Int depthStartPosY = Clip3(0,  iPictureHeight - 1, iBlkY + ((mv->getVer()+2)>>2)); |
---|
5197 |  Int depthEndPosX  = Clip3(0,  iPictureWidth - 1, iBlkX + iBlkWidth - 1 + ((mv->getHor()+2)>>2)); |
---|
5198 |  Int depthEndPosY  = Clip3(0,  iPictureHeight - 1, iBlkY + iBlkHeight - 1 + ((mv->getVer()+2)>>2)); |
---|
5199 | |
---|
5200 | Â Pel*Â depthTLÂ =Â pcBaseViewDepthPicYuv->getAddr(COMPONENT_Y); |
---|
5201 | Â Int depStride =Â pcBaseViewDepthPicYuv->getStride(COMPONENT_Y); |
---|
5202 | |
---|
5203 |  Pel maxDepthVal = 0; |
---|
5204 |  maxDepthVal = std::max( maxDepthVal, depthTL[ (depthStartPosY) * depStride + depthStartPosX ]);   // Left Top |
---|
5205 |  maxDepthVal = std::max( maxDepthVal, depthTL[ (depthEndPosY)  * depStride + depthStartPosX ]);   // Left Bottom |
---|
5206 |  maxDepthVal = std::max( maxDepthVal, depthTL[ (depthStartPosY) * depStride + depthEndPosX  ]);   // Right Top |
---|
5207 |  maxDepthVal = std::max( maxDepthVal, depthTL[ (depthEndPosY)  * depStride + depthEndPosX  ]);   // Right Bottom |
---|
5208 | |
---|
5209 |  return aiShiftLUT[ maxDepthVal ]; |
---|
5210 | } |
---|
5211 | |
---|
5212 | Void TComDataCU::estimateDVFromDM(Int refViewIdx, UInt uiPartIdx, TComPic* picDepth, UInt uiPartAddr, TComMv* cMvPred ) |
---|
5213 | { |
---|
5214 |  if (picDepth) |
---|
5215 | Â { |
---|
5216 | Â Â UInt uiAbsPartAddrCurrCU =Â m_absZIdxInCtu +Â uiPartAddr; |
---|
5217 |   Int iWidth, iHeight; |
---|
5218 |   getPartIndexAndSize( uiPartIdx, uiPartAddr, iWidth, iHeight ); // The modified value of uiPartAddr won't be used any more |
---|
5219 | |
---|
5220 | Â Â TComPicYuv*Â pcBaseViewDepthPicYuv =Â picDepth->getPicYuvRec(); |
---|
5221 |   const TComSPS  &sps =*(getSlice()->getSPS()); |
---|
5222 | Â Â Int iBlkX =Â (Â getCtuRsAddr()Â %Â picDepth->getFrameWidthInCtus()Â )Â *Â sps.getMaxCUWidth()Â +Â g_auiRasterToPelX[Â g_auiZscanToRaster[Â uiAbsPartAddrCurrCU ]Â ]; |
---|
5223 | Â Â Int iBlkY =Â (Â getCtuRsAddr()Â /Â picDepth->getFrameWidthInCtus()Â )Â *Â sps.getMaxCUHeight()Â +Â g_auiRasterToPelY[Â g_auiZscanToRaster[Â uiAbsPartAddrCurrCU ]Â ]; |
---|
5224 | |
---|
5225 | Â Â Int*Â aiShiftLUT =Â getSlice()->getDepthToDisparityB(refViewIdx ); |
---|
5226 | |
---|
5227 |   Pel iDisp = getMcpFromDM( pcBaseViewDepthPicYuv, cMvPred, iBlkX, iBlkY, iWidth, iHeight, aiShiftLUT ); |
---|
5228 | Â Â cMvPred->setHor(Â iDisp ); |
---|
5229 | Â } |
---|
5230 | } |
---|
5231 | #endif //NH_3D_NBDV_REF |
---|
5232 | |
---|
5233 | |
---|
5234 | Bool TComDataCU::xCheckSpatialNBDV( TComDataCU* pcTmpCU, UInt uiIdx, DisInfo* pNbDvInfo, Bool bSearchForMvpDv, IDVInfo* paIDVInfo, UInt uiMvpDvPos |
---|
5235 | #if NH_3D_NBDV_REF |
---|
5236 | , Bool bDepthRefine |
---|
5237 | #endif |
---|
5238 | ) |
---|
5239 | { |
---|
5240 | Â if(Â pcTmpCU !=Â NULLÂ &&Â !pcTmpCU->isIntra(Â uiIdx )Â ) |
---|
5241 | Â { |
---|
5242 | Â Â Bool bTmpIsSkipped =Â pcTmpCU->isSkipped(Â uiIdx ); |
---|
5243 |   for(Int iList = 0; iList < (getSlice()->isInterB() ? 2: 1); iList ++) |
---|
5244 | Â Â { |
---|
5245 | Â Â Â RefPicList eRefPicList =Â RefPicList(iList); |
---|
5246 |    Int   refId = pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) ; |
---|
5247 | Â Â Â TComMv cMvPred =Â pcTmpCU->getCUMvField(eRefPicList)->getMv(uiIdx); |
---|
5248 | |
---|
5249 | Â Â Â if(Â refId >=Â 0) |
---|
5250 | Â Â Â { |
---|
5251 |     Int refViewIdx = pcTmpCU->getSlice()->getRefPic(eRefPicList, refId)->getViewIndex(); |
---|
5252 |     if (refViewIdx != m_pcSlice->getViewIndex()) |
---|
5253 | Â Â Â Â { |
---|
5254 | Â Â Â Â Â pNbDvInfo->m_acNBDV =Â cMvPred; |
---|
5255 | Â Â Â Â Â pNbDvInfo->m_aVIdxCan =Â refViewIdx; |
---|
5256 | #if NH_3D_NBDV_REF |
---|
5257 | Â Â Â Â Â TComPic*Â picDepth =Â NULL; |
---|
5258 |      assert(getSlice()->getRefPic(eRefPicList, refId)->getPOC() == getSlice()->getPOC());     |
---|
5259 | #if H_3D_FCO_VSP_DONBDV_E0163 |
---|
5260 |      picDepth = getSlice()->getIvPic(true, getSlice()->getViewIndex() ); |
---|
5261 |      if ( picDepth->getPicYuvRec() != NULL ) |
---|
5262 | Â Â Â Â Â { |
---|
5263 | Â Â Â Â Â Â cMvPred.setZero(); |
---|
5264 | Â Â Â Â Â } |
---|
5265 | Â Â Â Â Â else// Go back with virtual depth |
---|
5266 | Â Â Â Â Â { |
---|
5267 |       picDepth = getSlice()->getIvPic (true, refViewIdx ); |
---|
5268 | Â Â Â Â Â } |
---|
5269 | Â Â Â Â Â assert(picDepth !=Â NULL); |
---|
5270 | #else |
---|
5271 |      picDepth  = getSlice()->getIvPic (true, refViewIdx ); |
---|
5272 | #endif |
---|
5273 | Â Â Â Â Â UInt uiPartIdx =Â 0;Â Â //Notes from MTK: Please confirm that using 0 as partition index and partition address is correct for CU-level DoNBDV |
---|
5274 | Â Â Â Â Â UInt uiPartAddr =Â 0;Â //QC: confirmed |
---|
5275 | |
---|
5276 |      if (picDepth && bDepthRefine) |
---|
5277 | Â Â Â Â Â { |
---|
5278 |       estimateDVFromDM(refViewIdx, uiPartIdx, picDepth, uiPartAddr, &cMvPred ); |
---|
5279 | Â Â Â Â Â } |
---|
5280 | Â Â Â Â Â pNbDvInfo->m_acDoNBDV =Â cMvPred; |
---|
5281 | #endif |
---|
5282 |      return true; |
---|
5283 | Â Â Â Â } |
---|
5284 |     else if ( bSearchForMvpDv && cMvPred.getIDVFlag() && bTmpIsSkipped ) |
---|
5285 | Â Â Â Â { |
---|
5286 | Â Â Â Â Â assert(Â uiMvpDvPos <Â IDV_CANDS ); |
---|
5287 |      paIDVInfo->m_acMvCand[iList][ uiMvpDvPos ] = TComMv( cMvPred.getIDVHor(), cMvPred.getIDVVer() ); |
---|
5288 | Â Â Â Â Â //Notes from QC: DvMCP is implemented in a way that doesnot carry the reference view identifier as NBDV. It only works for CTC and needs to be fixed to be aligned with other part of the NBDV design. |
---|
5289 | Â Â Â Â Â paIDVInfo->m_aVIdxCan[iList][Â uiMvpDvPos ]Â =Â cMvPred.getIDVVId(); |
---|
5290 | Â Â Â Â Â paIDVInfo->m_bAvailab[iList][Â uiMvpDvPos ]Â =Â true; |
---|
5291 |      paIDVInfo->m_bFound            = true; |
---|
5292 | Â Â Â Â } |
---|
5293 | Â Â Â } |
---|
5294 | Â Â } |
---|
5295 | Â } |
---|
5296 |  return false; |
---|
5297 | } |
---|
5298 | Â |
---|
5299 | Void TComDataCU::xDeriveRightBottomNbIdx(Int &riLCUIdxRBNb, Int &riPartIdxRBNb ) |
---|
5300 | { |
---|
5301 | Â UInt uiPartIdx =Â 0; |
---|
5302 | Â UInt uiNumPartInCUWidth =Â m_pcPic->getNumPartInCtuWidth();Â |
---|
5303 | Â Int uiLCUIdx =Â getCtuRsAddr(); |
---|
5304 | |
---|
5305 | Â UInt uiPartIdxRB; |
---|
5306 |  deriveRightBottomIdx(uiPartIdx, uiPartIdxRB ); |
---|
5307 | Â UInt uiAbsPartIdxTmp =Â g_auiZscanToRaster[uiPartIdxRB]; |
---|
5308 | |
---|
5309 |  if (( m_pcPic->getCtu(m_ctuRsAddr)->getCUPelX() + g_auiRasterToPelX[uiAbsPartIdxTmp] + m_pcPic->getMinCUWidth() )>= m_pcSlice->getSPS()->getPicWidthInLumaSamples() ) |
---|
5310 | Â { |
---|
5311 |   riLCUIdxRBNb = -1; |
---|
5312 | Â Â riPartIdxRBNb =Â -1; |
---|
5313 | Â } |
---|
5314 |  else if(( m_pcPic->getCtu(m_ctuRsAddr)->getCUPelY() + g_auiRasterToPelY[uiAbsPartIdxTmp] + m_pcPic->getMinCUHeight() )>= m_pcSlice->getSPS()->getPicHeightInLumaSamples() ) |
---|
5315 | Â { |
---|
5316 |   riLCUIdxRBNb = -1; |
---|
5317 | Â Â riPartIdxRBNb =Â -1; |
---|
5318 | Â } |
---|
5319 | Â else |
---|
5320 | Â { |
---|
5321 |   if ( ( uiAbsPartIdxTmp % uiNumPartInCUWidth < uiNumPartInCUWidth - 1 ) &&      // is not at the last column of LCU |
---|
5322 |    ( uiAbsPartIdxTmp / uiNumPartInCUWidth < m_pcPic->getNumPartInCtuHeight() - 1 ) ) // is not at the last row  of LCU |
---|
5323 | Â Â { |
---|
5324 | Â Â Â riPartIdxRBNb =Â g_auiRasterToZscan[Â uiAbsPartIdxTmp +Â uiNumPartInCUWidth +Â 1Â ]; |
---|
5325 |    riLCUIdxRBNb = uiLCUIdx; |
---|
5326 | Â Â } |
---|
5327 |   else if ( uiAbsPartIdxTmp % uiNumPartInCUWidth < uiNumPartInCUWidth - 1 )      // is not at the last column of LCU But is last row of LCU |
---|
5328 | Â Â { |
---|
5329 | Â Â Â riPartIdxRBNb =Â -1; |
---|
5330 |    riLCUIdxRBNb = -1; |
---|
5331 | Â Â } |
---|
5332 |   else if ( uiAbsPartIdxTmp / uiNumPartInCUWidth < m_pcPic->getNumPartInCtuHeight() - 1 ) // is not at the last row of LCU But is last column of LCU |
---|
5333 | Â Â { |
---|
5334 | Â Â Â riPartIdxRBNb =Â g_auiRasterToZscan[Â uiAbsPartIdxTmp +Â 1Â ]; |
---|
5335 | Â Â Â riLCUIdxRBNb =Â uiLCUIdx +Â 1; |
---|
5336 | Â Â } |
---|
5337 |   else //is the right bottom corner of LCU            |
---|
5338 | Â Â { |
---|
5339 | Â Â Â riPartIdxRBNb =Â -1; |
---|
5340 |    riLCUIdxRBNb = -1; |
---|
5341 | Â Â } |
---|
5342 | Â } |
---|
5343 | } |
---|
5344 | |
---|
5345 | |
---|
5346 | Void TComDataCU::setDvInfoSubParts( DisInfo cDvInfo, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
5347 | { |
---|
5348 | #if NH_3D_VSP // bug fix |
---|
5349 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartitionsInCtu()Â >>Â (uiDepth <<Â 1); |
---|
5350 | Â assert(m_pcPic->getNumPartitionsInCtu()Â ==m_pcPic->getNumPartInCtuWidth()*m_pcPic->getNumPartInCtuHeight()); |
---|
5351 | |
---|
5352 | #else |
---|
5353 | Â UInt uiCurrPartNumb =Â m_pcPic->getNumPartInCtuWidth()Â >>Â (uiDepth <<Â 1); |
---|
5354 | #endif |
---|
5355 |  for (UInt ui = 0; ui < uiCurrPartNumb; ui++ ) |
---|
5356 | Â { |
---|
5357 | Â Â m_pDvInfo[uiAbsPartIdx +Â ui]Â =Â cDvInfo; |
---|
5358 | Â } |
---|
5359 | } |
---|
5360 | #if NH_3D_VSPÂ || NH_3D_DBBP |
---|
5361 | Void TComDataCU::setDvInfoSubParts( DisInfo cDvInfo, UInt uiAbsPartIdx, UInt uiPUIdx, UInt uiDepth ) |
---|
5362 | { |
---|
5363 |  setSubPartT<DisInfo>( cDvInfo, m_pDvInfo, uiAbsPartIdx, uiDepth, uiPUIdx ); |
---|
5364 | } |
---|
5365 | #endif |
---|
5366 | |
---|
5367 | Bool TComDataCU::xGetColDisMV( Int currCandPic, RefPicList eRefPicList, Int refidx, Int uiCUAddr, Int uiPartUnitIdx, TComMv& rcMv , Int & iTargetViewIdx, Int & |
---|