source: SHVCSoftware/trunk/source/Lib/TLibEncoder/TEncGOP.h

Last change on this file was 906, checked in by seregin, 10 years ago

merge SHM-dev

  • Property svn:eol-style set to native
File size: 11.1 KB
RevLine 
[313]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 *
[595]6 * Copyright (c) 2010-2014, ITU/ISO/IEC
[313]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     TEncGOP.h
35    \brief    GOP encoder class (header)
36*/
37
38#ifndef __TENCGOP__
39#define __TENCGOP__
40
41#include <list>
42
43#include <stdlib.h>
44
45#include "TLibCommon/TComList.h"
46#include "TLibCommon/TComPic.h"
47#include "TLibCommon/TComBitCounter.h"
48#include "TLibCommon/TComLoopFilter.h"
49#include "TLibCommon/AccessUnit.h"
50#include "TEncSampleAdaptiveOffset.h"
51#include "TEncSlice.h"
52#include "TEncEntropy.h"
53#include "TEncCavlc.h"
54#include "TEncSbac.h"
55#include "SEIwrite.h"
[713]56#if Q0048_CGS_3D_ASYMLUT
57#include "TEnc3DAsymLUT.h"
58#endif
[313]59
60#include "TEncAnalyze.h"
61#include "TEncRateCtrl.h"
62#include <vector>
63
64//! \ingroup TLibEncoder
65//! \{
66
67class TEncTop;
68
69// ====================================================================================================================
70// Class definition
71// ====================================================================================================================
72
73/// GOP encoder class
74class TEncGOP
75{
76private:
77  //  Data
78  Bool                    m_bLongtermTestPictureHasBeenCoded;
79  Bool                    m_bLongtermTestPictureHasBeenCoded2;
80  UInt            m_numLongTermRefPicSPS;
81  UInt            m_ltRefPicPocLsbSps[33];
82  Bool            m_ltRefPicUsedByCurrPicFlag[33];
83  Int                     m_iLastIDR;
84  Int                     m_iGopSize;
85  Int                     m_iNumPicCoded;
86  Bool                    m_bFirst;
[713]87#if ALLOW_RECOVERY_POINT_AS_RAP
88  Int                     m_iLastRecoveryPicPOC;
89#endif
[313]90 
91  //  Access channel
92  TEncTop*                m_pcEncTop;
93  TEncCfg*                m_pcCfg;
94  TEncSlice*              m_pcSliceEncoder;
95  TComList<TComPic*>*     m_pcListPic;
96 
97  TEncEntropy*            m_pcEntropyCoder;
98  TEncCavlc*              m_pcCavlcCoder;
99  TEncSbac*               m_pcSbacCoder;
100  TEncBinCABAC*           m_pcBinCABAC;
101  TComLoopFilter*         m_pcLoopFilter;
102
103  SEIWriter               m_seiWriter;
104 
105  //--Adaptive Loop filter
106  TEncSampleAdaptiveOffset*  m_pcSAO;
107  TComBitCounter*         m_pcBitCounter;
108  TEncRateCtrl*           m_pcRateCtrl;
109  // indicate sequence first
110  Bool                    m_bSeqFirst;
111 
112  // clean decoding refresh
113  Bool                    m_bRefreshPending;
114  Int                     m_pocCRA;
[815]115#if POC_RESET_IDC_ENCODER
116  Int                     m_pocCraWithoutReset;
117  Int                     m_associatedIrapPocBeforeReset;
118#endif
[313]119  std::vector<Int>        m_storedStartCUAddrForEncodingSlice;
120  std::vector<Int>        m_storedStartCUAddrForEncodingSliceSegment;
[595]121#if FIX1172
122  NalUnitType             m_associatedIRAPType;
123  Int                     m_associatedIRAPPOC;
124#endif
[313]125
126  std::vector<Int> m_vRVM_RP;
127  UInt                    m_lastBPSEI;
128  UInt                    m_totalCoded;
129  UInt                    m_cpbRemovalDelay;
130  UInt                    m_tl0Idx;
131  UInt                    m_rapIdx;
132  Bool                    m_activeParameterSetSEIPresentInAU;
133  Bool                    m_bufferingPeriodSEIPresentInAU;
134  Bool                    m_pictureTimingSEIPresentInAU;
135  Bool                    m_nestedBufferingPeriodSEIPresentInAU;
136  Bool                    m_nestedPictureTimingSEIPresentInAU;
[595]137
138#if SVC_EXTENSION
139  UInt                    m_layerId;     
140  TEncTop**               m_ppcTEncTop;
141  TEncSearch*             m_pcPredSearch;                       ///< encoder search class
[713]142#if Q0048_CGS_3D_ASYMLUT
143  TEnc3DAsymLUT           m_Enc3DAsymLUTPicUpdate;
144  TEnc3DAsymLUT           m_Enc3DAsymLUTPPS;
145  TComPicYuv*             m_pColorMappedPic;
146
147  Int m_iTap;
148  const Int (*m_phase_filter)[13];
149  const Int (*m_phase_filter_luma)[13];
150  const Int (*m_phase_filter_chroma)[13];
151  Int m_iM, m_iN;
152  static const Int m_phase_filter_0_t0[4][13];
153  static const Int m_phase_filter_0_t1[4][13];
154  static const Int m_phase_filter_0_t1_chroma[4][13];
155  static const Int m_phase_filter_1[8][13];
156  Int   **m_temp;
[595]157#endif
[815]158#if POC_RESET_IDC_ENCODER
159  Int   m_lastPocPeriodId;
[713]160#endif
[815]161#endif
[595]162 
[313]163public:
164  TEncGOP();
165  virtual ~TEncGOP();
166 
167#if SVC_EXTENSION
168  Void  create      ( UInt layerId );
169#else
170  Void  create      ();
171#endif
172  Void  destroy     ();
173 
174  Void  init        ( TEncTop* pcTEncTop );
175#if SVC_EXTENSION
[442]176  Void  compressGOP ( Int iPicIdInGOP, Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRec, std::list<AccessUnit>& accessUnitsInGOP, Bool isField, Bool isTff );
[313]177#else
[442]178  Void  compressGOP ( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRec, std::list<AccessUnit>& accessUnitsInGOP, Bool isField, Bool isTff );
[313]179#endif
[815]180#if POC_RESET_IDC_ENCODER
181  Void  determinePocResetIdc( Int const pocCurr, TComSlice *const slice);
182  Int   getIntraRefreshInterval()  { return m_pcCfg->getIntraPeriod(); }
183  Int   getIntraRefreshType()      { return m_pcCfg->getDecodingRefreshType(); }
184  // Int   getIntraRefreshInterval ()  { return (m_pcCfg) ? m_pcCfg->getIntraPeriod() : 0;  }
185  Int   getLastPocPeriodId()      { return m_lastPocPeriodId; }
186  Void  setLastPocPeriodId(Int x) { m_lastPocPeriodId = x;    }
187  Void  updatePocValuesOfPics( Int const pocCurr, TComSlice *const slice);
188#endif
[313]189  Void  xAttachSliceDataToNalUnit (OutputNALUnit& rNalu, TComOutputBitstream*& rpcBitstreamRedirect);
190
191 
192  Int   getGOPSize()          { return  m_iGopSize;  }
193 
194  TComList<TComPic*>*   getListPic()      { return m_pcListPic; }
195 
[442]196#if !SVC_EXTENSION
197  Void  printOutSummary      ( UInt uiNumAllPicCoded, Bool isField);
198#endif
[313]199  Void  preLoopFilterPicAll  ( TComPic* pcPic, UInt64& ruiDist, UInt64& ruiBits );
200 
201  TEncSlice*  getSliceEncoder()   { return m_pcSliceEncoder; }
[595]202  NalUnitType getNalUnitType( Int pocCurr, Int lastIdr, Bool isField );
[313]203  Void arrangeLongtermPicturesInRPS(TComSlice *, TComList<TComPic*>& );
204protected:
205  TEncRateCtrl* getRateCtrl()       { return m_pcRateCtrl;  }
206
207protected:
[442]208 
[906]209  Void  xInitGOP          ( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, bool isField );
210  Void  xGetBuffer        ( TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, Int iNumPicRcvd, Int iTimeOffset, TComPic*& rpcPic, TComPicYuv*& rpcPicYuvRecOut, Int pocCurr, bool isField );
[313]211 
212  Void  xCalculateAddPSNR ( TComPic* pcPic, TComPicYuv* pcPicD, const AccessUnit&, Double dEncTime );
[442]213  Void  xCalculateInterlacedAddPSNR( TComPic* pcPicOrgTop, TComPic* pcPicOrgBottom, TComPicYuv* pcPicRecTop, TComPicYuv* pcPicRecBottom, const AccessUnit& accessUnit, Double dEncTime );
[313]214 
215  UInt64 xFindDistortionFrame (TComPicYuv* pcPic0, TComPicYuv* pcPic1);
216
217  Double xCalculateRVM();
218
219  SEIActiveParameterSets* xCreateSEIActiveParameterSets (TComSPS *sps);
220  SEIFramePacking*        xCreateSEIFramePacking();
221  SEIDisplayOrientation*  xCreateSEIDisplayOrientation();
222
223  SEIToneMappingInfo*     xCreateSEIToneMappingInfo();
[815]224#if P0050_KNEE_FUNCTION_SEI
225  SEIKneeFunctionInfo*    xCreateSEIKneeFunctionInfo();
226#endif
[906]227#if Q0074_COLOUR_REMAPPING_SEI
228  SEIColourRemappingInfo* xCreateSEIColourRemappingInfo();
[713]229#endif
[313]230
231  Void xCreateLeadingSEIMessages (/*SEIMessages seiMessages,*/ AccessUnit &accessUnit, TComSPS *sps);
232  Int xGetFirstSeiLocation (AccessUnit &accessUnit);
233  Void xResetNonNestedSEIPresentFlags()
234  {
235    m_activeParameterSetSEIPresentInAU = false;
236    m_bufferingPeriodSEIPresentInAU    = false;
237    m_pictureTimingSEIPresentInAU      = false;
238  }
239  Void xResetNestedSEIPresentFlags()
240  {
241    m_nestedBufferingPeriodSEIPresentInAU    = false;
242    m_nestedPictureTimingSEIPresentInAU      = false;
243  }
[595]244  Void dblMetric( TComPic* pcPic, UInt uiNumSlices );
245
246#if SVC_EXTENSION
247#if LAYERS_NOT_PRESENT_SEI
248  SEILayersNotPresent*    xCreateSEILayersNotPresent ();
249#endif
[442]250#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
251  Void xBuildTileSetsMap(TComPicSym* picSym);
[595]252  SEIInterLayerConstrainedTileSets* xCreateSEIInterLayerConstrainedTileSets();
[442]253#endif
[644]254#if O0164_MULTI_LAYER_HRD
[906]255#if VPS_VUI_BSP_HRD_PARAMS
256  SEIScalableNesting* xCreateBspNestingSEI(TComSlice *pcSlice, Int olsIdx, Int partitioningSchemeIdx, Int bspIdx);
257#else
[644]258  SEIScalableNesting* xCreateBspNestingSEI(TComSlice *pcSlice);
259#endif
[906]260#endif
[713]261#if Q0048_CGS_3D_ASYMLUT
262  Void xDetermin3DAsymLUT( TComSlice * pSlice , TComPic * pCurPic , UInt refLayerIdc , TEncCfg * pCfg , Bool bSignalPPS );
263  Void downScalePic( TComPicYuv* pcYuvSrc, TComPicYuv* pcYuvDest);
264  Void downScaleComponent2x2( const Pel* pSrc, Pel* pDest, const Int iSrcStride, const Int iDestStride, const Int iSrcWidth, const Int iSrcHeight, const Int inputBitDepth, const Int outputBitDepth );
265  inline Short  xClip( Short x , Int bitdepth );
266  Void initDs(Int iWidth, Int iHeight, Int iType);
267  Void filterImg(
268    Pel           *src,
269    Int           iSrcStride,
270    Pel           *dst,
271    Int           iDstStride,
272    Int           height1, 
273    Int           width1, 
274    Int           shift,
275    Int           plane);
276
277  Int get_mem2DintWithPad(Int ***array2D, Int dim0, Int dim1, Int iPadY, Int iPadX);
278  Void free_mem2DintWithPad(Int **array2D, Int iPadY, Int iPadX);
279#endif
[595]280#endif //SVC_EXTENSION
[313]281};// END CLASS DEFINITION TEncGOP
282
283// ====================================================================================================================
284// Enumeration
285// ====================================================================================================================
286enum PROCESSING_STATE
287{
288  EXECUTE_INLOOPFILTER,
289  ENCODE_SLICE
290};
291
292enum SCALING_LIST_PARAMETER
293{
294  SCALING_LIST_OFF,
295  SCALING_LIST_DEFAULT,
296  SCALING_LIST_FILE_READ
297};
298
299//! \}
300
301#endif // __TENCGOP__
302
Note: See TracBrowser for help on using the repository browser.