source: 3DVCSoftware/branches/HTM-6.0-dev0/source/Lib/TLibCommon/TComPattern.h @ 312

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

Reintegrated branch 5.1-dev0 rev. 295.

  • Property svn:eol-style set to native
File size: 8.9 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-2012, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TComPattern.h
35    \brief    neighbouring pixel access classes (header)
36*/
37
38#ifndef __TCOMPATTERN__
39#define __TCOMPATTERN__
40
41// Include files
42#include <stdio.h>
43#include "CommonDef.h"
44
45//! \ingroup TLibCommon
46//! \{
47
48// ====================================================================================================================
49// Class definition
50// ====================================================================================================================
51
52class TComDataCU;
53
54/// neighbouring pixel access class for one component
55class TComPatternParam
56{
57private:
58  Int   m_iOffsetLeft;
59  Int   m_iOffsetRight;
60  Int   m_iOffsetAbove;
61  Int   m_iOffsetBottom;
62  Pel*  m_piPatternOrigin;
63 
64public:
65  Int   m_iROIWidth;
66  Int   m_iROIHeight;
67  Int   m_iPatternStride;
68 
69  /// return starting position of buffer
70  Pel*  getPatternOrigin()        { return  m_piPatternOrigin; }
71 
72  /// return starting position of ROI (ROI = &pattern[AboveOffset][LeftOffset])
73  __inline Pel*  getROIOrigin()
74  {
75    return  m_piPatternOrigin + m_iPatternStride * m_iOffsetAbove + m_iOffsetLeft;
76  }
77 
78  /// set parameters from Pel buffer for accessing neighbouring pixels
79  Void setPatternParamPel ( Pel*        piTexture,
80                           Int         iRoiWidth,
81                           Int         iRoiHeight,
82                           Int         iStride,
83                           Int         iOffsetLeft,
84                           Int         iOffsetRight,
85                           Int         iOffsetAbove,
86                           Int         iOffsetBottom );
87 
88  /// set parameters of one color component from CU data for accessing neighbouring pixels
89  Void setPatternParamCU  ( TComDataCU* pcCU,
90                           UChar       iComp,
91                           UChar       iRoiWidth,
92                           UChar       iRoiHeight,
93                           Int         iOffsetLeft,
94                           Int         iOffsetRight,
95                           Int         iOffsetAbove,
96                           Int         iOffsetBottom,
97                           UInt        uiPartDepth,
98                           UInt        uiAbsZorderIdx
99#if DEPTH_MAP_GENERATION
100                           ,Bool        bPrdDepthMap = false 
101#endif 
102                           );
103};
104
105/// neighbouring pixel access class for all components
106class TComPattern
107{
108private:
109  TComPatternParam  m_cPatternY;
110  TComPatternParam  m_cPatternCb;
111  TComPatternParam  m_cPatternCr;
112 
113#if LGE_ILLUCOMP_B0045
114  Bool              m_bICFlag;
115#endif
116
117  static const UChar m_aucIntraFilter[5];
118 
119public:
120 
121  // ROI & pattern information, (ROI = &pattern[AboveOffset][LeftOffset])
122  Pel*  getROIY()                 { return m_cPatternY.getROIOrigin();    }
123  Int   getROIYWidth()            { return m_cPatternY.m_iROIWidth;       }
124  Int   getROIYHeight()           { return m_cPatternY.m_iROIHeight;      }
125  Int   getPatternLStride()       { return m_cPatternY.m_iPatternStride;  }
126
127#if LGE_ILLUCOMP_B0045
128  Bool  getICFlag()               { return m_bICFlag; }
129  Void  setICFlag(Bool bICFlag)   { m_bICFlag = bICFlag; }
130#endif
131
132  // access functions of ADI buffers
133  Int*  getAdiOrgBuf              ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf );
134  Int*  getAdiCbBuf               ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf );
135  Int*  getAdiCrBuf               ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf );
136 
137  Int*  getPredictorPtr           ( UInt uiDirMode, UInt uiWidthBits, Int* piAdiBuf );
138  // -------------------------------------------------------------------------------------------------------------------
139  // initialization functions
140  // -------------------------------------------------------------------------------------------------------------------
141 
142  /// set parameters from Pel buffers for accessing neighbouring pixels
143  Void initPattern            ( Pel*        piY,
144                               Pel*        piCb,
145                               Pel*        piCr,
146                               Int         iRoiWidth,
147                               Int         iRoiHeight,
148                               Int         iStride,
149                               Int         iOffsetLeft,
150                               Int         iOffsetRight,
151                               Int         iOffsetAbove,
152                               Int         iOffsetBottom );
153 
154  /// set parameters from CU data for accessing neighbouring pixels
155  Void  initPattern           ( TComDataCU* pcCU,
156                               UInt        uiPartDepth,
157                               UInt        uiAbsPartIdx
158#if DEPTH_MAP_GENERATION
159                               ,Bool        bPrdDepthMap = false 
160#endif
161                               );
162 
163  /// set luma parameters from CU data for accessing ADI data
164  Void  initAdiPattern        ( TComDataCU* pcCU,
165                               UInt        uiZorderIdxInPart,
166                               UInt        uiPartDepth,
167                               Int*        piAdiBuf,
168                               Int         iOrgBufStride,
169                               Int         iOrgBufHeight,
170                               Bool&       bAbove,
171                               Bool&       bLeft
172                              ,Bool        bLMmode = false // using for LM chroma or not
173#if DEPTH_MAP_GENERATION
174                              ,
175                              Bool         bPrdDepthMap = false,
176                              UInt         uiSubSampExpX = 0,
177                              UInt         uiSubSampExpY = 0
178#endif
179                               );
180 
181  /// set chroma parameters from CU data for accessing ADI data
182  Void  initAdiPatternChroma  ( TComDataCU* pcCU,
183                               UInt        uiZorderIdxInPart,
184                               UInt        uiPartDepth,
185                               Int*        piAdiBuf,
186                               Int         iOrgBufStride,
187                               Int         iOrgBufHeight,
188                               Bool&       bAbove,
189                               Bool&       bLeft );
190
191private:
192
193  /// padding of unavailable reference samples for intra prediction
194  Void  fillReferenceSamples        ( TComDataCU* pcCU, Pel* piRoiOrigin, Int* piAdiTemp, Bool* bNeighborFlags, Int iNumIntraNeighbor, Int iUnitSize, Int iNumUnitsInCu, Int iTotalUnits, UInt uiCuWidth, UInt uiCuHeight, UInt uiWidth, UInt uiHeight, Int iPicStride, Bool bLMmode = false
195#if DEPTH_MAP_GENERATION
196                                    , Bool bPrdDepthMap = false 
197#endif
198                                    );
199 
200
201  /// constrained intra prediction
202  Bool  isAboveLeftAvailable  ( TComDataCU* pcCU, UInt uiPartIdxLT );
203  Int   isAboveAvailable      ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags );
204  Int   isLeftAvailable       ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags );
205  Int   isAboveRightAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags );
206  Int   isBelowLeftAvailable  ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags );
207
208};
209
210//! \}
211
212#endif // __TCOMPATTERN__
Note: See TracBrowser for help on using the repository browser.