source: SHVCSoftware/branches/SHM-4.0-dev/source/Lib/TLibCommon/TComPicYuv.cpp @ 463

Last change on this file since 463 was 445, checked in by seregin, 11 years ago

enable layer-specific CTB structure

  • Property svn:eol-style set to native
File size: 11.4 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2013, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TComPicYuv.cpp
35    \brief    picture YUV buffer class
36*/
37
38#include <cstdlib>
39#include <assert.h>
40#include <memory.h>
41
42#ifdef __APPLE__
43#include <malloc/malloc.h>
44#else
45#include <malloc.h>
46#endif
47
48#include "TComPicYuv.h"
49
50//! \ingroup TLibCommon
51//! \{
52
53TComPicYuv::TComPicYuv()
54{
55  m_apiPicBufY      = NULL;   // Buffer (including margin)
56  m_apiPicBufU      = NULL;
57  m_apiPicBufV      = NULL;
58 
59  m_piPicOrgY       = NULL;    // m_apiPicBufY + m_iMarginLuma*getStride() + m_iMarginLuma
60  m_piPicOrgU       = NULL;
61  m_piPicOrgV       = NULL;
62 
63  m_bIsBorderExtended = false;
64}
65
66TComPicYuv::~TComPicYuv()
67{
68}
69#if SVC_UPSAMPLING
70Void TComPicYuv::create( Int iPicWidth, Int iPicHeight, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxCUDepth, TComSPS* pcSps )
71#else
72Void TComPicYuv::create( Int iPicWidth, Int iPicHeight, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxCUDepth )
73#endif
74{
75  m_iPicWidth       = iPicWidth;
76  m_iPicHeight      = iPicHeight;
77 
78#if SVC_UPSAMPLING
79  if(pcSps != NULL)
80  {
81    m_conformanceWindow = pcSps->getConformanceWindow();
82  }
83#endif
84
85  // --> After config finished!
86  m_iCuWidth        = uiMaxCUWidth;
87  m_iCuHeight       = uiMaxCUHeight;
88
89  Int numCuInWidth  = m_iPicWidth  / m_iCuWidth  + (m_iPicWidth  % m_iCuWidth  != 0);
90  Int numCuInHeight = m_iPicHeight / m_iCuHeight + (m_iPicHeight % m_iCuHeight != 0);
91 
92#if LAYER_CTB
93  m_iLumaMarginX    = uiMaxCUWidth  + 16; // for 16-byte alignment
94  m_iLumaMarginY    = uiMaxCUHeight + 16;  // margin for 8-tap filter and infinite padding
95#else
96  m_iLumaMarginX    = g_uiMaxCUWidth  + 16; // for 16-byte alignment
97  m_iLumaMarginY    = g_uiMaxCUHeight + 16;  // margin for 8-tap filter and infinite padding
98#endif
99 
100  m_iChromaMarginX  = m_iLumaMarginX>>1;
101  m_iChromaMarginY  = m_iLumaMarginY>>1;
102 
103  m_apiPicBufY      = (Pel*)xMalloc( Pel, ( m_iPicWidth       + (m_iLumaMarginX  <<1)) * ( m_iPicHeight       + (m_iLumaMarginY  <<1)));
104  m_apiPicBufU      = (Pel*)xMalloc( Pel, ((m_iPicWidth >> 1) + (m_iChromaMarginX<<1)) * ((m_iPicHeight >> 1) + (m_iChromaMarginY<<1)));
105  m_apiPicBufV      = (Pel*)xMalloc( Pel, ((m_iPicWidth >> 1) + (m_iChromaMarginX<<1)) * ((m_iPicHeight >> 1) + (m_iChromaMarginY<<1)));
106 
107  m_piPicOrgY       = m_apiPicBufY + m_iLumaMarginY   * getStride()  + m_iLumaMarginX;
108  m_piPicOrgU       = m_apiPicBufU + m_iChromaMarginY * getCStride() + m_iChromaMarginX;
109  m_piPicOrgV       = m_apiPicBufV + m_iChromaMarginY * getCStride() + m_iChromaMarginX;
110 
111  m_bIsBorderExtended = false;
112 
113  m_cuOffsetY = new Int[numCuInWidth * numCuInHeight];
114  m_cuOffsetC = new Int[numCuInWidth * numCuInHeight];
115  for (Int cuRow = 0; cuRow < numCuInHeight; cuRow++)
116  {
117    for (Int cuCol = 0; cuCol < numCuInWidth; cuCol++)
118    {
119      m_cuOffsetY[cuRow * numCuInWidth + cuCol] = getStride() * cuRow * m_iCuHeight + cuCol * m_iCuWidth;
120      m_cuOffsetC[cuRow * numCuInWidth + cuCol] = getCStride() * cuRow * (m_iCuHeight / 2) + cuCol * (m_iCuWidth / 2);
121    }
122  }
123 
124  m_buOffsetY = new Int[(size_t)1 << (2 * uiMaxCUDepth)];
125  m_buOffsetC = new Int[(size_t)1 << (2 * uiMaxCUDepth)];
126  for (Int buRow = 0; buRow < (1 << uiMaxCUDepth); buRow++)
127  {
128    for (Int buCol = 0; buCol < (1 << uiMaxCUDepth); buCol++)
129    {
130      m_buOffsetY[(buRow << uiMaxCUDepth) + buCol] = getStride() * buRow * (uiMaxCUHeight >> uiMaxCUDepth) + buCol * (uiMaxCUWidth  >> uiMaxCUDepth);
131      m_buOffsetC[(buRow << uiMaxCUDepth) + buCol] = getCStride() * buRow * (uiMaxCUHeight / 2 >> uiMaxCUDepth) + buCol * (uiMaxCUWidth / 2 >> uiMaxCUDepth);
132    }
133  }
134  return;
135}
136
137Void TComPicYuv::destroy()
138{
139  m_piPicOrgY       = NULL;
140  m_piPicOrgU       = NULL;
141  m_piPicOrgV       = NULL;
142 
143  if( m_apiPicBufY ){ xFree( m_apiPicBufY );    m_apiPicBufY = NULL; }
144  if( m_apiPicBufU ){ xFree( m_apiPicBufU );    m_apiPicBufU = NULL; }
145  if( m_apiPicBufV ){ xFree( m_apiPicBufV );    m_apiPicBufV = NULL; }
146
147  delete[] m_cuOffsetY;
148  delete[] m_cuOffsetC;
149  delete[] m_buOffsetY;
150  delete[] m_buOffsetC;
151}
152
153Void TComPicYuv::createLuma( Int iPicWidth, Int iPicHeight, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxCUDepth )
154{
155  m_iPicWidth       = iPicWidth;
156  m_iPicHeight      = iPicHeight;
157 
158  // --> After config finished!
159  m_iCuWidth        = uiMaxCUWidth;
160  m_iCuHeight       = uiMaxCUHeight;
161 
162  Int numCuInWidth  = m_iPicWidth  / m_iCuWidth  + (m_iPicWidth  % m_iCuWidth  != 0);
163  Int numCuInHeight = m_iPicHeight / m_iCuHeight + (m_iPicHeight % m_iCuHeight != 0);
164 
165  m_iLumaMarginX    = g_uiMaxCUWidth  + 16; // for 16-byte alignment
166  m_iLumaMarginY    = g_uiMaxCUHeight + 16;  // margin for 8-tap filter and infinite padding
167 
168  m_apiPicBufY      = (Pel*)xMalloc( Pel, ( m_iPicWidth       + (m_iLumaMarginX  <<1)) * ( m_iPicHeight       + (m_iLumaMarginY  <<1)));
169  m_piPicOrgY       = m_apiPicBufY + m_iLumaMarginY   * getStride()  + m_iLumaMarginX;
170 
171  m_cuOffsetY = new Int[numCuInWidth * numCuInHeight];
172  m_cuOffsetC = NULL;
173  for (Int cuRow = 0; cuRow < numCuInHeight; cuRow++)
174  {
175    for (Int cuCol = 0; cuCol < numCuInWidth; cuCol++)
176    {
177      m_cuOffsetY[cuRow * numCuInWidth + cuCol] = getStride() * cuRow * m_iCuHeight + cuCol * m_iCuWidth;
178    }
179  }
180 
181  m_buOffsetY = new Int[(size_t)1 << (2 * uiMaxCUDepth)];
182  m_buOffsetC = NULL;
183  for (Int buRow = 0; buRow < (1 << uiMaxCUDepth); buRow++)
184  {
185    for (Int buCol = 0; buCol < (1 << uiMaxCUDepth); buCol++)
186    {
187      m_buOffsetY[(buRow << uiMaxCUDepth) + buCol] = getStride() * buRow * (uiMaxCUHeight >> uiMaxCUDepth) + buCol * (uiMaxCUWidth  >> uiMaxCUDepth);
188    }
189  }
190  return;
191}
192
193Void TComPicYuv::destroyLuma()
194{
195  m_piPicOrgY       = NULL;
196 
197  if( m_apiPicBufY ){ xFree( m_apiPicBufY );    m_apiPicBufY = NULL; }
198 
199  delete[] m_cuOffsetY;
200  delete[] m_buOffsetY;
201}
202
203Void  TComPicYuv::copyToPic (TComPicYuv*  pcPicYuvDst)
204{
205  assert( m_iPicWidth  == pcPicYuvDst->getWidth()  );
206  assert( m_iPicHeight == pcPicYuvDst->getHeight() );
207 
208  ::memcpy ( pcPicYuvDst->getBufY(), m_apiPicBufY, sizeof (Pel) * ( m_iPicWidth       + (m_iLumaMarginX   << 1)) * ( m_iPicHeight       + (m_iLumaMarginY   << 1)) );
209  ::memcpy ( pcPicYuvDst->getBufU(), m_apiPicBufU, sizeof (Pel) * ((m_iPicWidth >> 1) + (m_iChromaMarginX << 1)) * ((m_iPicHeight >> 1) + (m_iChromaMarginY << 1)) );
210  ::memcpy ( pcPicYuvDst->getBufV(), m_apiPicBufV, sizeof (Pel) * ((m_iPicWidth >> 1) + (m_iChromaMarginX << 1)) * ((m_iPicHeight >> 1) + (m_iChromaMarginY << 1)) );
211  return;
212}
213
214Void  TComPicYuv::copyToPicLuma (TComPicYuv*  pcPicYuvDst)
215{
216  assert( m_iPicWidth  == pcPicYuvDst->getWidth()  );
217  assert( m_iPicHeight == pcPicYuvDst->getHeight() );
218 
219  ::memcpy ( pcPicYuvDst->getBufY(), m_apiPicBufY, sizeof (Pel) * ( m_iPicWidth       + (m_iLumaMarginX   << 1)) * ( m_iPicHeight       + (m_iLumaMarginY   << 1)) );
220  return;
221}
222
223Void  TComPicYuv::copyToPicCb (TComPicYuv*  pcPicYuvDst)
224{
225  assert( m_iPicWidth  == pcPicYuvDst->getWidth()  );
226  assert( m_iPicHeight == pcPicYuvDst->getHeight() );
227 
228  ::memcpy ( pcPicYuvDst->getBufU(), m_apiPicBufU, sizeof (Pel) * ((m_iPicWidth >> 1) + (m_iChromaMarginX << 1)) * ((m_iPicHeight >> 1) + (m_iChromaMarginY << 1)) );
229  return;
230}
231
232Void  TComPicYuv::copyToPicCr (TComPicYuv*  pcPicYuvDst)
233{
234  assert( m_iPicWidth  == pcPicYuvDst->getWidth()  );
235  assert( m_iPicHeight == pcPicYuvDst->getHeight() );
236 
237  ::memcpy ( pcPicYuvDst->getBufV(), m_apiPicBufV, sizeof (Pel) * ((m_iPicWidth >> 1) + (m_iChromaMarginX << 1)) * ((m_iPicHeight >> 1) + (m_iChromaMarginY << 1)) );
238  return;
239}
240
241Void TComPicYuv::extendPicBorder ()
242{
243  if ( m_bIsBorderExtended ) return;
244 
245  xExtendPicCompBorder( getLumaAddr(), getStride(),  getWidth(),      getHeight(),      m_iLumaMarginX,   m_iLumaMarginY   );
246  xExtendPicCompBorder( getCbAddr()  , getCStride(), getWidth() >> 1, getHeight() >> 1, m_iChromaMarginX, m_iChromaMarginY );
247  xExtendPicCompBorder( getCrAddr()  , getCStride(), getWidth() >> 1, getHeight() >> 1, m_iChromaMarginX, m_iChromaMarginY );
248 
249  m_bIsBorderExtended = true;
250}
251
252Void TComPicYuv::xExtendPicCompBorder  (Pel* piTxt, Int iStride, Int iWidth, Int iHeight, Int iMarginX, Int iMarginY)
253{
254  Int   x, y;
255  Pel*  pi;
256 
257  pi = piTxt;
258  for ( y = 0; y < iHeight; y++)
259  {
260    for ( x = 0; x < iMarginX; x++ )
261    {
262      pi[ -iMarginX + x ] = pi[0];
263      pi[    iWidth + x ] = pi[iWidth-1];
264    }
265    pi += iStride;
266  }
267 
268  pi -= (iStride + iMarginX);
269  for ( y = 0; y < iMarginY; y++ )
270  {
271    ::memcpy( pi + (y+1)*iStride, pi, sizeof(Pel)*(iWidth + (iMarginX<<1)) );
272  }
273 
274  pi -= ((iHeight-1) * iStride);
275  for ( y = 0; y < iMarginY; y++ )
276  {
277    ::memcpy( pi - (y+1)*iStride, pi, sizeof(Pel)*(iWidth + (iMarginX<<1)) );
278  }
279}
280
281
282Void TComPicYuv::dump (Char* pFileName, Bool bAdd)
283{
284  FILE* pFile;
285  if (!bAdd)
286  {
287    pFile = fopen (pFileName, "wb");
288  }
289  else
290  {
291    pFile = fopen (pFileName, "ab");
292  }
293 
294  Int     shift = g_bitDepthY-8;
295  Int     offset = (shift>0)?(1<<(shift-1)):0;
296 
297  Int   x, y;
298  UChar uc;
299 
300  Pel*  piY   = getLumaAddr();
301  Pel*  piCb  = getCbAddr();
302  Pel*  piCr  = getCrAddr();
303 
304  for ( y = 0; y < m_iPicHeight; y++ )
305  {
306    for ( x = 0; x < m_iPicWidth; x++ )
307    {
308      uc = (UChar)Clip3<Pel>(0, 255, (piY[x]+offset)>>shift);
309     
310      fwrite( &uc, sizeof(UChar), 1, pFile );
311    }
312    piY += getStride();
313  }
314 
315  shift = g_bitDepthC-8;
316  offset = (shift>0)?(1<<(shift-1)):0;
317
318  for ( y = 0; y < m_iPicHeight >> 1; y++ )
319  {
320    for ( x = 0; x < m_iPicWidth >> 1; x++ )
321    {
322      uc = (UChar)Clip3<Pel>(0, 255, (piCb[x]+offset)>>shift);
323      fwrite( &uc, sizeof(UChar), 1, pFile );
324    }
325    piCb += getCStride();
326  }
327 
328  for ( y = 0; y < m_iPicHeight >> 1; y++ )
329  {
330    for ( x = 0; x < m_iPicWidth >> 1; x++ )
331    {
332      uc = (UChar)Clip3<Pel>(0, 255, (piCr[x]+offset)>>shift);
333      fwrite( &uc, sizeof(UChar), 1, pFile );
334    }
335    piCr += getCStride();
336  }
337 
338  fclose(pFile);
339}
340
341
342//! \}
Note: See TracBrowser for help on using the repository browser.