source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h @ 1222

Last change on this file since 1222 was 1220, checked in by seregin, 10 years ago

macro cleanup: Q0177_EOS_CHECKS

  • Property svn:eol-style set to native
File size: 13.2 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
[1029]4 * granted under this license.
[313]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     TDecTop.h
35    \brief    decoder class (header)
36*/
37
38#ifndef __TDECTOP__
39#define __TDECTOP__
40
41#include "TLibCommon/CommonDef.h"
42#include "TLibCommon/TComList.h"
43#include "TLibCommon/TComPicYuv.h"
44#include "TLibCommon/TComPic.h"
45#include "TLibCommon/TComTrQuant.h"
46#include "TLibCommon/SEI.h"
[1212]47#if CGS_3D_ASYMLUT
[713]48#include "TLibCommon/TCom3DAsymLUT.h"
49#endif
[313]50
51#include "TDecGop.h"
52#include "TDecEntropy.h"
53#include "TDecSbac.h"
54#include "TDecCAVLC.h"
55#include "SEIread.h"
56
57struct InputNALUnit;
58
59//! \ingroup TLibDecoder
60//! \{
61
62// ====================================================================================================================
63// Class definition
64// ====================================================================================================================
65
66/// decoder class
67class TDecTop
68{
69private:
70  Int                     m_iMaxRefPicNum;
[1029]71
[442]72  NalUnitType             m_associatedIRAPType; ///< NAL unit type of the associated IRAP picture
[313]73  Int                     m_pocCRA;            ///< POC number of the latest CRA picture
74  Int                     m_pocRandomAccess;   ///< POC number of the random access point (the first IDR or CRA picture)
75
76  TComList<TComPic*>      m_cListPic;         //  Dynamic buffer
[1029]77  ParameterSetManagerDecoder m_parameterSetManagerDecoder;  // storage for parameter sets
[313]78  TComSlice*              m_apcSlicePilot;
[442]79
[313]80  SEIMessages             m_SEIs; ///< List of SEI messages that have been received before the first slice and between slices
81
82  // functional classes
83  TComPrediction          m_cPrediction;
[1212]84#if CGS_3D_ASYMLUT
[713]85  TCom3DAsymLUT           m_c3DAsymLUTPPS;
86  TComPicYuv*             m_pColorMappedPic;
87#endif
[313]88  TComTrQuant             m_cTrQuant;
89  TDecGop                 m_cGopDecoder;
90  TDecSlice               m_cSliceDecoder;
91  TDecCu                  m_cCuDecoder;
92  TDecEntropy             m_cEntropyDecoder;
93  TDecCavlc               m_cCavlcDecoder;
94  TDecSbac                m_cSbacDecoder;
95  TDecBinCABAC            m_cBinCABAC;
96  SEIReader               m_seiReader;
97  TComLoopFilter          m_cLoopFilter;
98  TComSampleAdaptiveOffset m_cSAO;
99
100  Bool isSkipPictureForBLA(Int& iPOCLastDisplay);
101  Bool isRandomAccessSkipPicture(Int& iSkipFrame,  Int& iPOCLastDisplay);
102  TComPic*                m_pcPic;
103  UInt                    m_uiSliceIdx;
104#if !SVC_EXTENSION
105  Int                     m_prevPOC;
106#endif
107  Bool                    m_bFirstSliceInPicture;
108#if !SVC_EXTENSION
109  Bool                    m_bFirstSliceInSequence;
110#endif
[442]111  Bool                    m_prevSliceSkipped;
112  Int                     m_skippedPOC;
[713]113  Bool                    m_bFirstSliceInBitstream;
114  Int                     m_lastPOCNoOutputPriorPics;
115  Bool                    m_isNoOutputPriorPics;
116  Bool                    m_craNoRaslOutputFlag;    //value of variable NoRaslOutputFlag of the last CRA pic
[1029]117#if O0043_BEST_EFFORT_DECODING
118  UInt                    m_forceDecodeBitDepth;
[713]119#endif
[1029]120  std::ostream           *m_pDecodedSEIOutputStream;
121
122#if SVC_EXTENSION
[815]123  Bool                    m_isLastNALWasEos;
[978]124  Bool                    m_lastPicHasEos;
[313]125  static UInt             m_prevPOC;        // POC of the previous slice
126  static UInt             m_uiPrevLayerId;  // LayerId of the previous slice
127  static Bool             m_bFirstSliceInSequence;
128  UInt                    m_layerId;     
129  UInt                    m_numLayer;
130  TDecTop**               m_ppcTDecTop;
[1005]131  UInt                    m_smallestLayerId;
[903]132  Bool                    m_pocResettingFlag;
133  Bool                    m_pocDecrementedInDPBFlag;
[313]134#if AVC_BASE
135  fstream*                m_pBLReconFile;
136#endif
[1148]137
[313]138  Int                     m_numDirectRefLayers;
[1047]139  Int                     m_refLayerId[MAX_VPS_LAYER_IDX_PLUS1];
[313]140  Int                     m_numSamplePredRefLayers;
141  Int                     m_numMotionPredRefLayers;
[1148]142
[442]143  TComPic*                m_cIlpPic[MAX_NUM_REF];                    ///<  Inter layer Prediction picture =  upsampled picture
[540]144  CommonDecoderParams*    m_commonDecoderParams;
[713]145#if NO_CLRAS_OUTPUT_FLAG 
[540]146  Bool                    m_noClrasOutputFlag;
147  Bool                    m_layerInitializedFlag;
148  Bool                    m_firstPicInLayerDecodedFlag;
149#endif
[815]150  Int                     m_parseIdc;
151  Int                     m_lastPocPeriodId;
152  Int                     m_prevPicOrderCnt;
[924]153#if CONFORMANCE_BITSTREAM_MODE
154  Bool m_confModeFlag;
155  std::vector<TComPic>   m_confListPic;         //  Dynamic buffer for storing pictures for conformance purposes
156#endif
[953]157  Bool m_isOutputLayerFlag;
[1111]158#endif //SVC_EXTENSION
159
[313]160public:
[1111]161#if SVC_EXTENSION
[851]162  static Bool                    m_checkPocRestrictionsForCurrAu;
163  static Int                     m_pocResetIdcOrCurrAu;
164  static Bool                    m_baseLayerIdrFlag;
165  static Bool                    m_baseLayerPicPresentFlag;
166  static Bool                    m_baseLayerIrapFlag;
167  static Bool                    m_nonBaseIdrPresentFlag;
168  static Int                     m_nonBaseIdrType;
169  static Bool                    m_picNonIdrWithRadlPresentFlag;
170  static Bool                    m_picNonIdrNoLpPresentFlag;
[854]171  static Int                     m_crossLayerPocResetPeriodId;
172  static Int                     m_crossLayerPocResetIdc;
[1111]173#endif //SVC_EXTENSION
[851]174
[313]175  TDecTop();
176  virtual ~TDecTop();
[1029]177
[313]178  Void  create  ();
179  Void  destroy ();
180
[1029]181  Void setDecodedPictureHashSEIEnabled(Int enabled) { m_cGopDecoder.setDecodedPictureHashSEIEnabled(enabled); }
[313]182
183  Void  init();
184#if SVC_EXTENSION
185  Bool  decode(InputNALUnit& nalu, Int& iSkipFrame, Int& iPOCLastDisplay, UInt& curLayerId, Bool& bNewPOC);
186#else
187  Bool  decode(InputNALUnit& nalu, Int& iSkipFrame, Int& iPOCLastDisplay);
188#endif
189 
190  Void  deletePicBuffer();
191
[713]192 
193  TComSPS* getActiveSPS() { return m_parameterSetManagerDecoder.getActiveSPS(); }
194
195
[1029]196  Void  executeLoopFilters(Int& poc, TComList<TComPic*>*& rpcListPic);
197  Void  checkNoOutputPriorPics (TComList<TComPic*>* rpcListPic);
198
199  Bool  getNoOutputPriorPicsFlag () { return m_isNoOutputPriorPics; }
[713]200  Void  setNoOutputPriorPicsFlag (Bool val) { m_isNoOutputPriorPics = val; }
[1029]201  Void  setFirstSliceInPicture (bool val)  { m_bFirstSliceInPicture = val; }
202  Bool  getFirstSliceInSequence ()         { return m_bFirstSliceInSequence; }
203  Void  setFirstSliceInSequence (bool val) { m_bFirstSliceInSequence = val; }
204#if O0043_BEST_EFFORT_DECODING
205  Void  setForceDecodeBitDepth(UInt bitDepth) { m_forceDecodeBitDepth = bitDepth; }
[713]206#endif
[1029]207  Void  setDecodedSEIMessageOutputStream(std::ostream *pOpStream) { m_pDecodedSEIOutputStream = pOpStream; }
[713]208
[313]209#if SVC_EXTENSION
[1043]210  Int       getParseIdc                     ()                              { return m_parseIdc;               }
211  Void      setParseIdc                     (Int x)                         { m_parseIdc = x;                  }
[1049]212  Void      markAllPicsAsNoCurrAu           (TComVPS *vps);
[815]213
[1043]214  Int       getLastPocPeriodId              ()                              { return m_lastPocPeriodId;        }
215  Void      setLastPocPeriodId              (Int x)                         { m_lastPocPeriodId = x;           }
[815]216
[1043]217  Int       getPrevPicOrderCnt              ()                              { return m_prevPicOrderCnt;        }
218  Void      setPrevPicOrderCnt              (Int const x)                   { m_prevPicOrderCnt = x;           }
[1210]219
[1043]220  UInt      getLayerId                      ()                              { return m_layerId;                }
221  Void      setLayerId                      (UInt layer)                    { m_layerId = layer;               }
222  UInt      getNumLayer                     ()                              { return m_numLayer;               }
223  Void      setNumLayer                     (UInt uiNum)                    { m_numLayer = uiNum;              }
224  TComList<TComPic*>*  getListPic           ()                              { return &m_cListPic;              }
225  Void      setLayerDec                     (TDecTop **p)                   { m_ppcTDecTop = p;                }
[1049]226  TDecTop*  getLayerDec                     (UInt layerId)                  { return m_ppcTDecTop[layerId];    }
[1005]227  Void      xDeriveSmallestLayerId(TComVPS* vps);
[1148]228
[1043]229  TDecTop*  getRefLayerDec                  (UInt refLayerIdx);
[313]230  Int       getNumDirectRefLayers           ()                              { return m_numDirectRefLayers;      }
231  Void      setNumDirectRefLayers           (Int num)                       { m_numDirectRefLayers = num;       }
232
233  Int       getRefLayerId                   (Int i)                         { return m_refLayerId[i];           }
234  Void      setRefLayerId                   (Int i, Int refLayerId)         { m_refLayerId[i] = refLayerId;     }
235
236  Int       getNumSamplePredRefLayers       ()                              { return m_numSamplePredRefLayers;  }
237  Void      setNumSamplePredRefLayers       (Int num)                       { m_numSamplePredRefLayers = num;   }
238
239  Int       getNumMotionPredRefLayers       ()                              { return m_numMotionPredRefLayers;  }
240  Void      setNumMotionPredRefLayers       (Int num)                       { m_numMotionPredRefLayers = num;   }
241
242  Void      setRefLayerParams( TComVPS* vps );
[1148]243
[313]244#if AVC_BASE
[1177]245  Void      setBLReconFile( fstream* pFile )                                { m_pBLReconFile = pFile; }
246  fstream*  getBLReconFile()                                                { return m_pBLReconFile;  }
[313]247#endif
[442]248  Void      xInitILRP(TComSlice *slice);
[1177]249  CommonDecoderParams*    getCommonDecoderParams()                          { return m_commonDecoderParams; }
250  Void                    setCommonDecoderParams(CommonDecoderParams* x)    { m_commonDecoderParams = x;    }
[595]251  Void      checkValueOfTargetOutputLayerSetIdx(TComVPS *vps);
252#if SCALINGLIST_INFERRING
[1177]253  ParameterSetManagerDecoder* getParameterSetManager()                      { return &m_parameterSetManagerDecoder; }
[595]254#endif
[924]255#if CONFORMANCE_BITSTREAM_MODE
256  std::vector<TComPic>* getConfListPic() {return &m_confListPic; }
[1029]257  Bool const getConfModeFlag() { return m_confModeFlag; }
258  Void setConfModeFlag(Bool x) { m_confModeFlag = x; }
[924]259#endif
[595]260#endif //SVC_EXTENSION
[820]261
[313]262protected:
263  Void  xGetNewPicBuffer  (TComSlice* pcSlice, TComPic*& rpcPic);
264  Void  xCreateLostPicture (Int iLostPOC);
265
266  Void      xActivateParameterSets();
267#if SVC_EXTENSION
268  Bool      xDecodeSlice(InputNALUnit &nalu, Int &iSkipFrame, Int iPOCLastDisplay, UInt& curLayerId, Bool& bNewPOC);
[1073]269  Void      xSetSpatialEnhLayerFlag(TComSlice* slice, TComPic* pic);
[313]270#else
271  Bool      xDecodeSlice(InputNALUnit &nalu, Int &iSkipFrame, Int iPOCLastDisplay);
272#endif
273  Void      xDecodeVPS();
274  Void      xDecodeSPS();
[1212]275#if CGS_3D_ASYMLUT
[1145]276  Void      xDecodePPS( TCom3DAsymLUT * pc3DAsymLUT );
277#else
278  Void      xDecodePPS();
[713]279#endif
[313]280  Void      xDecodeSEI( TComInputBitstream* bs, const NalUnitType nalUnitType );
281
[1131]282#if SVC_EXTENSION
[540]283#if NO_CLRAS_OUTPUT_FLAG
284  Int  getNoClrasOutputFlag()                { return m_noClrasOutputFlag;}
285  Void setNoClrasOutputFlag(Bool x)          { m_noClrasOutputFlag = x;   }
286  Int  getLayerInitializedFlag()             { return m_layerInitializedFlag;}
287  Void setLayerInitializedFlag(Bool x)       { m_layerInitializedFlag = x;   }
288  Int  getFirstPicInLayerDecodedFlag()       { return m_firstPicInLayerDecodedFlag;}
289  Void setFirstPicInLayerDecodedFlag(Bool x) { m_firstPicInLayerDecodedFlag = x;   }
290#endif
[1212]291#if CGS_3D_ASYMLUT
[713]292  Void initAsymLut(TComSlice *pcSlice);
[644]293#endif
[851]294  Void resetPocRestrictionCheckParameters();
[978]295  Void xCheckLayerReset();
296  Void xSetNoRaslOutputFlag();
297  Void xSetLayerInitializedFlag();
298#endif
[313]299};// END CLASS DEFINITION TDecTop
300
301
302//! \}
303
304#endif // __TDECTOP__
305
Note: See TracBrowser for help on using the repository browser.