source: 3DVCSoftware/branches/HTM-DEV-2.0-dev3-Samsung/source/Lib/TLibCommon/TComWedgelet.h @ 554

Last change on this file since 554 was 554, checked in by samsung-htm, 11 years ago

Integration of E0146

File size: 9.0 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-2011, 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 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
35
36#ifndef __TCOMWEDGELET__
37#define __TCOMWEDGELET__
38
39// Include files
40#include <assert.h>
41#include "CommonDef.h"
42
43#include <vector>
44
45#if H_3D_DIM
46#define DIM_OFFSET     (NUM_INTRA_MODE+1) // offset for DMM and RBC mode numbers (PM: not consistent with spec, but non-overlapping with chroma, see DM_CHROMA_IDX)
47#define DIM_MIN_SIZE                   4  // min. block size for DMM and RBC modes
48#define DIM_MAX_SIZE                  32  // max. block size for DMM and RBC modes
49
50enum DIM_IDX
51{
52#if SEC_DMM2_E0146
53  DMM1_IDX = 0,
54  DMM3_IDX = 1,
55  DMM4_IDX = 2,
56  RBC_IDX  = 3
57#else
58  DMM1_IDX = 0,
59  DMM2_IDX = 3,
60  DMM3_IDX = 1,
61  DMM4_IDX = 2,
62  RBC_IDX  = 4
63#endif
64};
65#if SEC_DMM2_E0146
66#define DMM_NUM_TYPE   3
67#else
68#define DMM_NUM_TYPE   4
69#endif
70#define RBC_NUM_TYPE   1
71#define DIM_NUM_TYPE   (DMM_NUM_TYPE+RBC_NUM_TYPE)
72#define DIM_NO_IDX     MAX_UINT
73
74__inline UInt getDimType  ( Int intraMode ) { Int dimType = (intraMode-DIM_OFFSET)/2; return (dimType >= 0 && dimType < DIM_NUM_TYPE) ? (UInt)dimType : DIM_NO_IDX; }
75__inline Bool isDimMode   ( Int intraMode ) { return (getDimType( intraMode ) < DIM_NUM_TYPE); }
76__inline Bool isDimDeltaDC( Int intraMode ) { return (isDimMode( intraMode ) && ((intraMode-DIM_OFFSET)%2) == 1); }
77#endif
78
79#if H_3D_DIM_RBC
80#define RBC_THRESHOLD              20
81#define RBC_MAX_EDGE_NUM_PER_4x4   8
82#define RBC_MAX_DISTANCE           255
83#endif
84
85#if H_3D_DIM_DMM
86#define DMM_NO_WEDGEINDEX       MAX_UINT
87#define DMM_NUM_WEDGE_REFINES   8
88#if !SEC_DMM2_E0146
89#define DMM2_DELTAEND_MAX       4
90#endif
91#define DMM3_SIMPLIFY_TR        1
92
93enum WedgeResolution
94{
95  DOUBLE_PEL,
96  FULL_PEL,
97  HALF_PEL
98};
99
100
101// ====================================================================================================================
102// Class definition TComWedgelet
103// ====================================================================================================================
104class TComWedgelet
105{
106private:
107  UChar           m_uhXs;                       // line start X pos
108  UChar           m_uhYs;                       // line start Y pos
109  UChar           m_uhXe;                       // line end   X pos
110  UChar           m_uhYe;                       // line end   Y pos
111  UChar           m_uhOri;                      // orientation index
112  WedgeResolution m_eWedgeRes;                  // start/end pos resolution
113  Bool            m_bIsCoarse; 
114  UInt            m_uiAng;
115
116  UInt  m_uiWidth;
117  UInt  m_uiHeight;
118
119  Bool* m_pbPattern;
120
121  Void  xGenerateWedgePattern();
122  Void  xDrawEdgeLine( UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe, Bool* pbPattern, Int iPatternStride );
123
124public:
125  TComWedgelet( UInt uiWidth, UInt uiHeight );
126  TComWedgelet( const TComWedgelet &rcWedge );
127  virtual ~TComWedgelet();
128
129  Void  create ( UInt iWidth, UInt iHeight );   ///< create  wedgelet pattern
130  Void  destroy();                              ///< destroy wedgelet pattern
131  Void  clear  ();                              ///< clear   wedgelet pattern
132
133  UInt            getWidth   () { return m_uiWidth; }
134  UInt            getStride  () { return m_uiWidth; }
135  UInt            getHeight  () { return m_uiHeight; }
136  WedgeResolution getWedgeRes() { return m_eWedgeRes; }
137  Bool*           getPattern () { return m_pbPattern; }
138  UChar           getStartX  () { return m_uhXs; }
139  UChar           getStartY  () { return m_uhYs; }
140  UChar           getEndX    () { return m_uhXe; }
141  UChar           getEndY    () { return m_uhYe; }
142  UChar           getOri     () { return m_uhOri; }
143  Bool            getIsCoarse() { return m_bIsCoarse; }
144  UInt            getAng     () { return m_uiAng; }
145
146  Void  setWedgelet( UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe, UChar uhOri, WedgeResolution eWedgeRes, Bool bIsCoarse = false );
147  Void  findClosestAngle();
148
149  Bool  checkNotPlain();
150  Bool  checkIdentical( Bool* pbRefPattern );
151  Bool  checkInvIdentical( Bool* pbRefPattern );
152
153  // functions for DMM2 prediction
154  Bool  checkPredDirAbovePossible( UInt uiPredDirBlockSize, UInt uiPredDirBlockOffsett );
155  Bool  checkPredDirLeftPossible ( UInt uiPredDirBlockSize, UInt uiPredDirBlockOffsett );
156  Void  getPredDirStartEndAbove( UChar& ruhXs, UChar& ruhYs, UChar& ruhXe, UChar& ruhYe, UInt uiPredDirBlockSize, UInt uiPredDirBlockOffset, Int iDeltaEnd );
157  Void  getPredDirStartEndLeft ( UChar& ruhXs, UChar& ruhYs, UChar& ruhXe, UChar& ruhYe, UInt uiPredDirBlockSize, UInt uiPredDirBlockOffset, Int iDeltaEnd );
158};  // END CLASS DEFINITION TComWedgelet
159
160// type definition wedgelet pattern list
161typedef std::vector<TComWedgelet> WedgeList;
162
163// ====================================================================================================================
164// Class definition TComWedgeRef
165// ====================================================================================================================
166class TComWedgeRef
167{
168private:
169  UChar           m_uhXs;                       // line start X pos
170  UChar           m_uhYs;                       // line start Y pos
171  UChar           m_uhXe;                       // line end   X pos
172  UChar           m_uhYe;                       // line end   Y pos
173  UInt            m_uiRefIdx;                   // index of corresponding pattern of TComWedgelet object in wedge list
174
175public:
176  TComWedgeRef() {}
177  virtual ~TComWedgeRef() {}
178
179  UChar           getStartX  () { return m_uhXs; }
180  UChar           getStartY  () { return m_uhYs; }
181  UChar           getEndX    () { return m_uhXe; }
182  UChar           getEndY    () { return m_uhYe; }
183  UInt            getRefIdx  () { return m_uiRefIdx; }
184
185  Void  setWedgeRef( UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe, UInt uiRefIdx ) { m_uhXs = uhXs; m_uhYs = uhYs; m_uhXe = uhXe; m_uhYe = uhYe; m_uiRefIdx = uiRefIdx; }
186};  // END CLASS DEFINITION TComWedgeRef
187
188// type definition wedgelet reference list
189typedef std::vector<TComWedgeRef> WedgeRefList;
190
191// ====================================================================================================================
192// Class definition TComWedgeNode
193// ====================================================================================================================
194class TComWedgeNode
195{
196private:
197  UInt            m_uiPatternIdx;
198  UInt            m_uiRefineIdx[DMM_NUM_WEDGE_REFINES];
199
200public:
201  TComWedgeNode();
202  virtual ~TComWedgeNode() {}
203
204  UInt            getPatternIdx();
205  UInt            getRefineIdx ( UInt uiPos );
206
207  Void            setPatternIdx( UInt uiIdx );
208  Void            setRefineIdx ( UInt uiIdx, UInt uiPos );
209};  // END CLASS DEFINITION TComWedgeNode
210
211// type definition wedgelet node list
212typedef std::vector<TComWedgeNode> WedgeNodeList;
213#endif //H_3D_DIM_DMM
214
215
216// ====================================================================================================================
217// Function definition roftoi (mathematically correct rounding of float to int)
218// ====================================================================================================================
219__inline Int roftoi( Double value )
220{
221  (value < -0.5) ? (value -= 0.5) : (value += 0.5);
222  return ( (Int)value );
223}
224#endif // __TCOMWEDGELET__
Note: See TracBrowser for help on using the repository browser.