source: 3DVCSoftware/branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncTop.h @ 1075

Last change on this file since 1075 was 1074, checked in by tech, 10 years ago

Removed 3D-HEVC related macros.

  • Property svn:eol-style set to native
File size: 14.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-2014, 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     TEncTop.h
35    \brief    encoder class (header)
36*/
37
38#ifndef __TENCTOP__
39#define __TENCTOP__
40
41// Include files
42#include "TLibCommon/TComList.h"
43#include "TLibCommon/TComPrediction.h"
44#include "TLibCommon/TComTrQuant.h"
45#include "TLibCommon/AccessUnit.h"
46
47#include "TLibVideoIO/TVideoIOYuv.h"
48
49#include "TEncCfg.h"
50#include "TEncGOP.h"
51#include "TEncSlice.h"
52#include "TEncEntropy.h"
53#include "TEncCavlc.h"
54#include "TEncSbac.h"
55#include "TEncSearch.h"
56#include "TEncSampleAdaptiveOffset.h"
57#include "TEncPreanalyzer.h"
58#include "TEncRateCtrl.h"
59//! \ingroup TLibEncoder
60//! \{
61
62// ====================================================================================================================
63// Class definition
64// ====================================================================================================================
65
66#if KWU_RC_MADPRED_E0227
67class TAppEncTop;
68#endif
69/// encoder class
70class TEncTop : public TEncCfg
71{
72private:
73  // picture
74  Int                     m_iPOCLast;                     ///< time index (POC)
75  Int                     m_iNumPicRcvd;                  ///< number of received pictures
76  UInt                    m_uiNumAllPicCoded;             ///< number of coded pictures
77  TComList<TComPic*>      m_cListPic;                     ///< dynamic list of pictures
78 
79#if H_MV
80  TComPicLists*           m_ivPicLists;                   ///< access to picture lists of other layers
81#endif
82#if H_3D_IC
83  Int *m_aICEnableCandidate;
84  Int *m_aICEnableNum;
85#endif
86  // encoder search
87  TEncSearch              m_cSearch;                      ///< encoder search class
88  //TEncEntropy*            m_pcEntropyCoder;                     ///< entropy encoder
89  TEncCavlc*              m_pcCavlcCoder;                       ///< CAVLC encoder 
90  // coding tool
91  TComTrQuant             m_cTrQuant;                     ///< transform & quantization class
92  TComLoopFilter          m_cLoopFilter;                  ///< deblocking filter class
93  TEncSampleAdaptiveOffset m_cEncSAO;                     ///< sample adaptive offset class
94  TEncEntropy             m_cEntropyCoder;                ///< entropy encoder
95  TEncCavlc               m_cCavlcCoder;                  ///< CAVLC encoder
96  TEncSbac                m_cSbacCoder;                   ///< SBAC encoder
97  TEncBinCABAC            m_cBinCoderCABAC;               ///< bin coder CABAC
98  TEncSbac*               m_pcSbacCoders;                 ///< SBAC encoders (to encode substreams )
99  TEncBinCABAC*           m_pcBinCoderCABACs;             ///< bin coders CABAC (one per substream)
100 
101  // processing unit
102  TEncGOP                 m_cGOPEncoder;                  ///< GOP encoder
103  TEncSlice               m_cSliceEncoder;                ///< slice encoder
104  TEncCu                  m_cCuEncoder;                   ///< CU encoder
105  // SPS
106  TComSPS                 m_cSPS;                         ///< SPS
107  TComPPS                 m_cPPS;                         ///< PPS
108  // RD cost computation
109  TComBitCounter          m_cBitCounter;                  ///< bit counter for RD optimization
110  TComRdCost              m_cRdCost;                      ///< RD cost computation class
111  TEncSbac***             m_pppcRDSbacCoder;              ///< temporal storage for RD computation
112  TEncSbac                m_cRDGoOnSbacCoder;             ///< going on SBAC model for RD stage
113#if FAST_BIT_EST
114  TEncBinCABACCounter***  m_pppcBinCoderCABAC;            ///< temporal CABAC state storage for RD computation
115  TEncBinCABACCounter     m_cRDGoOnBinCoderCABAC;         ///< going on bin coder CABAC for RD stage
116#else
117  TEncBinCABAC***         m_pppcBinCoderCABAC;            ///< temporal CABAC state storage for RD computation
118  TEncBinCABAC            m_cRDGoOnBinCoderCABAC;         ///< going on bin coder CABAC for RD stage
119#endif
120  Int                     m_iNumSubstreams;                ///< # of top-level elements allocated.
121  TComBitCounter*         m_pcBitCounters;                 ///< bit counters for RD optimization per substream
122  TComRdCost*             m_pcRdCosts;                     ///< RD cost computation class per substream
123  TEncSbac****            m_ppppcRDSbacCoders;             ///< temporal storage for RD computation per substream
124  TEncSbac*               m_pcRDGoOnSbacCoders;            ///< going on SBAC model for RD stage per substream
125  TEncBinCABAC****        m_ppppcBinCodersCABAC;           ///< temporal CABAC state storage for RD computation per substream
126  TEncBinCABAC*           m_pcRDGoOnBinCodersCABAC;        ///< going on bin coder CABAC for RD stage per substream
127
128  // quality control
129  TEncPreanalyzer         m_cPreanalyzer;                 ///< image characteristics analyzer for TM5-step3-like adaptive QP
130
131  TComScalingList         m_scalingList;                 ///< quantization matrix information
132  TEncRateCtrl            m_cRateCtrl;                    ///< Rate control class
133
134#if KWU_RC_MADPRED_E0227
135  TAppEncTop*             m_pcTAppEncTop;
136  TAppComCamPara*         m_cCamParam;
137#endif
138 
139#if H_MV
140  TEncAnalyze             m_cAnalyzeAll;
141  TEncAnalyze             m_cAnalyzeI;
142  TEncAnalyze             m_cAnalyzeP;
143  TEncAnalyze             m_cAnalyzeB; 
144#endif
145protected:
146  Void  xGetNewPicBuffer  ( TComPic*& rpcPic );           ///< get picture buffer which will be processed
147  Void  xInitSPS          ();                             ///< initialize SPS from encoder options
148  Void  xInitPPS          ();                             ///< initialize PPS from encoder options
149 
150  Void  xInitPPSforTiles  ();
151  Void  xInitRPS          (Bool isFieldCoding);           ///< initialize PPS from encoder options
152#if H_MV_HLS10_GEN_FIX
153#if H_MV
154
155  template <class T>     Void  xDelete( Bool ar, T inArray ) 
156  {
157    if( inArray != NULL)
158    {
159      if ( ar )
160      {     
161        delete[] inArray; 
162      }
163      else
164      {
165        delete inArray;
166      }
167    }
168  }
169
170  template <class T>     Void  xDelete( Bool ar, T inArray, Int idx1 ) 
171  {
172    if( inArray != NULL)
173    {
174        xDelete( ar, inArray[idx1]); 
175    }
176  }
177
178  template <class T>     Void  xDelete( Bool ar, T inArray, Int idx1, Int idx2 ) 
179  {
180    if( inArray != NULL )
181    {
182      xDelete( ar, inArray[idx1], idx2 ); 
183    }
184  }
185
186  template <class T>     Void  xDelete( Bool ar, T inArray, Int idx1, Int idx2, Int idx3 ) 
187  {
188    if( inArray != NULL )
189    {
190      xDelete( ar, inArray[idx1], idx2, idx3 ); 
191    }
192  }
193
194#endif
195#endif
196public:
197  TEncTop();
198  virtual ~TEncTop();
199 
200  Void      create          ();
201  Void      destroy         ();
202#if KWU_RC_MADPRED_E0227
203  Void      init            ( TAppEncTop* pcTAppEncTop, Bool isFieldCoding );
204#else
205  Void      init            (Bool isFieldCoding);
206#endif
207
208#if H_MV 
209  TComPicLists* getIvPicLists() { return m_ivPicLists; }
210#endif
211#if H_3D_IC
212  Int*      getICEnableCandidate() { return m_aICEnableCandidate; }
213  Int*      getICEnableNum() { return m_aICEnableNum; }
214#endif
215  Void      deletePicBuffer ();
216
217  Void      createWPPCoders(Int iNumSubstreams);
218 
219#if H_MV
220  Void      initNewPic(TComPicYuv* pcPicYuvOrg);
221#endif
222  // -------------------------------------------------------------------------------------------------------------------
223  // member access functions
224  // -------------------------------------------------------------------------------------------------------------------
225 
226  TComList<TComPic*>*     getListPic            () { return  &m_cListPic;             }
227  TEncSearch*             getPredSearch         () { return  &m_cSearch;              }
228 
229  TComTrQuant*            getTrQuant            () { return  &m_cTrQuant;             }
230  TComLoopFilter*         getLoopFilter         () { return  &m_cLoopFilter;          }
231  TEncSampleAdaptiveOffset* getSAO              () { return  &m_cEncSAO;              }
232  TEncGOP*                getGOPEncoder         () { return  &m_cGOPEncoder;          }
233  TEncSlice*              getSliceEncoder       () { return  &m_cSliceEncoder;        }
234  TEncCu*                 getCuEncoder          () { return  &m_cCuEncoder;           }
235  TEncEntropy*            getEntropyCoder       () { return  &m_cEntropyCoder;        }
236  TEncCavlc*              getCavlcCoder         () { return  &m_cCavlcCoder;          }
237  TEncSbac*               getSbacCoder          () { return  &m_cSbacCoder;           }
238  TEncBinCABAC*           getBinCABAC           () { return  &m_cBinCoderCABAC;       }
239  TEncSbac*               getSbacCoders     () { return  m_pcSbacCoders;      }
240  TEncBinCABAC*           getBinCABACs          () { return  m_pcBinCoderCABACs;      }
241 
242  TComBitCounter*         getBitCounter         () { return  &m_cBitCounter;          }
243  TComRdCost*             getRdCost             () { return  &m_cRdCost;              }
244  TEncSbac***             getRDSbacCoder        () { return  m_pppcRDSbacCoder;       }
245  TEncSbac*               getRDGoOnSbacCoder    () { return  &m_cRDGoOnSbacCoder;     }
246  TComBitCounter*         getBitCounters        () { return  m_pcBitCounters;         }
247  TComRdCost*             getRdCosts            () { return  m_pcRdCosts;             }
248  TEncSbac****            getRDSbacCoders       () { return  m_ppppcRDSbacCoders;     }
249  TEncSbac*               getRDGoOnSbacCoders   () { return  m_pcRDGoOnSbacCoders;   }
250  TEncRateCtrl*           getRateCtrl           () { return &m_cRateCtrl;             }
251#if KWU_RC_MADPRED_E0227
252  TAppEncTop*             getEncTop             () { return m_pcTAppEncTop; }
253  TAppComCamPara*         getCamParam()                 { return m_cCamParam;}
254  Void                    setCamParam(TAppComCamPara * pCamparam)                 { m_cCamParam = pCamparam;}
255#endif
256  TComSPS*                getSPS                () { return  &m_cSPS;                 }
257  TComPPS*                getPPS                () { return  &m_cPPS;                 }
258  Void selectReferencePictureSet(TComSlice* slice, Int POCCurr, Int GOPid );
259  Int getReferencePictureSetIdxForSOP(TComSlice* slice, Int POCCurr, Int GOPid );
260  TComScalingList*        getScalingList        () { return  &m_scalingList;         }
261#if H_MV
262  TEncAnalyze*            getAnalyzeAll         () { return &m_cAnalyzeAll; }
263  TEncAnalyze*            getAnalyzeI           () { return &m_cAnalyzeI;   }
264  TEncAnalyze*            getAnalyzeP           () { return &m_cAnalyzeP;   }
265  TEncAnalyze*            getAnalyzeB           () { return &m_cAnalyzeB;   }
266
267  Int                     getNumAllPicCoded     () { return m_uiNumAllPicCoded; }
268 
269  Int                     getFrameId            (Int iGOPid);
270 
271  TComPic*                getPic                ( Int poc );
272  Void                    setIvPicLists         ( TComPicLists* picLists) { m_ivPicLists = picLists; }
273#endif
274#if H_3D_IC
275  Void                    setICEnableCandidate         ( Int* ICEnableCandidate) { m_aICEnableCandidate = ICEnableCandidate; }
276  Void                    setICEnableNum         ( Int* ICEnableNum) { m_aICEnableNum = ICEnableNum; }
277#endif
278  // -------------------------------------------------------------------------------------------------------------------
279  // encoder function
280  // -------------------------------------------------------------------------------------------------------------------
281
282  /// encode several number of pictures until end-of-sequence
283#if H_MV
284  Void encode( Bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded  , Int gopId  ); 
285
286   /// encode several number of pictures until end-of-sequence
287  Void encode( bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut,
288              std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded, bool isTff  , Int gopId );
289
290#else
291  Void encode( Bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut,
292              std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded ); 
293   /// encode several number of pictures until end-of-sequence
294  Void encode( bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut,
295              std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded, bool isTff);
296
297#endif
298
299#if H_MV
300  Void printSummary      ( Int numAllPicCoded, bool isField ); 
301#else
302  Void printSummary(bool isField) { m_cGOPEncoder.printOutSummary (m_uiNumAllPicCoded, isField); }
303#endif
304
305#if H_3D
306   Void setupRenModel( Int iPoc, Int iEncViewIdx, Int iEncContent, Int iHorOffset );
307#endif
308};
309
310//! \}
311
312#endif // __TENCTOP__
Note: See TracBrowser for help on using the repository browser.