📄 mbdecoder.cpp
字号:
/*
********************************************************************************
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.
********************************************************************************
*/
#include "H264AVCDecoderLib.h"
#include "H264AVCCommonLib/Tables.h"
#include "H264AVCCommonLib/Transform.h"
#include "H264AVCCommonLib/IntraPrediction.h"
#include "H264AVCCommonLib/MotionCompensation.h"
#include "H264AVCCommonLib/FrameMng.h"
#include "MbDecoder.h"
H264AVC_NAMESPACE_BEGIN
MbDecoder::MbDecoder():
m_pcTransform( NULL ),
m_pcIntraPrediction( NULL ),
m_pcMotionCompensation( NULL ),
m_pcFrameMng( NULL ),
m_bInitDone( false )
{
}
MbDecoder::~MbDecoder()
{
}
ErrVal MbDecoder::create( MbDecoder*& rpcMbDecoder )
{
rpcMbDecoder = new MbDecoder;
ROT( NULL == rpcMbDecoder );
return Err::m_nOK;
}
ErrVal MbDecoder::destroy()
{
delete this;
return Err::m_nOK;
}
ErrVal MbDecoder::init( Transform* pcTransform,
IntraPrediction* pcIntraPrediction,
MotionCompensation* pcMotionCompensation,
FrameMng* pcFrameMng )
{
ROT( NULL == pcTransform );
ROT( NULL == pcIntraPrediction );
ROT( NULL == pcMotionCompensation );
ROT( NULL == pcFrameMng );
m_pcFrameMng = pcFrameMng;
m_pcTransform = pcTransform;
m_pcIntraPrediction = pcIntraPrediction;
m_pcMotionCompensation = pcMotionCompensation;
m_bInitDone = true;
return Err::m_nOK;
}
ErrVal MbDecoder::uninit()
{
m_pcTransform = NULL;
m_pcIntraPrediction = NULL;
m_pcMotionCompensation = NULL;
m_bInitDone = false;
return Err::m_nOK;
}
ErrVal
MbDecoder::xPredictionFromBaseLayer( MbDataAccess& rcMbDataAccess,
MbDataAccess* pcMbDataAccessBase )
{
MbData& rcMbData = rcMbDataAccess.getMbData();
if( rcMbData.getBLSkipFlag() )
{
ROF( pcMbDataAccessBase );
Bool bBLSkipFlag = rcMbData.getBLSkipFlag();
rcMbData.copyMotion( pcMbDataAccessBase->getMbData() );
rcMbData.setBLSkipFlag( bBLSkipFlag );
if( rcMbData.isIntra() )
{
rcMbData.setMbMode( INTRA_BL );
}
}
else
{
for( ListIdx eListIdx = LIST_0; eListIdx <= LIST_1; eListIdx = ListIdx( eListIdx + 1 ) )
{
MbMotionData& rcMbMotionData = rcMbData.getMbMotionData( eListIdx );
switch( rcMbData.getMbMode() )
{
case MODE_16x16:
{
if( rcMbData.isBlockFwdBwd( B_8x8_0, eListIdx ) && rcMbMotionData.getMotPredFlag() )
{
rcMbMotionData.setRefIdx( pcMbDataAccessBase->getMbMotionData( eListIdx ).getRefIdx() );
}
}
break;
case MODE_16x8:
{
if( rcMbData.isBlockFwdBwd( B_8x8_0, eListIdx ) && rcMbMotionData.getMotPredFlag( PART_16x8_0 ) )
{
rcMbMotionData.setRefIdx( pcMbDataAccessBase->getMbMotionData( eListIdx ).getRefIdx( PART_16x8_0 ), PART_16x8_0 );
}
if( rcMbData.isBlockFwdBwd( B_8x8_2, eListIdx ) && rcMbMotionData.getMotPredFlag( PART_16x8_1 ) )
{
rcMbMotionData.setRefIdx( pcMbDataAccessBase->getMbMotionData( eListIdx ).getRefIdx( PART_16x8_1 ), PART_16x8_1 );
}
}
break;
case MODE_8x16:
{
if( rcMbData.isBlockFwdBwd( B_8x8_0, eListIdx ) && rcMbMotionData.getMotPredFlag( PART_8x16_0 ) )
{
rcMbMotionData.setRefIdx( pcMbDataAccessBase->getMbMotionData( eListIdx ).getRefIdx( PART_8x16_0 ), PART_8x16_0 );
}
if( rcMbData.isBlockFwdBwd( B_8x8_1, eListIdx ) && rcMbMotionData.getMotPredFlag( PART_8x16_1 ) )
{
rcMbMotionData.setRefIdx( pcMbDataAccessBase->getMbMotionData( eListIdx ).getRefIdx( PART_8x16_1 ), PART_8x16_1 );
}
}
break;
case MODE_8x8:
case MODE_8x8ref0:
{
for( B8x8Idx c8x8Idx; c8x8Idx.isLegal(); c8x8Idx++ )
{
if( rcMbData.getBlkMode( c8x8Idx.b8x8Index() ) != BLK_SKIP &&
rcMbData.isBlockFwdBwd( c8x8Idx.b8x8Index(), eListIdx ) && rcMbMotionData.getMotPredFlag( c8x8Idx.b8x8() ) )
{
rcMbMotionData.setRefIdx( pcMbDataAccessBase->getMbMotionData( eListIdx ).getRefIdx( c8x8Idx.b8x8() ), c8x8Idx.b8x8() );
}
}
}
break;
default:
break;
}
}
}
return Err::m_nOK;
}
ErrVal
MbDecoder::decode( MbDataAccess& rcMbDataAccess,
MbDataAccess* pcMbDataAccessBase,
IntFrame* pcFrame,
IntFrame* pcResidual,
IntFrame* pcPredSignal,
IntFrame* pcBaseLayer,
IntFrame* pcBaseLayerResidual,
RefFrameList* pcRefFrameList0,
RefFrameList* pcRefFrameList1,
Bool bReconstructAll )
{
ROF( m_bInitDone );
RNOK( xPredictionFromBaseLayer( rcMbDataAccess, pcMbDataAccessBase ) );
IntYuvMbBuffer cPredBuffer; cPredBuffer.setAllSamplesToZero();
//===== scale coefficients =====
RNOK( xScaleTCoeffs( rcMbDataAccess ) );
if( rcMbDataAccess.getMbData().isIntra() )
{
//===== clear residual signal for intra macroblocks =====
if( pcResidual )
{
IntYuvMbBuffer cYuvMbBuffer; cYuvMbBuffer.setAllSamplesToZero();
RNOK( pcResidual->getFullPelYuvBuffer()->loadBuffer( &cYuvMbBuffer ) );
}
if( rcMbDataAccess.getMbData().isPCM() )
{
//===== I_PCM mode =====
RNOK( xDecodeMbPCM( rcMbDataAccess, pcFrame->getFullPelYuvBuffer() ) );
cPredBuffer.loadBuffer( pcFrame->getFullPelYuvBuffer() );
}
else if( rcMbDataAccess.getMbData().getMbMode() == INTRA_BL )
{
//===== I_BL mode =====
RNOK( xDecodeMbIntraBL( rcMbDataAccess, pcFrame->getFullPelYuvBuffer(),
cPredBuffer, pcBaseLayer->getFullPelYuvBuffer() ) );
}
else
{
m_pcIntraPrediction->setAvailableMaskMb( rcMbDataAccess.getAvailableMask() );
IntYuvMbBuffer cRecBuffer; cRecBuffer.loadIntraPredictors( pcFrame->getFullPelYuvBuffer() );
if( rcMbDataAccess.getMbData().isIntra16x16() )
{
//===== I_16x16 mode ====
RNOK( xDecodeMbIntra16x16( rcMbDataAccess, cRecBuffer, cPredBuffer ) );
}
else if( rcMbDataAccess.getMbData().isTransformSize8x8() )
{
//===== I_8x8 mode =====
RNOK( xDecodeMbIntra8x8( rcMbDataAccess, cRecBuffer, cPredBuffer ) );
}
else
{
//===== I_4x4 mode =====
RNOK( xDecodeMbIntra4x4( rcMbDataAccess, cRecBuffer, cPredBuffer ) );
}
RNOK( pcFrame->getFullPelYuvBuffer()->loadBuffer( &cRecBuffer ) );
}
}
else
{
//===== motion-compensated modes =====
RNOK( xDecodeMbInter( rcMbDataAccess, pcMbDataAccessBase,
cPredBuffer, pcFrame->getFullPelYuvBuffer(),
pcResidual, pcBaseLayerResidual,
*pcRefFrameList0, *pcRefFrameList1, bReconstructAll ) );
}
//===== store prediction signal =====
if( pcPredSignal )
{
RNOK( pcPredSignal->getFullPelYuvBuffer()->loadBuffer( &cPredBuffer ) );
}
return Err::m_nOK;
}
ErrVal MbDecoder::compensatePrediction( MbDataAccess& rcMbDataAccess )
{
ROTRS( rcMbDataAccess.getMbData().isIntra(), Err::m_nOK );
IntYuvMbBuffer cIntYuvMbBuffer;
YuvMbBuffer cYuvMbBuffer;
RNOK( m_pcMotionCompensation->compensateMb( rcMbDataAccess, &cYuvMbBuffer, false, false ) );
cIntYuvMbBuffer.loadBuffer( &cYuvMbBuffer );
RNOK( m_pcFrameMng->getPredictionIntFrame()->getFullPelYuvBuffer()->loadBuffer( &cIntYuvMbBuffer ) );
return Err::m_nOK;
}
ErrVal MbDecoder::calcMv( MbDataAccess& rcMbDataAccess,
MbDataAccess* pcMbDataAccessBaseMotion )
{
if( rcMbDataAccess.getMbData().getBLSkipFlag() )
{
return Err::m_nOK;
}
if( rcMbDataAccess.getMbData().getMbMode() == INTRA_4X4 )
{
//----- intra prediction -----
rcMbDataAccess.getMbMotionData( LIST_0 ).setRefIdx( BLOCK_NOT_PREDICTED );
rcMbDataAccess.getMbMotionData( LIST_0 ).setAllMv ( Mv::ZeroMv() );
rcMbDataAccess.getMbMotionData( LIST_1 ).setRefIdx( BLOCK_NOT_PREDICTED );
rcMbDataAccess.getMbMotionData( LIST_1 ).setAllMv ( Mv::ZeroMv() );
}
else
{
if( rcMbDataAccess.getMbData().getMbMode() == MODE_8x8 || rcMbDataAccess.getMbData().getMbMode() == MODE_8x8ref0 )
{
for( B8x8Idx c8x8Idx; c8x8Idx.isLegal(); c8x8Idx++ )
{
//----- motion compensated prediction -----
RNOK( m_pcMotionCompensation->calcMvSubMb( c8x8Idx, rcMbDataAccess, pcMbDataAccessBaseMotion ) );
}
}
else
{
//----- motion compensated prediction -----
RNOK( m_pcMotionCompensation->calcMvMb( rcMbDataAccess, pcMbDataAccessBaseMotion ) );
}
}
return Err::m_nOK;
}
ErrVal MbDecoder::process( MbDataAccess& rcMbDataAccess,
Bool bReconstructAll
#if JMVM_ONLY // JVT-W081
, GDV* disparityL0
, GDV* disparityL1
#endif // JVT-W081
)
{
ROF( m_bInitDone );
RNOK( xScaleTCoeffs( rcMbDataAccess ) );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -