?? mbdata.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.
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_MBDATA_H__6F1A2BEC_47BC_4944_BE36_C0E96ED39557__INCLUDED_)
#define AFX_MBDATA_H__6F1A2BEC_47BC_4944_BE36_C0E96ED39557__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "H264AVCCommonLib/Mv.h"
#include "H264AVCCommonLib/MbMvData.h"
#include "H264AVCCommonLib/MbTransformCoeffs.h"
#include "H264AVCCommonLib/MbDataStruct.h"
#if JMVM_ONLY // JVT-U052
#include "H264AVCCommonLib/IlluminationCompensation.h"
#endif
H264AVC_NAMESPACE_BEGIN
#if JMVM_ONLY//JVT-Z021
class H264AVCCOMMONLIB_API MbImsm
{
public:
Int m_iListXFlag;
Mv m_cOffset;
Void clear(void)
{
m_iListXFlag = LIST_0;
m_cOffset.setZero();
}
Void copyFrom(MbImsm cMbImsm)
{
m_iListXFlag = cMbImsm.m_iListXFlag;
m_cOffset.set(cMbImsm.m_cOffset.getHor(),cMbImsm.m_cOffset.getVer());
}
MbImsm()
{
clear();
}
~MbImsm()
{
}
};
#endif //JVT-Z021
class H264AVCCOMMONLIB_API MbData :
public MbDataStruct
{
public:
MbData()
: m_pcMbTCoeffs ( 0 )
, m_bHasMotionRefinement( false )
{
m_apcMbMvdData [ LIST_0 ] = NULL;
m_apcMbMvdData [ LIST_1 ] = NULL;
m_apcMbMotionData[ LIST_0 ] = NULL;
m_apcMbMotionData[ LIST_1 ] = NULL;
#if JMVM_ONLY // JVT-U052
m_pcMbIcp = NULL;
m_bIcOn = false;
#endif
#if JMVM_ONLY//JVT-Z021
m_pcMbImsm = NULL;
#endif //JVT-Z021
}
~MbData()
{
}
Void init( MbTransformCoeffs* pcMbTCoeffs,
MbMvData* pcMbMvdDataList1,
MbMotionData* pcMbMotionDataList0,
MbMotionData* pcMbMotionDataList1,
#if JMVM_ONLY
MbIcp* pcMbIcp, // JVT-U052
MbImsm* pcMbImsm, //JVT-Z021
#endif
MbMotionData* pcMbMotionDataBaseList0 = NULL,
MbMotionData* pcMbMotionDataBaseList1 = NULL)
{
AOT( m_bHasMotionRefinement );
m_pcMbTCoeffs = pcMbTCoeffs;
m_apcMbMvdData[0] = pcMbMvdDataList0;
m_apcMbMvdData[1] = pcMbMvdDataList1;
m_apcMbMotionData[0] = pcMbMotionDataList0;
m_apcMbMotionData[1] = pcMbMotionDataList1;
m_apcMbMotionDataBase[0] = pcMbMotionDataBaseList0;
m_apcMbMotionDataBase[1] = pcMbMotionDataBaseList1;
#if JMVM_ONLY
m_pcMbIcp = pcMbIcp; // JVT-U052
m_pcMbImsm = pcMbImsm; //JVT-Z021
#endif
}
public:
MbTransformCoeffs& getMbTCoeffs () { return *m_pcMbTCoeffs; }
MbMvData& getMbMvdData ( ListIdx eListIdx ) { return *m_apcMbMvdData [ eListIdx ]; }
MbMotionData& getMbMotionData ( ListIdx eListIdx ) { return *m_apcMbMotionData[ eListIdx ]; }
const MbTransformCoeffs& getMbTCoeffs () const { return *m_pcMbTCoeffs; }
const MbMvData& getMbMvdData ( ListIdx eListIdx ) const { return *m_apcMbMvdData [ eListIdx ]; }
const MbMotionData& getMbMotionData ( ListIdx eListIdx ) const { return *m_apcMbMotionData[ eListIdx ]; }
MbMotionData& getMbMotionDataBase ( ListIdx eListIdx ) { return m_bHasMotionRefinement ? *m_apcMbMotionDataBase[eListIdx] : *m_apcMbMotionData[ eListIdx ]; }
const MbMotionData& getMbMotionDataBase ( ListIdx eListIdx ) const { return m_bHasMotionRefinement ? *m_apcMbMotionDataBase[eListIdx] : *m_apcMbMotionData[ eListIdx ]; }
Void switchMotionRefinement();
Void activateMotionRefinement();
Void deactivateMotionRefinement() { m_bHasMotionRefinement = false; }
operator MbTransformCoeffs& () { return *m_pcMbTCoeffs; }
ErrVal loadAll( FILE* pFile );
ErrVal saveAll( FILE* pFile );
ErrVal copyMotion ( MbData& rcMbData, UInt uiSliceId = MSYS_UINT_MAX );
ErrVal copyMotionBL ( MbData& rcMbData, Bool bDirect8x8, UInt uiSliceId = MSYS_UINT_MAX );
ErrVal upsampleMotion( MbData& rcMbData, Par8x8 ePar8x8, Bool bDirect8x8 );
// TMM_ESS {
ErrVal upsampleMotionESS( MbData* pcBaseMbData,
const UInt uiBaseMbStride,
const Int aiPelOrig[2],
const Bool bDirect8x8,
ResizeParameters* pcParameters);
ErrVal noUpsampleMotion();
// TMM_ESS }
//JVT-T054{
ErrVal copyMbCbp( MbData& rcMbData );
ErrVal initMbCbp();
//JVT-T054}
#if JMVM_ONLY // JVT-U052
const MbIcp& getMbIcp () const { return *m_pcMbIcp; };
MbIcp& getMbIcp () { return *m_pcMbIcp; };
Bool getIcOn () const { return m_bIcOn; };
Void setIcOn ( Bool bIcOn ){ m_bIcOn = bIcOn; };
#endif
#if JMVM_ONLY //JVT-Z021
MbImsm* m_pcMbImsm;
#endif //JVT-Z021
protected:
MbTransformCoeffs* m_pcMbTCoeffs;
MbMvData* m_apcMbMvdData[2];
MbMotionData* m_apcMbMotionData[2];
BlkMode m_aBlkModeBase[4];
MbMotionData* m_apcMbMotionDataBase[2];
Bool m_bHasMotionRefinement;
static const UChar m_aucPredictor [2][4];
static const Char aaacGetPartInfo [7][4][16];
MbData* m_apcMbData [4];
SChar m_ascBl4x4RefIdx[2][16];// ref index of list_0/1 for each 4x4 blk
Mv m_acBl4x4Mv [2][16];// motion vectors of list_0/1 for each 4x4 blk
#if JMVM_ONLY // JVT-U052
MbIcp* m_pcMbIcp;
bool m_bIcOn;
#endif
ErrVal xInitESS ( );
ErrVal xFillBaseMbData( MbData* pcBaseMbData,
const UInt uiBaseMbStride,
const Int aiPelOrig[2],
const Bool bDirect8x8,
ResizeParameters* pcParameters,
MbMode aeMbMode [4],
BlkMode aeBlkMode[4][4],
UInt& uiMbBaseOrigX,
UInt& uiMbBaseOrigY);
ErrVal xBuildPartInfo( const Int aiPelOrig[2],
ResizeParameters* pcParameters,
const MbMode aeMbMode[4],
const BlkMode aeBlkMode[4][4],
UInt aui4x4Idx[4][4],
UInt auiMbIdx [4][4],
Int aaiPartInfo[4][4],
Bool abBl8x8Intra[4],
const UInt uiMbBaseOrigX,
const UInt uiMbBaseOrigY );
ErrVal xInheritMbMotionData ( const Int aaiPartInfo[4][4] );
ErrVal xInherit8x8MotionData( const UInt aui4x4Idx [4][4],
const UInt auiMbIdx [4][4],
const Int aaiPartInfo[4][4]);
ErrVal xFillMbMvData ( ResizeParameters* pcParameters );
ErrVal xMergeBl8x8MvAndRef( const UInt uiBlIdx );
ErrVal xFillMvandRefBl4x4 ( const UInt uiBlIdx, const UChar* pucWhich, const UInt uiList, const SChar* psChosenRefIdx );
ErrVal xRemoveIntra8x8(const UInt uiBlIdx,
const Bool* abBl8x8Intra,
UInt aui4x4Idx[4][4],
UInt auiMbIdx[4][4],
Int aaiPartInfo[4][4]);
ErrVal xCopyBl8x8(const UInt uiBlIdx,
const UInt uiBlIdxCopy,
UInt aui4x4Idx[4][4],
UInt auiMbIdx[4][4],
Int aaiPartInfo[4][4]);
ErrVal xRemoveIntra4x4(const UInt uiBlIdx,
UInt aui4x4Idx[4],
UInt auiMbIdx[4],
Int aaiPartInfo[4]);
};
H264AVC_NAMESPACE_END
#endif // !defined(AFX_MBDATA_H__6F1A2BEC_47BC_4944_BE36_C0E96ED39557__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -