source: SHVCSoftware/branches/SHM-1.1-dev/source/Lib/TLibCommon/TComPattern.h @ 47

Last change on this file since 47 was 2, checked in by seregin, 12 years ago

Initial import by Vadim Seregin <vseregin@…>

File size: 8.2 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};
100
101/// neighbouring pixel access class for all components
102class TComPattern
103{
104private:
105  TComPatternParam  m_cPatternY;
106  TComPatternParam  m_cPatternCb;
107  TComPatternParam  m_cPatternCr;
108 
109  static const UChar m_aucIntraFilter[5];
110 
111public:
112 
113  // ROI & pattern information, (ROI = &pattern[AboveOffset][LeftOffset])
114  Pel*  getROIY()                 { return m_cPatternY.getROIOrigin();    }
115  Int   getROIYWidth()            { return m_cPatternY.m_iROIWidth;       }
116  Int   getROIYHeight()           { return m_cPatternY.m_iROIHeight;      }
117  Int   getPatternLStride()       { return m_cPatternY.m_iPatternStride;  }
118
119  // access functions of ADI buffers
120  Int*  getAdiOrgBuf              ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf );
121  Int*  getAdiCbBuf               ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf );
122  Int*  getAdiCrBuf               ( Int iCuWidth, Int iCuHeight, Int* piAdiBuf );
123 
124  Int*  getPredictorPtr           ( UInt uiDirMode, UInt uiWidthBits, Int* piAdiBuf );
125  // -------------------------------------------------------------------------------------------------------------------
126  // initialization functions
127  // -------------------------------------------------------------------------------------------------------------------
128 
129  /// set parameters from Pel buffers for accessing neighbouring pixels
130  Void initPattern            ( Pel*        piY,
131                               Pel*        piCb,
132                               Pel*        piCr,
133                               Int         iRoiWidth,
134                               Int         iRoiHeight,
135                               Int         iStride,
136                               Int         iOffsetLeft,
137                               Int         iOffsetRight,
138                               Int         iOffsetAbove,
139                               Int         iOffsetBottom );
140 
141  /// set parameters from CU data for accessing neighbouring pixels
142  Void  initPattern           ( TComDataCU* pcCU,
143                               UInt        uiPartDepth,
144                               UInt        uiAbsPartIdx );
145 
146  /// set luma parameters from CU data for accessing ADI data
147  Void  initAdiPattern        ( TComDataCU* pcCU,
148                               UInt        uiZorderIdxInPart,
149                               UInt        uiPartDepth,
150                               Int*        piAdiBuf,
151                               Int         iOrgBufStride,
152                               Int         iOrgBufHeight,
153                               Bool&       bAbove,
154                               Bool&       bLeft
155                              ,Bool        bLMmode = false // using for LM chroma or not
156                               );
157 
158  /// set chroma parameters from CU data for accessing ADI data
159  Void  initAdiPatternChroma  ( TComDataCU* pcCU,
160                               UInt        uiZorderIdxInPart,
161                               UInt        uiPartDepth,
162                               Int*        piAdiBuf,
163                               Int         iOrgBufStride,
164                               Int         iOrgBufHeight,
165                               Bool&       bAbove,
166                               Bool&       bLeft );
167
168private:
169
170  /// padding of unavailable reference samples for intra prediction
171  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);
172 
173
174  /// constrained intra prediction
175  Bool  isAboveLeftAvailable  ( TComDataCU* pcCU, UInt uiPartIdxLT );
176  Int   isAboveAvailable      ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags );
177  Int   isLeftAvailable       ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags );
178  Int   isAboveRightAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags );
179  Int   isBelowLeftAvailable  ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags );
180
181};
182
183//! \}
184
185#endif // __TCOMPATTERN__
Note: See TracBrowser for help on using the repository browser.