📄 gopdecoder.h
字号:
/*
********************************************************************************
NOTE - One of the two copyright statements below may be chosen
that applies for the software.
********************************************************************************
This software module was originally developed by
Heiko Schwarz (Fraunhofer HHI),
Tobias Hinz (Fraunhofer HHI),
Karsten Suehring (Fraunhofer HHI)
in the course of development of the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video
Coding) for reference purposes and its performance may not have been optimized.
This software module is an implementation of one or more tools as specified by
the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding).
Those intending to use this software module in products are advised that its
use may infringe existing patents. ISO/IEC have no liability for use of this
software module or modifications thereof.
Assurance that the originally developed software module can be used
(1) in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) once the
ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) has been adopted; and
(2) to develop the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding):
To the extent that Fraunhofer HHI owns patent rights that would be required to
make, use, or sell the originally developed software module or portions thereof
included in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) in a
conforming product, Fraunhofer HHI will assure the ISO/IEC that it is willing
to negotiate licenses under reasonable and non-discriminatory terms and
conditions with applicants throughout the world.
Fraunhofer HHI retains full right to modify and use the code for its own
purpose, assign or donate the code to a third party and to inhibit third
parties from using the code for products that do not conform to MPEG-related
ITU Recommendations and/or ISO/IEC International Standards.
This copyright notice must be included in all copies or derivative works.
Copyright (c) ISO/IEC 2005.
********************************************************************************
COPYRIGHT AND WARRANTY INFORMATION
Copyright 2005, International Telecommunications Union, Geneva
The Fraunhofer HHI hereby donate this source code to the ITU, with the following
understanding:
1. Fraunhofer HHI retain the right to do whatever they wish with the
contributed source code, without limit.
2. Fraunhofer HHI retain full patent rights (if any exist) in the technical
content of techniques and algorithms herein.
3. The ITU shall make this code available to anyone, free of license or
royalty fees.
DISCLAIMER OF WARRANTY
These software programs are available to the user without any license fee or
royalty on an "as is" basis. The ITU disclaims any and all warranties, whether
express, implied, or statutory, including any implied warranties of
merchantability or of fitness for a particular purpose. In no event shall the
contributor or the ITU be liable for any incidental, punitive, or consequential
damages of any kind whatsoever arising from the use of these programs.
This disclaimer of warranty extends to the user of these programs and user's
customers, employees, agents, transferees, successors, and assigns.
The ITU does not represent or warrant that the programs furnished hereunder are
free of infringement of any third-party patents. Commercial implementations of
ITU-T Recommendations, including shareware, may be subject to royalty fees to
patent holders. Information regarding the ITU-T patent policy is available from
the ITU Web site at http://www.itu.int.
THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.
********************************************************************************
*/
#if !defined(AFX_GOPDECODER_H__339878FC_BA98_4ABE_8530_E1676196576F__INCLUDED_)
#define AFX_GOPDECODER_H__339878FC_BA98_4ABE_8530_E1676196576F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "H264AVCCommonLib/MbDataCtrl.h"
#include "DownConvert.h"
// TMM_ESS
#include "ResizeParameters.h"
H264AVC_NAMESPACE_BEGIN
class H264AVCDecoder;
class SliceReader;
class SliceDecoder;
class FrameMng;
class PocCalculator;
class LoopFilter;
class HeaderSymbolReadIf;
class ParameterSetMng;
class NalUnitParser;
class ControlMngIf;
class MotionCompensation;
class IntFrame;
class RQFGSDecoder;
class ReconstructionBypass;
class YuvBufferCtrl;
class H264AVCDECODERLIB_API DPBUnit
{
protected:
DPBUnit ();
virtual ~DPBUnit ();
public:
static ErrVal create ( DPBUnit*& rpcDPBUnit,
YuvBufferCtrl& rcYuvBufferCtrl,
const SequenceParameterSet& rcSPS );
ErrVal destroy ();
ErrVal init ( Int iPoc,
UInt uiFrameNum,
UInt uiTemporalLevel,
Bool bKeyPicture,
Bool bNeededForReference,
Bool bConstrainedIPred,
UInt uiQualityLevel); //JVT-T054
ErrVal initNonEx ( Int iPoc,
UInt uiFrameNum );
ErrVal initBase ( DPBUnit& rcDPBUnit,
IntFrame* pcFrameBaseRep );
ErrVal uninit ();
ErrVal markNonRef ();
ErrVal markOutputted ();
Int getPoc () const { return m_iPoc; }
UInt getFrameNum () const { return m_uiFrameNum; }
UInt getTLevel () const { return m_uiTemporalLevel; }
Bool isKeyPic () const { return m_bKeyPicture; }
Bool isExisting () const { return m_bExisting; }
Bool isNeededForRef() const { return m_bNeededForReference; }
Bool isOutputted () const { return m_bOutputted; }
Bool isBaseRep () const { return m_bBaseRepresentation; }
Bool isConstrIPred () const { return m_bConstrainedIntraPred; }
IntFrame* getFrame () { return m_pcFrame; }
ControlData& getCtrlData () { return m_cControlData; }
Int getPicNum ( UInt uiCurrFrameNum,
UInt uiMaxFrameNum ) const
{
if( m_uiFrameNum > uiCurrFrameNum )
{
return (Int)m_uiFrameNum - (Int)uiMaxFrameNum;
}
return (Int)m_uiFrameNum;
}
//JVT-T054{
UInt getQualityLevel() const { return m_uiQualityLevel;}
Void setMbDataCtrl(MbDataCtrl* pcMbDataCtrl) { m_cControlData.setMbDataCtrl(pcMbDataCtrl);}
//JVT-T054}
private:
Int m_iPoc;
UInt m_uiFrameNum;
UInt m_uiTemporalLevel;
Bool m_bKeyPicture;
Bool m_bExisting;
Bool m_bNeededForReference;
Bool m_bOutputted;
Bool m_bBaseRepresentation;
IntFrame* m_pcFrame;
ControlData m_cControlData;
Bool m_bConstrainedIntraPred;
UInt m_uiQualityLevel; //JVT-T054
};
typedef MyList<DPBUnit*> DPBUnitList;
/* HS: This is a very first implementation of the DPB. It shall
be extended in future in way that it performs exactly the
same operations as the DPB in standard AVC (including
MMCO and RPLR commands). Currently, it simulates the
operations of the previous JSVM software version.
Furthermore, it is probably necessary that a single DPB is
used for all "layers" (same dependency_id). With the
current implementation, a DPB per "layer" is used.
*/
class H264AVCDECODERLIB_API DecodedPicBuffer
{
protected:
DecodedPicBuffer ();
virtual ~DecodedPicBuffer ();
public:
static ErrVal create ( DecodedPicBuffer*& rpcDecodedPicBuffer );
ErrVal destroy ();
ErrVal init ( YuvBufferCtrl* pcFullPelBufferCtrl,
UInt uiLayer ); // just for dump output
ErrVal initSPS ( const SequenceParameterSet& rcSPS );
ErrVal uninit ();
ErrVal initCurrDPBUnit ( DPBUnit*& rpcCurrDPBUnit,
SliceHeader* pcSliceHeader,
PicBufferList& rcOutputList,
PicBufferList& rcUnusedList,
Bool bRef = false); //JVT-T054
DPBUnit* getLastUnit ();
DPBUnit* getDPBUnit ( Int iPoc );
ErrVal setPrdRefLists ( DPBUnit* pcCurrDPBUnit );
//TMM_EC {{
ErrVal getPrdRefListsFromBase( DPBUnit* pcCurrDPBUnit, SliceHeader* pBaseMbDataCtrl );
//TMM_EC }}
ErrVal store ( DPBUnit*& rpcDPBUnit,
PicBufferList& rcOutputList,
PicBufferList& rcUnusedList,
IntFrame* pcFrameBaseRep = NULL,
UInt uiQualityLevel = 0,
Bool bRef = false); //JVT-T054
ErrVal update ( DPBUnit* pcDPBUnit );
ErrVal clear ( PicBufferList& rcOutputList,
PicBufferList& rcUnusedList,
Int& riMaxPoc );
ErrVal xSlidingWindowBase ( UInt mCurrFrameNum ); //JVT-S036 lsj
ErrVal xMMCOBase ( SliceHeader* pcSliceHeader, UInt mCurrFrameNum );//JVT-S036 lsj
//JVT-T054{
ErrVal CreateDPBUnit(DPBUnit *pcDPBUnit, const SequenceParameterSet& rcSPS );
Void setCurrDPBUnit(DPBUnit * pcDPBUnit) { m_pcCurrDPBUnit = pcDPBUnit;}
//JVT-T054}
DPBUnit* getCurrDPBUnit(){return m_pcCurrDPBUnit;};
ErrVal initPicBuffer(PicBuffer*& rpcPicBuffer);
ErrVal initPicCurrDPBUnit( PicBuffer*& rpcPicBuffer,
Bool bRef = false); //JVT-T054
protected:
ErrVal xCreateData ( UInt uiMaxPicsInDPB,
const SequenceParameterSet& rcSPS );
ErrVal xDeleteData ();
ErrVal xClearBuffer (); // remove non-ref frames that are not output pictures
ErrVal xUpdateMemory ( SliceHeader* pcSliceHeader );
ErrVal xSlidingWindow ();
ErrVal xMMCO ( SliceHeader* pcSliceHeader );
ErrVal xMarkShortTermUnusedBase( UInt mCurrFrameNum,
UInt uiDiffOfPicNums );//JVT-S036 lsj
ErrVal xMarkShortTermUnused( DPBUnit* pcCurrentDPBUnit,
UInt uiDiffOfPicNums );
ErrVal xOutput ( PicBufferList& rcOutputList,
PicBufferList& rcUnusedList );
ErrVal xClearOutputAll ( PicBufferList& rcOutputList,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -