source: 3DVCSoftware/branches/HTM-DEV-0.2-dev/source/Lib/TLibCommon/TComPicYuv.h @ 446

Last change on this file since 446 was 446, checked in by tech, 11 years ago

Added missing parts.

  • Property svn:eol-style set to native
File size: 7.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.h
35    \brief    picture YUV buffer class (header)
36*/
37
38#ifndef __TCOMPICYUV__
39#define __TCOMPICYUV__
40
41#include <stdio.h>
42#include "CommonDef.h"
43#include "TComRom.h"
44
45//! \ingroup TLibCommon
46//! \{
47
48// ====================================================================================================================
49// Class definition
50// ====================================================================================================================
51
52/// picture YUV buffer class
53class TComPicYuv
54{
55private:
56 
57  // ------------------------------------------------------------------------------------------------
58  //  YUV buffer
59  // ------------------------------------------------------------------------------------------------
60 
61  Pel*  m_apiPicBufY;           ///< Buffer (including margin)
62  Pel*  m_apiPicBufU;
63  Pel*  m_apiPicBufV;
64 
65  Pel*  m_piPicOrgY;            ///< m_apiPicBufY + m_iMarginLuma*getStride() + m_iMarginLuma
66  Pel*  m_piPicOrgU;
67  Pel*  m_piPicOrgV;
68 
69  // ------------------------------------------------------------------------------------------------
70  //  Parameter for general YUV buffer usage
71  // ------------------------------------------------------------------------------------------------
72 
73  Int   m_iPicWidth;            ///< Width of picture
74  Int   m_iPicHeight;           ///< Height of picture
75 
76  Int   m_iCuWidth;             ///< Width of Coding Unit (CU)
77  Int   m_iCuHeight;            ///< Height of Coding Unit (CU)
78  Int*  m_cuOffsetY;
79  Int*  m_cuOffsetC;
80  Int*  m_buOffsetY;
81  Int*  m_buOffsetC;
82 
83  Int   m_iLumaMarginX;
84  Int   m_iLumaMarginY;
85  Int   m_iChromaMarginX;
86  Int   m_iChromaMarginY;
87 
88  Bool  m_bIsBorderExtended;
89 
90protected:
91  Void  xExtendPicCompBorder (Pel* piTxt, Int iStride, Int iWidth, Int iHeight, Int iMarginX, Int iMarginY);
92#if H_3D
93  Void  xSetPels( Pel* piPelSource , Int iSourceStride, Int iWidth, Int iHeight, Pel iVal );
94#endif
95 
96public:
97  TComPicYuv         ();
98  virtual ~TComPicYuv();
99 
100  // ------------------------------------------------------------------------------------------------
101  //  Memory management
102  // ------------------------------------------------------------------------------------------------
103 
104  Void  create      ( Int iPicWidth, Int iPicHeight, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxCUDepth );
105  Void  destroy     ();
106 
107  Void  createLuma  ( Int iPicWidth, Int iPicHeight, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uhMaxCUDepth );
108  Void  destroyLuma ();
109 
110  // ------------------------------------------------------------------------------------------------
111  //  Get information of picture
112  // ------------------------------------------------------------------------------------------------
113 
114  Int   getWidth    ()     { return  m_iPicWidth;    }
115  Int   getHeight   ()     { return  m_iPicHeight;   }
116 
117  Int   getStride   ()     { return (m_iPicWidth     ) + (m_iLumaMarginX  <<1); }
118  Int   getCStride  ()     { return (m_iPicWidth >> 1) + (m_iChromaMarginX<<1); }
119 
120  Int   getLumaMargin   () { return m_iLumaMarginX;  }
121  Int   getChromaMargin () { return m_iChromaMarginX;}
122 
123  // ------------------------------------------------------------------------------------------------
124  //  Access function for picture buffer
125  // ------------------------------------------------------------------------------------------------
126 
127  //  Access starting position of picture buffer with margin
128  Pel*  getBufY     ()     { return  m_apiPicBufY;   }
129  Pel*  getBufU     ()     { return  m_apiPicBufU;   }
130  Pel*  getBufV     ()     { return  m_apiPicBufV;   }
131 
132  //  Access starting position of original picture
133  Pel*  getLumaAddr ()     { return  m_piPicOrgY;    }
134  Pel*  getCbAddr   ()     { return  m_piPicOrgU;    }
135  Pel*  getCrAddr   ()     { return  m_piPicOrgV;    }
136 
137  //  Access starting position of original picture for specific coding unit (CU) or partition unit (PU)
138  Pel*  getLumaAddr ( Int iCuAddr ) { return m_piPicOrgY + m_cuOffsetY[ iCuAddr ]; }
139  Pel*  getCbAddr   ( Int iCuAddr ) { return m_piPicOrgU + m_cuOffsetC[ iCuAddr ]; }
140  Pel*  getCrAddr   ( Int iCuAddr ) { return m_piPicOrgV + m_cuOffsetC[ iCuAddr ]; }
141  Pel*  getLumaAddr ( Int iCuAddr, Int uiAbsZorderIdx ) { return m_piPicOrgY + m_cuOffsetY[iCuAddr] + m_buOffsetY[g_auiZscanToRaster[uiAbsZorderIdx]]; }
142  Pel*  getCbAddr   ( Int iCuAddr, Int uiAbsZorderIdx ) { return m_piPicOrgU + m_cuOffsetC[iCuAddr] + m_buOffsetC[g_auiZscanToRaster[uiAbsZorderIdx]]; }
143  Pel*  getCrAddr   ( Int iCuAddr, Int uiAbsZorderIdx ) { return m_piPicOrgV + m_cuOffsetC[iCuAddr] + m_buOffsetC[g_auiZscanToRaster[uiAbsZorderIdx]]; }
144 
145  // ------------------------------------------------------------------------------------------------
146  //  Miscellaneous
147  // ------------------------------------------------------------------------------------------------
148 
149  //  Copy function to picture
150  Void  copyToPic       ( TComPicYuv*  pcPicYuvDst );
151  Void  copyToPicLuma   ( TComPicYuv*  pcPicYuvDst );
152  Void  copyToPicCb     ( TComPicYuv*  pcPicYuvDst );
153  Void  copyToPicCr     ( TComPicYuv*  pcPicYuvDst );
154 
155  //  Extend function of picture buffer
156  Void  extendPicBorder      ();
157 
158  //  Dump picture
159  Void  dump (Char* pFileName, Bool bAdd = false);
160 
161  // Set border extension flag
162  Void  setBorderExtension(Bool b) { m_bIsBorderExtended = b; }
163#if H_3D
164  // Set Function
165  Void  setLumaTo    ( Pel pVal ); 
166  Void  setChromaTo  ( Pel pVal ); 
167#endif
168};// END CLASS DEFINITION TComPicYuv
169
170void calcChecksum(TComPicYuv& pic, UChar digest[3][16]);
171void calcCRC(TComPicYuv& pic, UChar digest[3][16]);
172void calcMD5(TComPicYuv& pic, UChar digest[3][16]);
173//! \}
174
175#endif // __TCOMPICYUV__
Note: See TracBrowser for help on using the repository browser.