source: 3DVCSoftware/trunk/source/Lib/TLibEncoder/TEncCu.h @ 605

Last change on this file since 605 was 443, checked in by tech, 12 years ago
  • Reintegrated branch 6.2-dev0 rev. 442.
  • Changed version number.
  • Added coding results.
  • Property svn:eol-style set to native
File size: 8.7 KB
RevLine 
[5]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
[56]4 * granted under this license. 
[5]5 *
[56]6 * Copyright (c) 2010-2012, ITU/ISO/IEC
[5]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.
[56]17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
[5]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 */
[2]33
[56]34/** \file     TEncCu.h
35    \brief    Coding Unit (CU) encoder class (header)
[2]36*/
37
38#ifndef __TENCCU__
39#define __TENCCU__
40
41// Include files
[56]42#include "TLibCommon/CommonDef.h"
43#include "TLibCommon/TComYuv.h"
44#include "TLibCommon/TComPrediction.h"
45#include "TLibCommon/TComTrQuant.h"
46#include "TLibCommon/TComBitCounter.h"
47#include "TLibCommon/TComDataCU.h"
[2]48
49#include "TEncEntropy.h"
50#include "TEncSearch.h"
51
[56]52//! \ingroup TLibEncoder
53//! \{
54
[2]55class TEncTop;
56class TEncSbac;
57class TEncCavlc;
58class TEncSlice;
59
60// ====================================================================================================================
61// Class definition
62// ====================================================================================================================
63
64/// CU encoder class
65class TEncCu
66{
67private:
68 
69  TComDataCU**            m_ppcBestCU;      ///< Best CUs in each depth
70  TComDataCU**            m_ppcTempCU;      ///< Temporary CUs in each depth
[443]71#if QC_ARP_D0177
72  TComDataCU**            m_ppcWeightedTempCU;   
73#endif
[2]74  UChar                   m_uhTotalDepth;
75 
76  TComYuv**               m_ppcPredYuvBest; ///< Best Prediction Yuv for each depth
77  TComYuv**               m_ppcResiYuvBest; ///< Best Residual Yuv for each depth
78  TComYuv**               m_ppcRecoYuvBest; ///< Best Reconstruction Yuv for each depth
79  TComYuv**               m_ppcPredYuvTemp; ///< Temporary Prediction Yuv for each depth
80  TComYuv**               m_ppcResiYuvTemp; ///< Temporary Residual Yuv for each depth
81  TComYuv**               m_ppcRecoYuvTemp; ///< Temporary Reconstruction Yuv for each depth
82  TComYuv**               m_ppcOrigYuv;     ///< Original Yuv for each depth
[296]83#if H3D_IVRP
[2]84  TComYuv**               m_ppcResPredTmp;  ///< Temporary residual prediction for each depth
[56]85#endif
[296]86
[2]87  //  Data : encoder control
[56]88  Bool                    m_bEncodeDQP;
89  Bool                    m_checkBurstIPCMFlag;
90
[2]91  //  Access channel
92  TEncCfg*                m_pcEncCfg;
93  TComPrediction*         m_pcPrediction;
94  TEncSearch*             m_pcPredSearch;
95  TComTrQuant*            m_pcTrQuant;
96  TComBitCounter*         m_pcBitCounter;
97  TComRdCost*             m_pcRdCost;
98 
99  TEncEntropy*            m_pcEntropyCoder;
100  TEncCavlc*              m_pcCavlcCoder;
101  TEncSbac*               m_pcSbacCoder;
102  TEncBinCABAC*           m_pcBinCABAC;
103 
104  // SBAC RD
105  TEncSbac***             m_pppcRDSbacCoder;
106  TEncSbac*               m_pcRDGoOnSbacCoder;
107  Bool                    m_bUseSBACRD;
108 
[5]109#if HHI_MPI
[2]110  UChar *m_puhDepthSaved;
111  UChar *m_puhWidthSaved;
112  UChar *m_puhHeightSaved;
113#endif
114
115public:
116  /// copy parameters from encoder class
117  Void  init                ( TEncTop* pcEncTop );
118 
119  /// create internal buffers
120  Void  create              ( UChar uhTotalDepth, UInt iMaxWidth, UInt iMaxHeight );
121 
122  /// destroy internal buffers
123  Void  destroy             ();
[296]124
[2]125  /// CU analysis function
126  Void  compressCU          ( TComDataCU*&  rpcCU );
127 
128  /// CU encoding function
129  Void  encodeCU            ( TComDataCU*    pcCU, Bool bForceTerminate = false  );
130 
[56]131  Void setBitCounter        ( TComBitCounter* pcBitCounter ) { m_pcBitCounter = pcBitCounter; }
[2]132protected:
[56]133  Void  finishCU            ( TComDataCU*  pcCU, UInt uiAbsPartIdx,           UInt uiDepth        );
134#if AMP_ENC_SPEEDUP
135  Void  xCompressCU         ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth, PartSize eParentPartSize = SIZE_NONE );
136#else
[2]137  Void  xCompressCU         ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth        );
[56]138#endif
[2]139  Void  xEncodeCU           ( TComDataCU*  pcCU, UInt uiAbsPartIdx,           UInt uiDepth        );
140 
[56]141  Int   xComputeQP          ( TComDataCU* pcCU, UInt uiDepth );
142  Void  xCheckBestMode      ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth        );
[2]143 
[5]144#if HHI_INTERVIEW_SKIP
[2]145  Void xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, Bool bFullyRendered ) ;
146#else
147  Void  xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU                  );
148#endif
[56]149#if AMP_MRG
[5]150#if HHI_INTERVIEW_SKIP
[56]151  Void xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bFullyRendered, Bool bUseMRG = false  ) ;
152#else
153  Void  xCheckRDCostInter   ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bUseMRG = false  );
154#endif
155//  Void  xCheckRDCostInter   ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bUseMRG = false  );
156#else
157#if HHI_INTERVIEW_SKIP
[2]158  Void xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bFullyRendered ) ;
159#else
160  Void  xCheckRDCostInter   ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize  );
161#endif
[56]162//  Void  xCheckRDCostInter   ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize  );
163#endif
[2]164  Void  xCheckRDCostIntra   ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize  );
[56]165  Void  xCheckBestMode      ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU                      );
166  Void  xCheckDQP           ( TComDataCU*  pcCU );
[2]167 
[56]168  Void  xCheckIntraPCM      ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU                      );
[2]169  Void  xCopyAMVPInfo       ( AMVPInfo* pSrc, AMVPInfo* pDst );
[56]170  Void  xCopyYuv2Pic        (TComPic* rpcPic, UInt uiCUAddr, UInt uiAbsPartIdx, UInt uiDepth, UInt uiSrcDepth, TComDataCU* pcCU, UInt uiLPelX, UInt uiTPelY );
[2]171  Void  xCopyYuv2Tmp        ( UInt uhPartUnitIdx, UInt uiDepth );
[56]172
173  Bool getdQPFlag           ()                        { return m_bEncodeDQP;        }
174  Void setdQPFlag           ( Bool b )                { m_bEncodeDQP = b;           }
175
176  Bool getCheckBurstIPCMFlag()                        { return m_checkBurstIPCMFlag;   }
177  Void setCheckBurstIPCMFlag( Bool b )                { m_checkBurstIPCMFlag = b;      }
178
179  Bool checkLastCUSucIPCM   ( TComDataCU* pcCU, UInt uiCurAbsPartIdx );
180  Int  countNumSucIPCM      ( TComDataCU* pcCU, UInt uiCurAbsPartIdx );
181
182#if ADAPTIVE_QP_SELECTION
183  // Adaptive reconstruction level (ARL) statistics collection functions
184  Void xLcuCollectARLStats(TComDataCU* rpcCU);
185  Int  xTuCollectARLStats(TCoeff* rpcCoeff, Int* rpcArlCoeff, Int NumCoeffInCU, Double* cSum, UInt* numSamples );
186#endif
187
188#if AMP_ENC_SPEEDUP
189#if AMP_MRG
190  Void deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver, Bool &bTestMergeAMP_Hor, Bool &bTestMergeAMP_Ver);
191#else
192  Void deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver);
193#endif
194#endif
195
196#if LOSSLESS_CODING
197  Void  xFillPCMBuffer     ( TComDataCU*& pCU, TComYuv* pOrgYuv ); 
198#endif
[5]199#if HHI_MPI
[2]200  Void  xCheckRDCostMvInheritance( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UChar uhTextureModeDepth, Bool bSkipResidual, Bool bRecursiveCall );
201  Void  xSaveDepthWidthHeight( TComDataCU* pcCU );
202  Void  xRestoreDepthWidthHeight( TComDataCU* pcCU );
[56]203  Void  xAddMVISignallingBits( TComDataCU* pcCU );
[2]204#endif
205};
206
[56]207//! \}
[2]208
209#endif // __TENCMB__
Note: See TracBrowser for help on using the repository browser.