source: 3DVCSoftware/trunk/source/Lib/TLibEncoder/TEncTop.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: 14.2 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 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
153
154  template <class T>     Void  xDelete( Bool ar, T inArray ) 
155  {
156    if( inArray != NULL)
157    {
158      if ( ar )
159      {     
160        delete[] inArray; 
161      }
162      else
163      {
164        delete inArray;
165      }
166    }
167  }
168
169  template <class T>     Void  xDelete( Bool ar, T inArray, Int idx1 ) 
170  {
171    if( inArray != NULL)
172    {
173        xDelete( ar, inArray[idx1]); 
174    }
175  }
176
177  template <class T>     Void  xDelete( Bool ar, T inArray, Int idx1, Int idx2 ) 
178  {
179    if( inArray != NULL )
180    {
181      xDelete( ar, inArray[idx1], idx2 ); 
182    }
183  }
184
185  template <class T>     Void  xDelete( Bool ar, T inArray, Int idx1, Int idx2, Int idx3 ) 
186  {
187    if( inArray != NULL )
188    {
189      xDelete( ar, inArray[idx1], idx2, idx3 ); 
190    }
191  }
192
193#endif
194public:
195  TEncTop();
196  virtual ~TEncTop();
197 
198  Void      create          ();
199  Void      destroy         ();
200#if KWU_RC_MADPRED_E0227
201  Void      init            ( TAppEncTop* pcTAppEncTop, Bool isFieldCoding );
202#else
203  Void      init            (Bool isFieldCoding);
204#endif
205
206#if H_MV 
207  TComPicLists* getIvPicLists() { return m_ivPicLists; }
208#endif
209#if H_3D_IC
210  Int*      getICEnableCandidate() { return m_aICEnableCandidate; }
211  Int*      getICEnableNum() { return m_aICEnableNum; }
212#endif
213  Void      deletePicBuffer ();
214
215  Void      createWPPCoders(Int iNumSubstreams);
216 
217#if H_MV
218  Void      initNewPic(TComPicYuv* pcPicYuvOrg);
219#endif
220  // -------------------------------------------------------------------------------------------------------------------
221  // member access functions
222  // -------------------------------------------------------------------------------------------------------------------
223 
224  TComList<TComPic*>*     getListPic            () { return  &m_cListPic;             }
225  TEncSearch*             getPredSearch         () { return  &m_cSearch;              }
226 
227  TComTrQuant*            getTrQuant            () { return  &m_cTrQuant;             }
228  TComLoopFilter*         getLoopFilter         () { return  &m_cLoopFilter;          }
229  TEncSampleAdaptiveOffset* getSAO              () { return  &m_cEncSAO;              }
230  TEncGOP*                getGOPEncoder         () { return  &m_cGOPEncoder;          }
231  TEncSlice*              getSliceEncoder       () { return  &m_cSliceEncoder;        }
232  TEncCu*                 getCuEncoder          () { return  &m_cCuEncoder;           }
233  TEncEntropy*            getEntropyCoder       () { return  &m_cEntropyCoder;        }
234  TEncCavlc*              getCavlcCoder         () { return  &m_cCavlcCoder;          }
235  TEncSbac*               getSbacCoder          () { return  &m_cSbacCoder;           }
236  TEncBinCABAC*           getBinCABAC           () { return  &m_cBinCoderCABAC;       }
237  TEncSbac*               getSbacCoders     () { return  m_pcSbacCoders;      }
238  TEncBinCABAC*           getBinCABACs          () { return  m_pcBinCoderCABACs;      }
239 
240  TComBitCounter*         getBitCounter         () { return  &m_cBitCounter;          }
241  TComRdCost*             getRdCost             () { return  &m_cRdCost;              }
242  TEncSbac***             getRDSbacCoder        () { return  m_pppcRDSbacCoder;       }
243  TEncSbac*               getRDGoOnSbacCoder    () { return  &m_cRDGoOnSbacCoder;     }
244  TComBitCounter*         getBitCounters        () { return  m_pcBitCounters;         }
245  TComRdCost*             getRdCosts            () { return  m_pcRdCosts;             }
246  TEncSbac****            getRDSbacCoders       () { return  m_ppppcRDSbacCoders;     }
247  TEncSbac*               getRDGoOnSbacCoders   () { return  m_pcRDGoOnSbacCoders;   }
248  TEncRateCtrl*           getRateCtrl           () { return &m_cRateCtrl;             }
249#if KWU_RC_MADPRED_E0227
250  TAppEncTop*             getEncTop             () { return m_pcTAppEncTop; }
251  TAppComCamPara*         getCamParam()                 { return m_cCamParam;}
252  Void                    setCamParam(TAppComCamPara * pCamparam)                 { m_cCamParam = pCamparam;}
253#endif
254  TComSPS*                getSPS                () { return  &m_cSPS;                 }
255  TComPPS*                getPPS                () { return  &m_cPPS;                 }
256  Void selectReferencePictureSet(TComSlice* slice, Int POCCurr, Int GOPid );
257  Int getReferencePictureSetIdxForSOP(TComSlice* slice, Int POCCurr, Int GOPid );
258  TComScalingList*        getScalingList        () { return  &m_scalingList;         }
259#if H_MV
260  TEncAnalyze*            getAnalyzeAll         () { return &m_cAnalyzeAll; }
261  TEncAnalyze*            getAnalyzeI           () { return &m_cAnalyzeI;   }
262  TEncAnalyze*            getAnalyzeP           () { return &m_cAnalyzeP;   }
263  TEncAnalyze*            getAnalyzeB           () { return &m_cAnalyzeB;   }
264
265  Int                     getNumAllPicCoded     () { return m_uiNumAllPicCoded; }
266 
267  Int                     getFrameId            (Int iGOPid);
268 
269  TComPic*                getPic                ( Int poc );
270  Void                    setIvPicLists         ( TComPicLists* picLists) { m_ivPicLists = picLists; }
271#endif
272#if H_3D
273  Void                    setSps3dExtension     ( TComSps3dExtension sps3dExtension ) { m_cSPS.setSps3dExtension( sps3dExtension );  };
274#endif
275#if H_3D_IC
276  Void                    setICEnableCandidate         ( Int* ICEnableCandidate) { m_aICEnableCandidate = ICEnableCandidate; }
277  Void                    setICEnableNum         ( Int* ICEnableNum) { m_aICEnableNum = ICEnableNum; }
278#endif
279  // -------------------------------------------------------------------------------------------------------------------
280  // encoder function
281  // -------------------------------------------------------------------------------------------------------------------
282
283  /// encode several number of pictures until end-of-sequence
284#if H_MV
285  Void encode( Bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded  , Int gopId  ); 
286
287   /// encode several number of pictures until end-of-sequence
288  Void encode( bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut,
289              std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded, bool isTff  , Int gopId );
290
291#else
292  Void encode( Bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut,
293              std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded ); 
294   /// encode several number of pictures until end-of-sequence
295  Void encode( bool bEos, TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut,
296              std::list<AccessUnit>& accessUnitsOut, Int& iNumEncoded, bool isTff);
297
298#endif
299
300#if H_MV
301  Void printSummary      ( Int numAllPicCoded, bool isField ); 
302#else
303  Void printSummary(bool isField) { m_cGOPEncoder.printOutSummary (m_uiNumAllPicCoded, isField); }
304#endif
305
306#if H_3D
307   Void setupRenModel( Int iPoc, Int iEncViewIdx, Int iEncContent, Int iHorOffset );
308#endif
309};
310
311//! \}
312
313#endif // __TENCTOP__
Note: See TracBrowser for help on using the repository browser.