source: 3DVCSoftware/branches/HTM-DEV-0.3-dev2a/source/Lib/TLibCommon/TComPattern.h @ 468

Last change on this file since 468 was 468, checked in by lg, 11 years ago

1.IC and full pel depth coding are integrated and is guarded by Macro H_3D_IC.

  • Property svn:eol-style set to native
File size: 7.8 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     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_iOffsetAbove;
60  Pel*  m_piPatternOrigin;
61 
62public:
63  Int   m_iROIWidth;
64  Int   m_iROIHeight;
65  Int   m_iPatternStride;
66 
67  /// return starting position of buffer
68  Pel*  getPatternOrigin()        { return  m_piPatternOrigin; }
69 
70  /// return starting position of ROI (ROI = &pattern[AboveOffset][LeftOffset])
71  __inline Pel*  getROIOrigin()
72  {
73    return  m_piPatternOrigin + m_iPatternStride * m_iOffsetAbove + m_iOffsetLeft;
74  }
75 
76  /// set parameters from Pel buffer for accessing neighbouring pixels
77  Void setPatternParamPel ( Pel*        piTexture,
78                           Int         iRoiWidth,
79                           Int         iRoiHeight,
80                           Int         iStride,
81                           Int         iOffsetLeft,
82                           Int         iOffsetAbove );
83 
84  /// set parameters of one color component from CU data for accessing neighbouring pixels
85  Void setPatternParamCU  ( TComDataCU* pcCU,
86                           UChar       iComp,
87                           UChar       iRoiWidth,
88                           UChar       iRoiHeight,
89                           Int         iOffsetLeft,
90                           Int         iOffsetAbove,
91                           UInt        uiAbsZorderIdx );
92};
93
94/// neighbouring pixel access class for all components
95class TComPattern
96{
97private:
98  TComPatternParam  m_cPatternY;
99  TComPatternParam  m_cPatternCb;
100  TComPatternParam  m_cPatternCr;
101#if H_3D_IC
102  Bool              m_bICFlag;
103#endif
104  static const UChar m_aucIntraFilter[5];
105 
106public:
107 
108  // ROI & pattern information, (ROI = &pattern[AboveOffset][LeftOffset])
109  Pel*  getROIY()                 { return m_cPatternY.getROIOrigin();    }
110  Int   getROIYWidth()            { return m_cPatternY.m_iROIWidth;       }
111  Int   getROIYHeight()           { return m_cPatternY.m_iROIHeight;      }
112  Int   getPatternLStride()       { return m_cPatternY.m_iPatternStride;  }
113
114#if H_3D_IC
115  Bool  getICFlag()               { return m_bICFlag; }
116  Void  setICFlag( Bool bICFlag ) { m_bICFlag = bICFlag; }
117#endif
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         iOffsetAbove );
138 
139  /// set parameters from CU data for accessing neighbouring pixels
140  Void  initPattern           ( TComDataCU* pcCU,
141                               UInt        uiPartDepth,
142                               UInt        uiAbsPartIdx );
143 
144  /// set luma parameters from CU data for accessing ADI data
145  Void  initAdiPattern        ( TComDataCU* pcCU,
146                               UInt        uiZorderIdxInPart,
147                               UInt        uiPartDepth,
148                               Int*        piAdiBuf,
149                               Int         iOrgBufStride,
150                               Int         iOrgBufHeight,
151                               Bool&       bAbove,
152                               Bool&       bLeft
153                              ,Bool        bLMmode = false // using for LM chroma or not
154                               );
155 
156  /// set chroma parameters from CU data for accessing ADI data
157  Void  initAdiPatternChroma  ( TComDataCU* pcCU,
158                               UInt        uiZorderIdxInPart,
159                               UInt        uiPartDepth,
160                               Int*        piAdiBuf,
161                               Int         iOrgBufStride,
162                               Int         iOrgBufHeight,
163                               Bool&       bAbove,
164                               Bool&       bLeft );
165
166private:
167
168  /// padding of unavailable reference samples for intra prediction
169  Void  fillReferenceSamples        (Int bitDepth, 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);
170 
171
172  /// constrained intra prediction
173  Bool  isAboveLeftAvailable  ( TComDataCU* pcCU, UInt uiPartIdxLT );
174  Int   isAboveAvailable      ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags );
175  Int   isLeftAvailable       ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags );
176  Int   isAboveRightAvailable ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxRT, Bool* bValidFlags );
177  Int   isBelowLeftAvailable  ( TComDataCU* pcCU, UInt uiPartIdxLT, UInt uiPartIdxLB, Bool* bValidFlags );
178
179};
180
181//! \}
182
183#endif // __TCOMPATTERN__
Note: See TracBrowser for help on using the repository browser.