📄 yuvbufferctrl.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_YUVBUFFERCTRL_H__CF27CE5A_C6CC_4DA0_9AE0_698B326B8C03__INCLUDED_)
#define AFX_YUVBUFFERCTRL_H__CF27CE5A_C6CC_4DA0_9AE0_698B326B8C03__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
H264AVC_NAMESPACE_BEGIN
class H264AVCCOMMONLIB_API YuvBufferCtrl
{
public:
class H264AVCCOMMONLIB_API YuvBufferParameter
{
public:
YuvBufferParameter() {}
const UInt getMbLum() const { return m_uiLumOffset; }
const UInt getMbCb() const { return m_uiCbOffset; }
const UInt getMbCr() const { return m_uiCrOffset; }
const Int getStride() const { return m_iStride; }
const Int getHeight() const { return m_iHeight; }
const Int getWidth() const { return m_iWidth; }
const UInt getYBlk( LumaIdx cIdx ) const { return m_uiLumOffset + ((cIdx.y() * m_iStride + cIdx.x())<<(2 + m_iResolution)); }
const UInt getUBlk( LumaIdx cIdx ) const { return m_uiCbOffset + ((cIdx.y() * m_iStride + (cIdx.x()<<1)) << m_iResolution); }
const UInt getVBlk( LumaIdx cIdx ) const { return m_uiCrOffset + ((cIdx.y() * m_iStride + (cIdx.x()<<1)) << m_iResolution); }
UInt m_uiLumOffset;
UInt m_uiCbOffset;
UInt m_uiCrOffset;
Int m_iStride;
Int m_iResolution;
Int m_iHeight;
Int m_iWidth;
};
protected:
YuvBufferCtrl();
virtual ~YuvBufferCtrl();
public:
static ErrVal create( YuvBufferCtrl*& rpcYuvBufferCtrl );
ErrVal destroy();
const YuvBufferParameter& getBufferParameter( PicType ePicType=FRAME ) const { return m_acBufferParam[ePicType]; }
ErrVal initMb( UInt uiMbY, UInt uiMbX, Bool bMbAff );
ErrVal initMb() { return initMb( 0, 0, false ); }
UInt getMbLum( PicType ePicType, UInt uiMbY, UInt uiMbX, Bool bMbAff ) const
{
UInt uiXPos = (uiMbX<<4) << m_iResolution;
UInt uiYPos = (uiMbY<<4) << m_iResolution;
if( ePicType == FRAME )
{
return m_uiLumBaseOffset + uiXPos + uiYPos * m_acBufferParam[FRAME].m_iStride;
}
if( bMbAff )
{
uiMbY >>= 1;
}
UInt uiYPosFld = (uiMbY<<4) << m_iResolution;
UInt uiTopOff = m_uiLumBaseOffset + uiXPos + uiYPosFld * m_acBufferParam[FRAME].m_iStride * 2;
if( ePicType == TOP_FIELD )
{
return uiTopOff;
}
AOF( ePicType == BOT_FIELD );
return uiTopOff + m_acBufferParam[FRAME].m_iStride;
}
UInt getMbCb( PicType ePicType, UInt uiMbY, UInt uiMbX, Bool bMbAff ) const
{
UInt uiXPos = (uiMbX<<3) << m_iResolution;
UInt uiYPos = (uiMbY<<3) << m_iResolution;
if( ePicType == FRAME )
{
return m_uiCbBaseOffset + uiXPos + uiYPos * m_acBufferParam[FRAME].m_iStride / 2;
}
if( bMbAff )
{
uiMbY >>= 1;
}
UInt uiYPosFld = (uiMbY<<3) << m_iResolution;
UInt uiTopOff = m_uiCbBaseOffset + uiXPos + uiYPosFld * m_acBufferParam[FRAME].m_iStride;
if( ePicType == TOP_FIELD )
{
return uiTopOff;
}
AOF( ePicType == BOT_FIELD );
return uiTopOff + m_acBufferParam[FRAME].m_iStride / 2;
}
UInt getMbCr( PicType ePicType, UInt uiMbY, UInt uiMbX, Bool bMbAff ) const
{
UInt uiXPos = (uiMbX<<3) << m_iResolution;
UInt uiYPos = (uiMbY<<3) << m_iResolution;
if( ePicType == FRAME )
{
return m_uiCbBaseOffset + uiXPos + uiYPos * m_acBufferParam[FRAME].m_iStride / 2 + m_uiChromaSize;
}
if( bMbAff )
{
uiMbY >>= 1;
}
UInt uiYPosFld = (uiMbY<<3) << m_iResolution;
UInt uiTopOff = m_uiCbBaseOffset + uiXPos + uiYPosFld * m_acBufferParam[FRAME].m_iStride + m_uiChromaSize;
if( ePicType == TOP_FIELD )
{
return uiTopOff;
}
AOF( ePicType == BOT_FIELD );
return uiTopOff + m_acBufferParam[FRAME].m_iStride / 2;
}
ErrVal initSlice( UInt uiYFrameSize, UInt uiXFrameSize, UInt uiYMarginSize = 0, UInt uiXMarginSize = 0, UInt uiResolution = 0 );
ErrVal initSPS( UInt uiYFrameSize, UInt uiXFrameSize, UInt uiYMarginSize = 0, UInt uiXMarginSize = 0, UInt uiResolution = 0 );
ErrVal uninit();
Bool isInitDone() { return m_bInitDone; }
ErrVal getChromaSize( UInt& ruiChromaSize );
const Int getXMargin() const { return m_uiXMargin; }
const Int getYMargin() const { return m_uiYMargin; }
UInt getLumOrigin ( PicType ePicType ) const { return m_uiLumBaseOffset + (( ePicType == BOT_FIELD) ? m_acBufferParam[FRAME].m_iStride : 0); }
UInt getCbOrigin ( PicType ePicType ) const { return m_uiCbBaseOffset + (( ePicType == BOT_FIELD) ? m_acBufferParam[FRAME].m_iStride/2 : 0); }
UInt getCrOrigin ( PicType ePicType ) const { return m_uiCbBaseOffset
+ m_uiChromaSize + (( ePicType == BOT_FIELD) ? m_acBufferParam[FRAME].m_iStride/2 : 0); }
protected:
YuvBufferParameter m_acBufferParam[ MAX_FRAME_TYPE ];
UInt m_uiLumBaseOffset;
UInt m_uiCbBaseOffset;
UInt m_uiChromaSize;
Int m_iResolution;
UInt m_uiXMargin;
UInt m_uiYMargin;
Bool m_bInitDone;
};
H264AVC_NAMESPACE_END
#endif // !defined(AFX_YUVBUFFERCTRL_H__CF27CE5A_C6CC_4DA0_9AE0_698B326B8C03__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -