/** \file TDecTop.h \brief decoder class (header) */ #ifndef __TDECTOP__ #define __TDECTOP__ #include "../TLibCommon/CommonDef.h" #include "../TLibCommon/TComList.h" #include "../TLibCommon/TComPicYuv.h" #include "../TLibCommon/TComPic.h" #include "../TLibCommon/TComTrQuant.h" #include "../TLibCommon/TComDepthMapGenerator.h" #include "../TLibCommon/TComResidualGenerator.h" #include "../TLibCommon/SEI.h" #include "TDecGop.h" #include "TDecEntropy.h" #include "TDecSbac.h" #include "TDecCAVLC.h" // ==================================================================================================================== // Class definition // ==================================================================================================================== class TAppDecTop ; class CamParsCollector { public: CamParsCollector (); ~CamParsCollector (); Void init ( FILE* pCodedScaleOffsetFile ); Void uninit (); Void setSlice ( TComSlice* pcSlice ); private: Bool xIsComplete (); Void xOutput ( Int iPOC ); private: Bool m_bInitialized; FILE* m_pCodedScaleOffsetFile; Int** m_aaiCodedOffset; Int** m_aaiCodedScale; Int* m_aiViewOrderIndex; Int* m_aiViewReceived; UInt m_uiCamParsCodedPrecision; Bool m_bCamParsVaryOverTime; Int m_iLastViewId; Int m_iLastPOC; UInt m_uiMaxViewId; }; /// decoder class class TDecTop { private: Int m_iGopSize; Bool m_bGopSizeSet; int m_iMaxRefPicNum; #if DCM_DECODING_REFRESH Bool m_bRefreshPending; ///< refresh pending flag UInt m_uiPOCCDR; ///< temporal reference of the CDR picture #if DCM_SKIP_DECODING_FRAMES UInt m_uiPOCRA; ///< temporal reference of the random access point #endif #endif UInt m_uiValidPS; TComList m_cListPic; // Dynamic buffer TComSPS m_cSPS; TComPPS m_cPPS; TComSlice* m_apcSlicePilot; SEImessages *m_SEIs; ///< "all" SEI messages. If not NULL, we own the object. // functional classes TComPrediction m_cPrediction; TComTrQuant m_cTrQuant; TDecGop m_cGopDecoder; TDecSlice m_cSliceDecoder; TDecCu m_cCuDecoder; TDecEntropy m_cEntropyDecoder; TDecCavlc m_cCavlcDecoder; TDecSbac m_cSbacDecoder; TDecBinCABAC m_cBinCABAC; TComLoopFilter m_cLoopFilter; TComAdaptiveLoopFilter m_cAdaptiveLoopFilter; #if MTK_SAO TComSampleAdaptiveOffset m_cSAO; #endif TComDepthMapGenerator m_cDepthMapGenerator; TComResidualGenerator m_cResidualGenerator; Bool m_bIsDepth; Int m_iViewIdx; TAppDecTop* m_pcTAppDecTop; CamParsCollector* m_pcCamParsCollector; #if DCM_SKIP_DECODING_FRAMES Bool isRandomAccessSkipPicture(Int& iSkipFrame, Int& iPOCLastDisplay); #endif TComPic* m_pcPic; UInt m_uiSliceIdx; UInt m_uiLastSliceIdx; UInt m_uiPrevPOC; Bool m_bFirstSliceInPicture; Bool m_bFirstSliceInSequence; public: TDecTop(); virtual ~TDecTop(); Void create (); Void destroy (); void setPictureDigestEnabled(bool enabled) { m_cGopDecoder.setPictureDigestEnabled(enabled); } Void init( TAppDecTop* pcTAppDecTop, Bool bFirstInstance = true ); #if DCM_SKIP_DECODING_FRAMES Bool decode (Bool bEos, TComBitstream* pcBitstream, UInt& ruiPOC, TComList*& rpcListPic, NalUnitType& reNalUnitType, TComSPS& cComSPS, Int& iSkipFrame, Int& iPOCLastDisplay); #else Void decode ( Bool bEos, TComBitstream* pcBitstream, UInt& ruiPOC, TComList*& rpcListPic, NalUnitType& reNalUnitType, TComSPS& cComSPS ); #endif TComSPS *getSPS() { return (m_uiValidPS & 1) ? &m_cSPS : NULL; } Void deletePicBuffer(); Void deleteExtraPicBuffers( Int iPoc ); #if AMVP_BUFFERCOMPRESS Void compressMotion ( Int iPoc ); #endif Void setViewIdx(Int i) { m_iViewIdx = i ;} Int getViewIdx() { return m_iViewIdx ; } Void setToDepth(Bool b) { m_bIsDepth = b ;} Bool getIsDepth() { return m_bIsDepth ;} Void setCamParsCollector( CamParsCollector* pcCamParsCollector ) { m_pcCamParsCollector = pcCamParsCollector; } // SB TComList* getListPic () { return &m_cListPic; } TAppDecTop* getDecTop ( ){ return m_pcTAppDecTop ;}; Void setSPS (TComSPS cSPS ); UInt getCodedPictureBufferSize() { return m_cSPS.getCodedPictureBufferSize() ; } Void executeDeblockAndAlf(Bool bEos, TComBitstream* pcBitstream, UInt& ruiPOC, TComList*& rpcListPic, Int& iSkipFrame, Int& iPOCLastDisplay); protected: Void xGetNewPicBuffer (TComSlice* pcSlice, TComPic*& rpcPic); };// END CLASS DEFINITION TDecTop #endif // __TDECTOP__