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

Last change on this file since 757 was 713, checked in by seregin, 11 years ago

merge with SHM-6-dev

  • Property svn:eol-style set to native
File size: 10.3 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     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"
56#if Q0048_CGS_3D_ASYMLUT
57#include "TEnc3DAsymLUT.h"
58#endif
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;
87#if ALLOW_RECOVERY_POINT_AS_RAP
88  Int                     m_iLastRecoveryPicPOC;
89#endif
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;
115  std::vector<Int>        m_storedStartCUAddrForEncodingSlice;
116  std::vector<Int>        m_storedStartCUAddrForEncodingSliceSegment;
117#if FIX1172
118  NalUnitType             m_associatedIRAPType;
119  Int                     m_associatedIRAPPOC;
120#endif
121
122  std::vector<Int> m_vRVM_RP;
123  UInt                    m_lastBPSEI;
124  UInt                    m_totalCoded;
125  UInt                    m_cpbRemovalDelay;
126  UInt                    m_tl0Idx;
127  UInt                    m_rapIdx;
128  Bool                    m_activeParameterSetSEIPresentInAU;
129  Bool                    m_bufferingPeriodSEIPresentInAU;
130  Bool                    m_pictureTimingSEIPresentInAU;
131  Bool                    m_nestedBufferingPeriodSEIPresentInAU;
132  Bool                    m_nestedPictureTimingSEIPresentInAU;
133
134#if SVC_EXTENSION
135  UInt                    m_layerId;     
136  TEncTop**               m_ppcTEncTop;
137#if SVC_UPSAMPLING
138  TEncSearch*             m_pcPredSearch;                       ///< encoder search class
139#endif 
140#if Q0048_CGS_3D_ASYMLUT
141  TEnc3DAsymLUT           m_Enc3DAsymLUTPicUpdate;
142  TEnc3DAsymLUT           m_Enc3DAsymLUTPPS;
143  TComPicYuv*             m_pColorMappedPic;
144
145  Int m_iTap;
146  const Int (*m_phase_filter)[13];
147  const Int (*m_phase_filter_luma)[13];
148  const Int (*m_phase_filter_chroma)[13];
149  Int m_iM, m_iN;
150  static const Int m_phase_filter_0_t0[4][13];
151  static const Int m_phase_filter_0_t1[4][13];
152  static const Int m_phase_filter_0_t1_chroma[4][13];
153  static const Int m_phase_filter_1[8][13];
154  Int   **m_temp;
155#endif
156#endif
157 
158public:
159  TEncGOP();
160  virtual ~TEncGOP();
161 
162#if SVC_EXTENSION
163  Void  create      ( UInt layerId );
164#else
165  Void  create      ();
166#endif
167  Void  destroy     ();
168 
169  Void  init        ( TEncTop* pcTEncTop );
170#if SVC_EXTENSION
171  Void  compressGOP ( Int iPicIdInGOP, Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRec, std::list<AccessUnit>& accessUnitsInGOP, Bool isField, Bool isTff );
172#else
173  Void  compressGOP ( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRec, std::list<AccessUnit>& accessUnitsInGOP, Bool isField, Bool isTff );
174#endif
175  Void  xAttachSliceDataToNalUnit (OutputNALUnit& rNalu, TComOutputBitstream*& rpcBitstreamRedirect);
176
177 
178  Int   getGOPSize()          { return  m_iGopSize;  }
179 
180  TComList<TComPic*>*   getListPic()      { return m_pcListPic; }
181 
182#if !SVC_EXTENSION
183  Void  printOutSummary      ( UInt uiNumAllPicCoded, Bool isField);
184#endif
185  Void  preLoopFilterPicAll  ( TComPic* pcPic, UInt64& ruiDist, UInt64& ruiBits );
186 
187  TEncSlice*  getSliceEncoder()   { return m_pcSliceEncoder; }
188  NalUnitType getNalUnitType( Int pocCurr, Int lastIdr, Bool isField );
189  Void arrangeLongtermPicturesInRPS(TComSlice *, TComList<TComPic*>& );
190protected:
191  TEncRateCtrl* getRateCtrl()       { return m_pcRateCtrl;  }
192
193protected:
194 
195  Void xInitGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, Bool isField );
196  Void  xInitGOP          ( Int iPOC, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut );
197  Void  xGetBuffer        ( TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, Int iNumPicRcvd, Int iTimeOffset, TComPic*& rpcPic, TComPicYuv*& rpcPicYuvRecOut, Int pocCurr, Bool isField );
198 
199  Void  xCalculateAddPSNR ( TComPic* pcPic, TComPicYuv* pcPicD, const AccessUnit&, Double dEncTime );
200  Void  xCalculateInterlacedAddPSNR( TComPic* pcPicOrgTop, TComPic* pcPicOrgBottom, TComPicYuv* pcPicRecTop, TComPicYuv* pcPicRecBottom, const AccessUnit& accessUnit, Double dEncTime );
201 
202  UInt64 xFindDistortionFrame (TComPicYuv* pcPic0, TComPicYuv* pcPic1);
203
204  Double xCalculateRVM();
205
206  SEIActiveParameterSets* xCreateSEIActiveParameterSets (TComSPS *sps);
207  SEIFramePacking*        xCreateSEIFramePacking();
208  SEIDisplayOrientation*  xCreateSEIDisplayOrientation();
209
210  SEIToneMappingInfo*     xCreateSEIToneMappingInfo();
211#if Q0074_SEI_COLOR_MAPPING
212  SEIColorMappingInfo*    xCreateSEIColorMappingInfo( Char* file );
213#endif
214
215  Void xCreateLeadingSEIMessages (/*SEIMessages seiMessages,*/ AccessUnit &accessUnit, TComSPS *sps);
216  Int xGetFirstSeiLocation (AccessUnit &accessUnit);
217  Void xResetNonNestedSEIPresentFlags()
218  {
219    m_activeParameterSetSEIPresentInAU = false;
220    m_bufferingPeriodSEIPresentInAU    = false;
221    m_pictureTimingSEIPresentInAU      = false;
222  }
223  Void xResetNestedSEIPresentFlags()
224  {
225    m_nestedBufferingPeriodSEIPresentInAU    = false;
226    m_nestedPictureTimingSEIPresentInAU      = false;
227  }
228  Void dblMetric( TComPic* pcPic, UInt uiNumSlices );
229
230#if SVC_EXTENSION
231#if LAYERS_NOT_PRESENT_SEI
232  SEILayersNotPresent*    xCreateSEILayersNotPresent ();
233#endif
234#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
235  Void xBuildTileSetsMap(TComPicSym* picSym);
236  SEIInterLayerConstrainedTileSets* xCreateSEIInterLayerConstrainedTileSets();
237#endif
238#if O0164_MULTI_LAYER_HRD
239  SEIScalableNesting* xCreateBspNestingSEI(TComSlice *pcSlice);
240#endif
241#if Q0048_CGS_3D_ASYMLUT
242  Void xDetermin3DAsymLUT( TComSlice * pSlice , TComPic * pCurPic , UInt refLayerIdc , TEncCfg * pCfg , Bool bSignalPPS );
243  Void downScalePic( TComPicYuv* pcYuvSrc, TComPicYuv* pcYuvDest);
244  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 );
245  inline Short  xClip( Short x , Int bitdepth );
246  Void initDs(Int iWidth, Int iHeight, Int iType);
247  Void filterImg(
248    Pel           *src,
249    Int           iSrcStride,
250    Pel           *dst,
251    Int           iDstStride,
252    Int           height1, 
253    Int           width1, 
254    Int           shift,
255    Int           plane);
256
257  Int get_mem2DintWithPad(Int ***array2D, Int dim0, Int dim1, Int iPadY, Int iPadX);
258  Void free_mem2DintWithPad(Int **array2D, Int iPadY, Int iPadX);
259#endif
260#endif //SVC_EXTENSION
261};// END CLASS DEFINITION TEncGOP
262
263// ====================================================================================================================
264// Enumeration
265// ====================================================================================================================
266enum PROCESSING_STATE
267{
268  EXECUTE_INLOOPFILTER,
269  ENCODE_SLICE
270};
271
272enum SCALING_LIST_PARAMETER
273{
274  SCALING_LIST_OFF,
275  SCALING_LIST_DEFAULT,
276  SCALING_LIST_FILE_READ
277};
278
279//! \}
280
281#endif // __TENCGOP__
282
Note: See TracBrowser for help on using the repository browser.