source: 3DVCSoftware/trunk/source/Lib/TLibCommon/TComYuv.cpp @ 72

Last change on this file since 72 was 56, checked in by hschwarz, 13 years ago

updated trunk (move to HM6.1)

  • Property svn:eol-style set to native
File size: 21.7 KB
RevLine 
[5]1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
[56]4 * granted under this license. 
[5]5 *
[56]6 * Copyright (c) 2010-2012, ITU/ISO/IEC
[5]7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
[56]17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
[5]18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
[2]33
34/** \file     TComYuv.cpp
35    \brief    general YUV buffer class
36    \todo     this should be merged with TComPicYuv
37*/
38
39#include <stdlib.h>
40#include <memory.h>
41#include <assert.h>
42#include <math.h>
43
44#include "CommonDef.h"
45#include "TComYuv.h"
[56]46#include "TComInterpolationFilter.h"
[2]47
[56]48//! \ingroup TLibCommon
49//! \{
50
[2]51TComYuv::TComYuv()
52{
53  m_apiBufY = NULL;
54  m_apiBufU = NULL;
55  m_apiBufV = NULL;
56}
57
58TComYuv::~TComYuv()
59{
60}
61
62Void TComYuv::create( UInt iWidth, UInt iHeight )
63{
64  // memory allocation
65  m_apiBufY  = (Pel*)xMalloc( Pel, iWidth*iHeight    );
66  m_apiBufU  = (Pel*)xMalloc( Pel, iWidth*iHeight >> 2 );
67  m_apiBufV  = (Pel*)xMalloc( Pel, iWidth*iHeight >> 2 );
68 
69  // set width and height
70  m_iWidth   = iWidth;
71  m_iHeight  = iHeight;
72  m_iCWidth  = iWidth  >> 1;
73  m_iCHeight = iHeight >> 1;
74}
75
76Void TComYuv::destroy()
77{
78  // memory free
79  xFree( m_apiBufY ); m_apiBufY = NULL;
80  xFree( m_apiBufU ); m_apiBufU = NULL;
81  xFree( m_apiBufV ); m_apiBufV = NULL;
82}
83
84Void TComYuv::clear()
85{
86  ::memset( m_apiBufY, 0, ( m_iWidth  * m_iHeight  )*sizeof(Pel) );
87  ::memset( m_apiBufU, 0, ( m_iCWidth * m_iCHeight )*sizeof(Pel) );
88  ::memset( m_apiBufV, 0, ( m_iCWidth * m_iCHeight )*sizeof(Pel) );
89}
90
91Void TComYuv::copyToPicYuv   ( TComPicYuv* pcPicYuvDst, UInt iCuAddr, UInt uiAbsZorderIdx, UInt uiPartDepth, UInt uiPartIdx )
92{
93  copyToPicLuma  ( pcPicYuvDst, iCuAddr, uiAbsZorderIdx, uiPartDepth, uiPartIdx );
94  copyToPicChroma( pcPicYuvDst, iCuAddr, uiAbsZorderIdx, uiPartDepth, uiPartIdx );
95}
96
97Void TComYuv::copyToPicLuma  ( TComPicYuv* pcPicYuvDst, UInt iCuAddr, UInt uiAbsZorderIdx, UInt uiPartDepth, UInt uiPartIdx )
98{
99  Int  y, iWidth, iHeight;
100  iWidth  = m_iWidth >>uiPartDepth;
101  iHeight = m_iHeight>>uiPartDepth;
102 
103  Pel* pSrc     = getLumaAddr(uiPartIdx, iWidth);
104  Pel* pDst     = pcPicYuvDst->getLumaAddr ( iCuAddr, uiAbsZorderIdx );
105 
106  UInt  iSrcStride  = getStride();
107  UInt  iDstStride  = pcPicYuvDst->getStride();
108 
109  for ( y = iHeight; y != 0; y-- )
110  {
111    ::memcpy( pDst, pSrc, sizeof(Pel)*iWidth);
112    pDst += iDstStride;
113    pSrc += iSrcStride;
114  }
115}
116
117Void TComYuv::copyToPicChroma( TComPicYuv* pcPicYuvDst, UInt iCuAddr, UInt uiAbsZorderIdx, UInt uiPartDepth, UInt uiPartIdx )
118{
119  Int  y, iWidth, iHeight;
120  iWidth  = m_iCWidth >>uiPartDepth;
121  iHeight = m_iCHeight>>uiPartDepth;
122 
123  Pel* pSrcU      = getCbAddr(uiPartIdx, iWidth);
124  Pel* pSrcV      = getCrAddr(uiPartIdx, iWidth);
125  Pel* pDstU      = pcPicYuvDst->getCbAddr( iCuAddr, uiAbsZorderIdx );
126  Pel* pDstV      = pcPicYuvDst->getCrAddr( iCuAddr, uiAbsZorderIdx );
127 
128  UInt  iSrcStride = getCStride();
129  UInt  iDstStride = pcPicYuvDst->getCStride();
130  for ( y = iHeight; y != 0; y-- )
131  {
132    ::memcpy( pDstU, pSrcU, sizeof(Pel)*(iWidth) );
133    ::memcpy( pDstV, pSrcV, sizeof(Pel)*(iWidth) );
134    pSrcU += iSrcStride;
135    pSrcV += iSrcStride;
136    pDstU += iDstStride;
137    pDstV += iDstStride;
138  }
139}
140
141Void TComYuv::copyFromPicYuv   ( TComPicYuv* pcPicYuvSrc, UInt iCuAddr, UInt uiAbsZorderIdx )
142{
143  copyFromPicLuma  ( pcPicYuvSrc, iCuAddr, uiAbsZorderIdx );
144  copyFromPicChroma( pcPicYuvSrc, iCuAddr, uiAbsZorderIdx );
145}
146
147Void TComYuv::copyFromPicLuma  ( TComPicYuv* pcPicYuvSrc, UInt iCuAddr, UInt uiAbsZorderIdx )
148{
149  Int  y;
150 
151  Pel* pDst     = m_apiBufY;
152  Pel* pSrc     = pcPicYuvSrc->getLumaAddr ( iCuAddr, uiAbsZorderIdx );
153 
154  UInt  iDstStride  = getStride();
155  UInt  iSrcStride  = pcPicYuvSrc->getStride();
156  for ( y = m_iHeight; y != 0; y-- )
157  {
158    ::memcpy( pDst, pSrc, sizeof(Pel)*m_iWidth);
159    pDst += iDstStride;
160    pSrc += iSrcStride;
161  }
162}
163
164Void TComYuv::copyFromPicChroma( TComPicYuv* pcPicYuvSrc, UInt iCuAddr, UInt uiAbsZorderIdx )
165{
166  Int  y;
167 
168  Pel* pDstU      = m_apiBufU;
169  Pel* pDstV      = m_apiBufV;
170  Pel* pSrcU      = pcPicYuvSrc->getCbAddr( iCuAddr, uiAbsZorderIdx );
171  Pel* pSrcV      = pcPicYuvSrc->getCrAddr( iCuAddr, uiAbsZorderIdx );
172 
173  UInt  iDstStride = getCStride();
174  UInt  iSrcStride = pcPicYuvSrc->getCStride();
175  for ( y = m_iCHeight; y != 0; y-- )
176  {
177    ::memcpy( pDstU, pSrcU, sizeof(Pel)*(m_iCWidth) );
178    ::memcpy( pDstV, pSrcV, sizeof(Pel)*(m_iCWidth) );
179    pSrcU += iSrcStride;
180    pSrcV += iSrcStride;
181    pDstU += iDstStride;
182    pDstV += iDstStride;
183  }
184}
185
186Void TComYuv::copyToPartYuv( TComYuv* pcYuvDst, UInt uiDstPartIdx )
187{
188  copyToPartLuma  ( pcYuvDst, uiDstPartIdx );
189  copyToPartChroma( pcYuvDst, uiDstPartIdx );
190}
191
192Void TComYuv::copyToPartLuma( TComYuv* pcYuvDst, UInt uiDstPartIdx )
193{
194  Int  y;
195 
196  Pel* pSrc     = m_apiBufY;
197  Pel* pDst     = pcYuvDst->getLumaAddr( uiDstPartIdx );
198 
199  UInt  iSrcStride  = getStride();
200  UInt  iDstStride  = pcYuvDst->getStride();
201  for ( y = m_iHeight; y != 0; y-- )
202  {
203    ::memcpy( pDst, pSrc, sizeof(Pel)*m_iWidth);
204    pDst += iDstStride;
205    pSrc += iSrcStride;
206  }
207}
208
209Void TComYuv::copyToPartChroma( TComYuv* pcYuvDst, UInt uiDstPartIdx )
210{
211  Int  y;
212 
213  Pel* pSrcU      = m_apiBufU;
214  Pel* pSrcV      = m_apiBufV;
215  Pel* pDstU      = pcYuvDst->getCbAddr( uiDstPartIdx );
216  Pel* pDstV      = pcYuvDst->getCrAddr( uiDstPartIdx );
217 
218  UInt  iSrcStride = getCStride();
219  UInt  iDstStride = pcYuvDst->getCStride();
220  for ( y = m_iCHeight; y != 0; y-- )
221  {
222    ::memcpy( pDstU, pSrcU, sizeof(Pel)*(m_iCWidth) );
223    ::memcpy( pDstV, pSrcV, sizeof(Pel)*(m_iCWidth) );
224    pSrcU += iSrcStride;
225    pSrcV += iSrcStride;
226    pDstU += iDstStride;
227    pDstV += iDstStride;
228  }
229}
230
231Void TComYuv::copyPartToYuv( TComYuv* pcYuvDst, UInt uiSrcPartIdx )
232{
233  copyPartToLuma  ( pcYuvDst, uiSrcPartIdx );
234  copyPartToChroma( pcYuvDst, uiSrcPartIdx );
235}
236
237Void TComYuv::copyPartToLuma( TComYuv* pcYuvDst, UInt uiSrcPartIdx )
238{
239  Int  y;
240 
241  Pel* pSrc     = getLumaAddr(uiSrcPartIdx);
242  Pel* pDst     = pcYuvDst->getLumaAddr( 0 );
243 
244  UInt  iSrcStride  = getStride();
245  UInt  iDstStride  = pcYuvDst->getStride();
246 
247  UInt uiHeight = pcYuvDst->getHeight();
248  UInt uiWidth = pcYuvDst->getWidth();
249 
250  for ( y = uiHeight; y != 0; y-- )
251  {
252    ::memcpy( pDst, pSrc, sizeof(Pel)*uiWidth);
253    pDst += iDstStride;
254    pSrc += iSrcStride;
255  }
256}
257
258Void TComYuv::copyPartToChroma( TComYuv* pcYuvDst, UInt uiSrcPartIdx )
259{
260  Int  y;
261 
262  Pel* pSrcU      = getCbAddr( uiSrcPartIdx );
263  Pel* pSrcV      = getCrAddr( uiSrcPartIdx );
264  Pel* pDstU      = pcYuvDst->getCbAddr( 0 );
265  Pel* pDstV      = pcYuvDst->getCrAddr( 0 );
266 
267  UInt  iSrcStride = getCStride();
268  UInt  iDstStride = pcYuvDst->getCStride();
269 
270  UInt uiCHeight = pcYuvDst->getCHeight();
271  UInt uiCWidth = pcYuvDst->getCWidth();
272 
273  for ( y = uiCHeight; y != 0; y-- )
274  {
275    ::memcpy( pDstU, pSrcU, sizeof(Pel)*(uiCWidth) );
276    ::memcpy( pDstV, pSrcV, sizeof(Pel)*(uiCWidth) );
277    pSrcU += iSrcStride;
278    pSrcV += iSrcStride;
279    pDstU += iDstStride;
280    pDstV += iDstStride;
281  }
282}
283
[21]284#if DEPTH_MAP_GENERATION
285Void TComYuv::copyPartToPartYuvPdm   ( TComYuv* pcYuvDst, UInt uiPartIdx, UInt iWidth, UInt iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY )
286{
287  copyPartToPartLumaPdm   (pcYuvDst, uiPartIdx, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY );
288}
289#endif
[56]290
[2]291Void TComYuv::copyPartToPartYuv   ( TComYuv* pcYuvDst, UInt uiPartIdx, UInt iWidth, UInt iHeight )
292{
293  copyPartToPartLuma   (pcYuvDst, uiPartIdx, iWidth, iHeight );
294  copyPartToPartChroma (pcYuvDst, uiPartIdx, iWidth>>1, iHeight>>1 );
295}
296
[21]297#if DEPTH_MAP_GENERATION
298Void TComYuv::copyPartToPartLumaPdm  ( TComYuv* pcYuvDst, UInt uiPartIdx, UInt iWidth, UInt iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY )
299{
300  UInt uiBlkX = g_auiRasterToPelX[ g_auiZscanToRaster[ uiPartIdx ] ] >> uiSubSampExpX;
301  UInt uiBlkY = g_auiRasterToPelY[ g_auiZscanToRaster[ uiPartIdx ] ] >> uiSubSampExpY;
302  Pel* pSrc   = getLumaAddr(uiPartIdx);
303  Pel* pDst   = pcYuvDst->getLumaAddr() + uiBlkY * pcYuvDst->getStride() + uiBlkX;
[56]304
[21]305  if( pSrc == pDst )
306  {
307    //th not a good idea
308    //th best would be to fix the caller
309    return ;
310  }
[56]311
[21]312  UInt  iSrcStride = getStride();
313  UInt  iDstStride = pcYuvDst->getStride();
314  for ( UInt y = iHeight; y != 0; y-- )
315  {
316    ::memcpy( pDst, pSrc, iWidth * sizeof(Pel) );
317    pSrc += iSrcStride;
318    pDst += iDstStride;
319  }
320}
321#endif
322
[2]323Void TComYuv::copyPartToPartLuma  ( TComYuv* pcYuvDst, UInt uiPartIdx, UInt iWidth, UInt iHeight )
324{
325  Pel* pSrc =           getLumaAddr(uiPartIdx);
326  Pel* pDst = pcYuvDst->getLumaAddr(uiPartIdx);
327  if( pSrc == pDst )
328  {
329    //th not a good idea
330    //th best would be to fix the caller
331    return ;
332  }
333 
334  UInt  iSrcStride = getStride();
335  UInt  iDstStride = pcYuvDst->getStride();
336  for ( UInt y = iHeight; y != 0; y-- )
337  {
338    ::memcpy( pDst, pSrc, iWidth * sizeof(Pel) );
339    pSrc += iSrcStride;
340    pDst += iDstStride;
341  }
342}
343
344Void TComYuv::copyPartToPartChroma( TComYuv* pcYuvDst, UInt uiPartIdx, UInt iWidth, UInt iHeight )
345{
346  Pel*  pSrcU =           getCbAddr(uiPartIdx);
347  Pel*  pSrcV =           getCrAddr(uiPartIdx);
348  Pel*  pDstU = pcYuvDst->getCbAddr(uiPartIdx);
349  Pel*  pDstV = pcYuvDst->getCrAddr(uiPartIdx);
350 
351  if( pSrcU == pDstU && pSrcV == pDstV)
352  {
353    //th not a good idea
354    //th best would be to fix the caller
355    return ;
356  }
357 
358  UInt   iSrcStride = getCStride();
359  UInt   iDstStride = pcYuvDst->getCStride();
360  for ( UInt y = iHeight; y != 0; y-- )
361  {
362    ::memcpy( pDstU, pSrcU, iWidth * sizeof(Pel) );
363    ::memcpy( pDstV, pSrcV, iWidth * sizeof(Pel) );
364    pSrcU += iSrcStride;
365    pSrcV += iSrcStride;
366    pDstU += iDstStride;
367    pDstV += iDstStride;
368  }
369}
370
371Void TComYuv::addClipPartLuma( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt uiTrUnitIdx, UInt uiPartSize )
372{
373  Int x, y;
374
375  Pel* pSrc0 = pcYuvSrc0->getLumaAddr( uiTrUnitIdx);
376  Pel* pSrc1 = pcYuvSrc1->getLumaAddr( uiTrUnitIdx);
377  Pel* pDst  = getLumaAddr( uiTrUnitIdx);
378
379  UInt iSrc0Stride = pcYuvSrc0->getStride();
380  UInt iSrc1Stride = pcYuvSrc1->getStride();
381  UInt iDstStride  = getStride();
382  for ( y = uiPartSize-1; y >= 0; y-- )
383  {
384    for ( x = uiPartSize-1; x >= 0; x-- )
385    {
[56]386      pDst[x] = Clip( pSrc0[x] + pSrc1[x] );     
[2]387    }
388    pSrc0 += iSrc0Stride;
389    pSrc1 += iSrc1Stride;
390    pDst  += iDstStride;
391  }
392}
393
[56]394
395Void
[2]396TComYuv::add( TComYuv* pcYuvAdd, Int iWidth, Int iHeight, Bool bSubtract )
397{
398  addLuma   ( pcYuvAdd, iWidth,    iHeight,    bSubtract );
399  addChroma ( pcYuvAdd, iWidth>>1, iHeight>>1, bSubtract );
400}
401
[56]402Void
[2]403TComYuv::addLuma( TComYuv* pcYuvAdd, Int iWidth, Int iHeight, Bool bSubtract )
404{
405  Int   iScale      = ( bSubtract ? -1 : 1 );
406  Int   iAddStride  = pcYuvAdd->getStride();
407  Int   iDstStride  = getStride();
408  Pel*  pAddSamples = pcYuvAdd->getLumaAddr();
409  Pel*  pDstSamples = getLumaAddr();
410  for( Int iY = 0; iY < iHeight; iY++, pDstSamples += iDstStride, pAddSamples += iAddStride )
411  {
412    for( Int iX = 0; iX < iWidth; iX++ )
413    {
414      pDstSamples[iX] += iScale * pAddSamples[iX];
415    }
416  }
417}
418
[56]419Void
[2]420TComYuv::addChroma( TComYuv* pcYuvAdd, Int iWidth, Int iHeight, Bool bSubtract )
421{
422  Int   iScale        = ( bSubtract ? -1 : 1 );
423  Int   iAddStride    = pcYuvAdd->getCStride();
424  Int   iDstStride    = getCStride();
425  Pel*  pAddSamplesCb = pcYuvAdd->getCbAddr();
426  Pel*  pAddSamplesCr = pcYuvAdd->getCrAddr();
427  Pel*  pDstSamplesCb = getCbAddr();
428  Pel*  pDstSamplesCr = getCrAddr();
429  for( Int iY = 0; iY < iHeight; iY++, pDstSamplesCb += iDstStride, pAddSamplesCb += iAddStride,
430                                       pDstSamplesCr += iDstStride, pAddSamplesCr += iAddStride  )
431  {
432    for( Int iX = 0; iX < iWidth; iX++ )
433    {
434      pDstSamplesCb[iX] += iScale * pAddSamplesCb[iX];
435      pDstSamplesCr[iX] += iScale * pAddSamplesCr[iX];
436    }
437  }
438}
439
[56]440Void
[2]441TComYuv::clip( Int iWidth, Int iHeight )
442{
443  clipLuma   ( iWidth,    iHeight    );
444  clipChroma ( iWidth>>1, iHeight>>1 );
445}
446
[56]447Void
[2]448TComYuv::clipLuma( Int iWidth, Int iHeight )
449{
450  Int   iStride  = getStride();
451  Pel*  pSamples = getLumaAddr();
452  for( Int iY = 0; iY < iHeight; iY++, pSamples += iStride )
453  {
454    for( Int iX = 0; iX < iWidth; iX++ )
455    {
456      pSamples[iX] = xClip( pSamples[iX] );
457    }
458  }
459}
460
[56]461Void
[2]462TComYuv::clipChroma( Int iWidth, Int iHeight )
463{
464  Int   iStride    = getCStride();
465  Pel*  pSamplesCb = getCbAddr();
466  Pel*  pSamplesCr = getCrAddr();
467  for( Int iY = 0; iY < iHeight; iY++, pSamplesCb += iStride, pSamplesCr += iStride )
468  {
469    for( Int iX = 0; iX < iWidth; iX++ )
470    {
471      pSamplesCb[iX] = xClip( pSamplesCb[iX] );
472      pSamplesCr[iX] = xClip( pSamplesCr[iX] );
473    }
474  }
475}
476
477Void TComYuv::addClip( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt uiTrUnitIdx, UInt uiPartSize )
478{
479  addClipLuma   ( pcYuvSrc0, pcYuvSrc1, uiTrUnitIdx, uiPartSize     );
480  addClipChroma ( pcYuvSrc0, pcYuvSrc1, uiTrUnitIdx, uiPartSize>>1  );
481}
482
483Void TComYuv::addClipLuma( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt uiTrUnitIdx, UInt uiPartSize )
484{
485  Int x, y;
486 
487  Pel* pSrc0 = pcYuvSrc0->getLumaAddr( uiTrUnitIdx, uiPartSize );
488  Pel* pSrc1 = pcYuvSrc1->getLumaAddr( uiTrUnitIdx, uiPartSize );
489  Pel* pDst  = getLumaAddr( uiTrUnitIdx, uiPartSize );
490 
491  UInt iSrc0Stride = pcYuvSrc0->getStride();
492  UInt iSrc1Stride = pcYuvSrc1->getStride();
493  UInt iDstStride  = getStride();
494  for ( y = uiPartSize-1; y >= 0; y-- )
495  {
496    for ( x = uiPartSize-1; x >= 0; x-- )
497    {
[56]498      pDst[x] = Clip( pSrc0[x] + pSrc1[x] );
[2]499    }
500    pSrc0 += iSrc0Stride;
501    pSrc1 += iSrc1Stride;
502    pDst  += iDstStride;
503  }
504}
505
506Void TComYuv::addClipChroma( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt uiTrUnitIdx, UInt uiPartSize )
507{
508  Int x, y;
509 
510  Pel* pSrcU0 = pcYuvSrc0->getCbAddr( uiTrUnitIdx, uiPartSize );
511  Pel* pSrcU1 = pcYuvSrc1->getCbAddr( uiTrUnitIdx, uiPartSize );
512  Pel* pSrcV0 = pcYuvSrc0->getCrAddr( uiTrUnitIdx, uiPartSize );
513  Pel* pSrcV1 = pcYuvSrc1->getCrAddr( uiTrUnitIdx, uiPartSize );
514  Pel* pDstU = getCbAddr( uiTrUnitIdx, uiPartSize );
515  Pel* pDstV = getCrAddr( uiTrUnitIdx, uiPartSize );
516 
517  UInt  iSrc0Stride = pcYuvSrc0->getCStride();
518  UInt  iSrc1Stride = pcYuvSrc1->getCStride();
519  UInt  iDstStride  = getCStride();
520  for ( y = uiPartSize-1; y >= 0; y-- )
521  {
522    for ( x = uiPartSize-1; x >= 0; x-- )
523    {
[56]524      pDstU[x] = Clip( pSrcU0[x] + pSrcU1[x] );
525      pDstV[x] = Clip( pSrcV0[x] + pSrcV1[x] );
[2]526    }
527   
528    pSrcU0 += iSrc0Stride;
529    pSrcU1 += iSrc1Stride;
530    pSrcV0 += iSrc0Stride;
531    pSrcV1 += iSrc1Stride;
532    pDstU  += iDstStride;
533    pDstV  += iDstStride;
534  }
535}
536
537Void TComYuv::subtract( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt uiTrUnitIdx, UInt uiPartSize )
538{
539  subtractLuma  ( pcYuvSrc0, pcYuvSrc1,  uiTrUnitIdx, uiPartSize    );
540  subtractChroma( pcYuvSrc0, pcYuvSrc1,  uiTrUnitIdx, uiPartSize>>1 );
541}
542
543Void TComYuv::subtractLuma( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt uiTrUnitIdx, UInt uiPartSize )
544{
545  Int x, y;
546 
547  Pel* pSrc0 = pcYuvSrc0->getLumaAddr( uiTrUnitIdx, uiPartSize );
548  Pel* pSrc1 = pcYuvSrc1->getLumaAddr( uiTrUnitIdx, uiPartSize );
549  Pel* pDst  = getLumaAddr( uiTrUnitIdx, uiPartSize );
550 
551  Int  iSrc0Stride = pcYuvSrc0->getStride();
552  Int  iSrc1Stride = pcYuvSrc1->getStride();
553  Int  iDstStride  = getStride();
554  for ( y = uiPartSize-1; y >= 0; y-- )
555  {
556    for ( x = uiPartSize-1; x >= 0; x-- )
557    {
558      pDst[x] = pSrc0[x] - pSrc1[x];
559    }
560    pSrc0 += iSrc0Stride;
561    pSrc1 += iSrc1Stride;
562    pDst  += iDstStride;
563  }
564}
565
566Void TComYuv::subtractChroma( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt uiTrUnitIdx, UInt uiPartSize )
567{
568  Int x, y;
569 
570  Pel* pSrcU0 = pcYuvSrc0->getCbAddr( uiTrUnitIdx, uiPartSize );
571  Pel* pSrcU1 = pcYuvSrc1->getCbAddr( uiTrUnitIdx, uiPartSize );
572  Pel* pSrcV0 = pcYuvSrc0->getCrAddr( uiTrUnitIdx, uiPartSize );
573  Pel* pSrcV1 = pcYuvSrc1->getCrAddr( uiTrUnitIdx, uiPartSize );
574  Pel* pDstU  = getCbAddr( uiTrUnitIdx, uiPartSize );
575  Pel* pDstV  = getCrAddr( uiTrUnitIdx, uiPartSize );
576 
577  Int  iSrc0Stride = pcYuvSrc0->getCStride();
578  Int  iSrc1Stride = pcYuvSrc1->getCStride();
579  Int  iDstStride  = getCStride();
580  for ( y = uiPartSize-1; y >= 0; y-- )
581  {
582    for ( x = uiPartSize-1; x >= 0; x-- )
583    {
584      pDstU[x] = pSrcU0[x] - pSrcU1[x];
585      pDstV[x] = pSrcV0[x] - pSrcV1[x];
586    }
587    pSrcU0 += iSrc0Stride;
588    pSrcU1 += iSrc1Stride;
589    pSrcV0 += iSrc0Stride;
590    pSrcV1 += iSrc1Stride;
591    pDstU  += iDstStride;
592    pDstV  += iDstStride;
593  }
594}
595
596Void TComYuv::addAvg( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt iPartUnitIdx, UInt iWidth, UInt iHeight )
597{
598  Int x, y;
599 
600  Pel* pSrcY0  = pcYuvSrc0->getLumaAddr( iPartUnitIdx );
601  Pel* pSrcU0  = pcYuvSrc0->getCbAddr  ( iPartUnitIdx );
602  Pel* pSrcV0  = pcYuvSrc0->getCrAddr  ( iPartUnitIdx );
603 
604  Pel* pSrcY1  = pcYuvSrc1->getLumaAddr( iPartUnitIdx );
605  Pel* pSrcU1  = pcYuvSrc1->getCbAddr  ( iPartUnitIdx );
606  Pel* pSrcV1  = pcYuvSrc1->getCrAddr  ( iPartUnitIdx );
607 
608  Pel* pDstY   = getLumaAddr( iPartUnitIdx );
609  Pel* pDstU   = getCbAddr  ( iPartUnitIdx );
610  Pel* pDstV   = getCrAddr  ( iPartUnitIdx );
611 
612  UInt  iSrc0Stride = pcYuvSrc0->getStride();
613  UInt  iSrc1Stride = pcYuvSrc1->getStride();
614  UInt  iDstStride  = getStride();
[56]615  Int shiftNum = IF_INTERNAL_PREC + 1 - ( g_uiBitDepth + g_uiBitIncrement );
616  Int offset = ( 1 << ( shiftNum - 1 ) ) + 2 * IF_INTERNAL_OFFS;
[2]617 
[56]618  for ( y = 0; y < iHeight; y++ )
[2]619  {
[56]620    for ( x = 0; x < iWidth; x += 4 )
[2]621    {
[56]622      pDstY[ x + 0 ] = Clip( ( pSrcY0[ x + 0 ] + pSrcY1[ x + 0 ] + offset ) >> shiftNum );
623      pDstY[ x + 1 ] = Clip( ( pSrcY0[ x + 1 ] + pSrcY1[ x + 1 ] + offset ) >> shiftNum );
624      pDstY[ x + 2 ] = Clip( ( pSrcY0[ x + 2 ] + pSrcY1[ x + 2 ] + offset ) >> shiftNum );
625      pDstY[ x + 3 ] = Clip( ( pSrcY0[ x + 3 ] + pSrcY1[ x + 3 ] + offset ) >> shiftNum );
[2]626    }
627    pSrcY0 += iSrc0Stride;
628    pSrcY1 += iSrc1Stride;
629    pDstY  += iDstStride;
630  }
631 
632  iSrc0Stride = pcYuvSrc0->getCStride();
633  iSrc1Stride = pcYuvSrc1->getCStride();
634  iDstStride  = getCStride();
635 
636  iWidth  >>=1;
637  iHeight >>=1;
638 
639  for ( y = iHeight-1; y >= 0; y-- )
640  {
641    for ( x = iWidth-1; x >= 0; )
642    {
643      // note: chroma min width is 2
644      pDstU[x] = Clip((pSrcU0[x] + pSrcU1[x] + offset) >> shiftNum);
645      pDstV[x] = Clip((pSrcV0[x] + pSrcV1[x] + offset) >> shiftNum); x--;
646      pDstU[x] = Clip((pSrcU0[x] + pSrcU1[x] + offset) >> shiftNum);
647      pDstV[x] = Clip((pSrcV0[x] + pSrcV1[x] + offset) >> shiftNum); x--;
648    }
649   
650    pSrcU0 += iSrc0Stride;
651    pSrcU1 += iSrc1Stride;
652    pSrcV0 += iSrc0Stride;
653    pSrcV1 += iSrc1Stride;
654    pDstU  += iDstStride;
655    pDstV  += iDstStride;
656  }
657}
658
[21]659#if DEPTH_MAP_GENERATION
660Void TComYuv::addAvgPdm( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, UInt iPartUnitIdx, UInt iWidth, UInt iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY )
661{
662  Int x, y;
663
664  UInt uiBlkX  = g_auiRasterToPelX[ g_auiZscanToRaster[ iPartUnitIdx ] ] >> uiSubSampExpX;
665  UInt uiBlkY  = g_auiRasterToPelY[ g_auiZscanToRaster[ iPartUnitIdx ] ] >> uiSubSampExpY;
666  Pel* pSrcY0  = pcYuvSrc0->getLumaAddr( iPartUnitIdx );
667  Pel* pSrcY1  = pcYuvSrc1->getLumaAddr( iPartUnitIdx );
668  Pel* pDstY   = getLumaAddr() + uiBlkY * getStride() + uiBlkX;
[56]669
[21]670  UInt  iSrc0Stride = pcYuvSrc0->getStride();
671  UInt  iSrc1Stride = pcYuvSrc1->getStride();
672  UInt  iDstStride  = getStride();
673
674  for ( y = iHeight-1; y >= 0; y-- )
675  {
676    for ( x = iWidth-1; x >= 0; x-- )
677    {
678      pDstY[x] = (pSrcY0[x] + pSrcY1[x] + 1) >> 1;
679    }
680    pSrcY0 += iSrc0Stride;
681    pSrcY1 += iSrc1Stride;
682    pDstY  += iDstStride;
683  }
684}
685#endif
686
[2]687Void TComYuv::removeHighFreq( TComYuv* pcYuvSrc, UInt uiPartIdx, UInt uiWidht, UInt uiHeight )
688{
689  Int x, y;
690 
691  Pel* pSrc  = pcYuvSrc->getLumaAddr(uiPartIdx);
692  Pel* pSrcU = pcYuvSrc->getCbAddr(uiPartIdx);
693  Pel* pSrcV = pcYuvSrc->getCrAddr(uiPartIdx);
694 
695  Pel* pDst  = getLumaAddr(uiPartIdx);
696  Pel* pDstU = getCbAddr(uiPartIdx);
697  Pel* pDstV = getCrAddr(uiPartIdx);
698 
699  Int  iSrcStride = pcYuvSrc->getStride();
700  Int  iDstStride = getStride();
701 
702  for ( y = uiHeight-1; y >= 0; y-- )
703  {
704    for ( x = uiWidht-1; x >= 0; x-- )
705    {
[56]706#if DISABLING_CLIP_FOR_BIPREDME
707      pDst[x ] = (pDst[x ]<<1) - pSrc[x ] ;
708#else
709      pDst[x ] = Clip( (pDst[x ]<<1) - pSrc[x ] );
710#endif
[2]711    }
712    pSrc += iSrcStride;
713    pDst += iDstStride;
714  }
715 
716  iSrcStride = pcYuvSrc->getCStride();
717  iDstStride = getCStride();
718 
719  uiHeight >>= 1;
720  uiWidht  >>= 1;
721 
722  for ( y = uiHeight-1; y >= 0; y-- )
723  {
724    for ( x = uiWidht-1; x >= 0; x-- )
725    {
[56]726#if DISABLING_CLIP_FOR_BIPREDME
727      pDstU[x ] = (pDstU[x ]<<1) - pSrcU[x ] ;
728      pDstV[x ] = (pDstV[x ]<<1) - pSrcV[x ] ;
729#else
730      pDstU[x ] = Clip( (pDstU[x ]<<1) - pSrcU[x ] );
731      pDstV[x ] = Clip( (pDstV[x ]<<1) - pSrcV[x ] );
732#endif
[2]733    }
734    pSrcU += iSrcStride;
735    pSrcV += iSrcStride;
736    pDstU += iDstStride;
737    pDstV += iDstStride;
738  }
739}
[56]740//! \}
Note: See TracBrowser for help on using the repository browser.