source: 3DVCSoftware/trunk/source/Lib/TLibCommon/TComWedgelet.h @ 1179

Last change on this file since 1179 was 1179, checked in by tech, 9 years ago

Merged branch 13.1-dev0@1178.

  • Property svn:eol-style set to native
File size: 7.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-2015, 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 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  DMM1_IDX = 0,
53  DMM4_IDX = 1,
54};
55
56#define DMM_NUM_TYPE   2
57#define DIM_NUM_TYPE   (DMM_NUM_TYPE)
58#define DIM_NO_IDX     MAX_UINT
59
60__inline UInt getDimType  ( Int intraMode ) 
61{ 
62    Int dimType = intraMode-DIM_OFFSET; 
63    return (dimType >= 0 && dimType < DIM_NUM_TYPE) ? (UInt)dimType : DIM_NO_IDX; 
64}
65__inline Bool isDimMode   ( Int intraMode ) { return (getDimType( intraMode ) < DIM_NUM_TYPE); }
66#endif
67
68#if H_3D_DIM_DMM
69#define DMM_NO_WEDGEINDEX       MAX_UINT
70#define DMM_NUM_WEDGE_REFINES   8
71
72enum WedgeResolution
73{
74  FULL_PEL,
75  HALF_PEL
76};
77
78
79// ====================================================================================================================
80// Class definition TComWedgelet
81// ====================================================================================================================
82class TComWedgelet
83{
84private:
85  UChar           m_uhXs;                       // line start X pos
86  UChar           m_uhYs;                       // line start Y pos
87  UChar           m_uhXe;                       // line end   X pos
88  UChar           m_uhYe;                       // line end   Y pos
89  UChar           m_uhOri;                      // orientation index
90  WedgeResolution m_eWedgeRes;                  // start/end pos resolution
91  Bool            m_bIsCoarse; 
92  UInt            m_uiAng;
93
94  UInt  m_uiWidth;
95  UInt  m_uiHeight;
96
97  Bool* m_pbPattern;
98  Bool* m_pbScaledPattern;
99
100  Void  xGenerateWedgePattern();
101  Void  xDrawEdgeLine( UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe, Bool* pbPattern, Int iPatternStride );
102
103public:
104  TComWedgelet( UInt uiWidth, UInt uiHeight );
105  TComWedgelet( const TComWedgelet &rcWedge );
106  virtual ~TComWedgelet();
107
108  Void  create ( UInt iWidth, UInt iHeight );   ///< create  wedgelet pattern
109  Void  destroy();                              ///< destroy wedgelet pattern
110  Void  clear  ();                              ///< clear   wedgelet pattern
111
112  UInt            getWidth   () { return m_uiWidth; }
113  UInt            getStride  () { return m_uiWidth; }
114  UInt            getHeight  () { return m_uiHeight; }
115  WedgeResolution getWedgeRes() { return m_eWedgeRes; }
116  Bool*           getPattern () { return m_pbPattern; }
117  UChar           getStartX  () { return m_uhXs; }
118  UChar           getStartY  () { return m_uhYs; }
119  UChar           getEndX    () { return m_uhXe; }
120  UChar           getEndY    () { return m_uhYe; }
121  UChar           getOri     () { return m_uhOri; }
122  Bool            getIsCoarse() { return m_bIsCoarse; }
123  UInt            getAng     () { return m_uiAng; }
124  Bool*           getScaledPattern(UInt uiWidth);
125
126#if SHARP_DMM_CLEAN_K0042
127  Void  generateWedgePatternByRotate(const TComWedgelet &rcWedge, Int rotate);
128#endif
129  Void  setWedgelet( UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe, UChar uhOri, WedgeResolution eWedgeRes, Bool bIsCoarse = false );
130  Void  findClosestAngle();
131
132  Bool  checkNotPlain();
133  Bool  checkIdentical( Bool* pbRefPattern );
134  Bool  checkInvIdentical( Bool* pbRefPattern );
135
136};  // END CLASS DEFINITION TComWedgelet
137
138// type definition wedgelet pattern list
139typedef std::vector<TComWedgelet> WedgeList;
140
141// ====================================================================================================================
142// Class definition TComWedgeRef
143// ====================================================================================================================
144class TComWedgeRef
145{
146private:
147  UChar           m_uhXs;                       // line start X pos
148  UChar           m_uhYs;                       // line start Y pos
149  UChar           m_uhXe;                       // line end   X pos
150  UChar           m_uhYe;                       // line end   Y pos
151  UInt            m_uiRefIdx;                   // index of corresponding pattern of TComWedgelet object in wedge list
152
153public:
154  TComWedgeRef() {}
155  virtual ~TComWedgeRef() {}
156
157  UChar           getStartX  () { return m_uhXs; }
158  UChar           getStartY  () { return m_uhYs; }
159  UChar           getEndX    () { return m_uhXe; }
160  UChar           getEndY    () { return m_uhYe; }
161  UInt            getRefIdx  () { return m_uiRefIdx; }
162
163  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; }
164};  // END CLASS DEFINITION TComWedgeRef
165
166// type definition wedgelet reference list
167typedef std::vector<TComWedgeRef> WedgeRefList;
168
169// ====================================================================================================================
170// Class definition TComWedgeNode
171// ====================================================================================================================
172class TComWedgeNode
173{
174private:
175  UInt            m_uiPatternIdx;
176  UInt            m_uiRefineIdx[DMM_NUM_WEDGE_REFINES];
177
178public:
179  TComWedgeNode();
180  virtual ~TComWedgeNode() {}
181
182  UInt            getPatternIdx();
183  UInt            getRefineIdx ( UInt uiPos );
184
185  Void            setPatternIdx( UInt uiIdx );
186  Void            setRefineIdx ( UInt uiIdx, UInt uiPos );
187};  // END CLASS DEFINITION TComWedgeNode
188
189// type definition wedgelet node list
190typedef std::vector<TComWedgeNode> WedgeNodeList;
191#endif //H_3D_DIM_DMM
192
193
194// ====================================================================================================================
195// Function definition roftoi (mathematically correct rounding of float to int)
196// ====================================================================================================================
197__inline Int roftoi( Double value )
198{
199  (value < -0.5) ? (value -= 0.5) : (value += 0.5);
200  return ( (Int)value );
201}
202#endif // __TCOMWEDGELET__
Note: See TracBrowser for help on using the repository browser.