source: 3DVCSoftware/branches/HTM-5.1-dev0-MERL-Mediatek/source/Lib/TLibCommon/TComResidualGenerator.h @ 285

Last change on this file since 285 was 249, checked in by mediatek-htm, 12 years ago

1.Fix a bug related to JCT3V-C0129
2.Fix compiler warnings
3.Add document numbers in the MACRO names:

MTK_SAIT_TEMPORAL_FIRST_ORDER_C0141_C0097
MTK_SIMPLIFY_DVTC_C0135
MTK_RELEASE_DV_CONSTRAINT_C0129

From MediaTek
yiwen.chen@…

  • Property svn:eol-style set to native
File size: 6.1 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/** \file     TComResidualGenerator.h
37    \brief    residual picture generator class (header)
38*/
39
40
41#ifndef __TCOM_RESIDUAL_GENERATOR__
42#define __TCOM_RESIDUAL_GENERATOR__
43
44
45#include "CommonDef.h"
46#include "TComPic.h"
47#include "TComSlice.h"
48#include "TComDepthMapGenerator.h"
49#include "TComTrQuant.h"
50
51
52#if HHI_INTER_VIEW_RESIDUAL_PRED
53
54class TComResidualGenerator
55{
56  enum { NUM_TMP_YUV_BUFFERS = 3 };
57
58public:
59  TComResidualGenerator ();
60  ~TComResidualGenerator();
61
62  Void  create                ( Bool bDecoder, UInt uiPicWidth, UInt uiPicHeight, UInt uiMaxCUDepth, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiOrgBitDepth );
63  Void  destroy               ();
64
65  Void  init                  ( TComTrQuant*  pcTrQuant, TComDepthMapGenerator* pcDepthMapGenerator );
66  Void  uninit                ();
67
68  Void  initViewComponent     ( TComPic*      pcPic );
69  Void  setRecResidualPic     ( TComPic*      pcPic );
70
71#if QC_MULTI_DIS_CAN_A0097
72#if MTK_RELEASE_DV_CONSTRAINT_C0129
73  Bool  getResidualSamples    ( TComDataCU*   pcCU,  UInt uiPUIdx, TComYuv* pcYuv, TComMv iDisp_x
74#if QC_SIMPLIFIEDIVRP_M24938
75    , Bool bRecon
76#endif
77);
78  Bool  getResidualSamples    ( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv , TComMv iDisp_x
79#if QC_SIMPLIFIEDIVRP_M24938
80    , Bool bRecon
81#endif 
82  );
83#else
84  Bool  getResidualSamples    ( TComDataCU*   pcCU,  UInt uiPUIdx, TComYuv* pcYuv, Int iDisp
85#if QC_SIMPLIFIEDIVRP_M24938
86    , Bool bRecon
87#endif
88);
89  Bool  getResidualSamples    ( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv , Int iDisp
90#if QC_SIMPLIFIEDIVRP_M24938
91    , Bool bRecon
92#endif 
93  );
94#endif
95#else
96  Bool  getResidualSamples    ( TComDataCU*   pcCU,  UInt uiPUIdx, TComYuv* pcYuv
97#if QC_SIMPLIFIEDIVRP_M24938
98    , Bool bRecon
99#endif
100    );
101  Bool  getResidualSamples    ( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv
102#if QC_SIMPLIFIEDIVRP_M24938
103    , Bool bRecon
104#endif
105    );
106#endif
107
108private:
109  Void  xSetRecResidualPic    ( TComPic*      pcPic );
110  Void  xSetRecResidualCU     ( TComDataCU*   pcCU,  UInt     uiDepth,      UInt uiAbsPartIdx );
111  Void  xSetRecResidualIntraCU( TComDataCU*   pcCU,  TComYuv* pcCUResidual );
112  Void  xSetRecResidualInterCU( TComDataCU*   pcCU,  TComYuv* pcCUResidual );
113  Void  xClearIntViewResidual ( TComDataCU*   pcCU,  TComYuv* pcCUResidual, UInt uiPartIdx    );
114  Void  xClearResidual        (                      TComYuv* pcCUResidual, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight );
115#if QC_MULTI_DIS_CAN_A0097
116#if MTK_RELEASE_DV_CONSTRAINT_C0129
117  Void  xSetPredResidualBlock ( TComPic*      pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv, TComMv iDisp
118#if QC_SIMPLIFIEDIVRP_M24938
119    , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon
120#endif
121  );
122#else
123  Void  xSetPredResidualBlock ( TComPic*      pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv, Int iDisp
124#if QC_SIMPLIFIEDIVRP_M24938
125    , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon
126#endif
127  );
128#endif
129#else
130  Void  xSetPredResidualBlock ( TComPic*      pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv
131#if QC_SIMPLIFIEDIVRP_M24938
132    , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon
133#endif
134    );
135#endif
136  Bool  xIsNonZero            ( TComYuv*      pcYuv, UInt uiBlkWidth, UInt uiBlkHeight );
137#if QC_SIMPLIFIEDIVRP_M24938
138  Bool  xIsNonZeroByCBF       ( UInt uiBaseViewId , UInt uiXPos , UInt uiYPos, UInt uiBlkWidth , UInt uiBlkHeight );
139#endif
140
141  Void  xDumpResidual         ( TComPic*      pcPic, char* pFilenameBase );
142
143private:
144  // general parameters
145  Bool                    m_bCreated;
146  Bool                    m_bInit;
147  Bool                    m_bDecoder;
148  TComTrQuant*            m_pcTrQuant;
149  TComDepthMapGenerator*  m_pcDepthMapGenerator;
150  TComSPSAccess*          m_pcSPSAccess;
151  TComAUPicAccess*        m_pcAUPicAccess;
152  UInt                    m_uiMaxDepth;
153  UInt                    m_uiOrgDepthBitDepth;
154  TComYuv**               m_ppcYuvTmp;
155  TComYuv**               m_ppcYuv;
156  TComDataCU**            m_ppcCU;
157  TComPicYuv              m_cTmpPic;
158};
159
160
161#endif // __TCOM_RESIDUAL_GENERATOR__
162
163#endif // HHI_INTER_VIEW_RESIDUAL_PRED
164
165
166
167
Note: See TracBrowser for help on using the repository browser.