⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sequencestructure.cpp

📁 JMVM MPEG MVC/3DAV 测试平台 国际通用标准
💻 CPP
📖 第 1 页 / 共 4 页
字号:
/*
********************************************************************************

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 "H264AVCEncoderLib.h"
#include "H264AVCCommonLib.h"
#include "SequenceStructure.h"
#include <string>


H264AVC_NAMESPACE_BEGIN


//================================= Frame Spec : begin ===================================
FrameSpec::FrameSpec()
: m_bInit     ( false )
, m_pcMmcoBuf ( NULL )
{
  m_apcRplrBuf[LIST_0] = NULL;
  m_apcRplrBuf[LIST_1] = NULL;
  m_uiNumRefActive[LIST_0] =0;
  m_uiNumRefActive[LIST_1] =0;
}

FrameSpec::~FrameSpec()
{
  uninit();
}

Void
FrameSpec::uninit()
{
  m_bInit = false;
}
//ying {{
Void             
FrameSpec::copy( FrameSpec    cFrameSpec)
{
  m_bInit             = cFrameSpec.m_bInit ;
  m_uiContFrameNumber = cFrameSpec.m_uiContFrameNumber ;
  m_eSliceType        = cFrameSpec.m_eSliceType ;  
  m_eNalUnitType      = cFrameSpec.m_eNalUnitType ;
  m_eNalRefIdc        = cFrameSpec.m_eNalRefIdc ;
  m_bKeyPicture       = cFrameSpec.m_bKeyPicture ;
  m_bAnchor           = cFrameSpec.m_bAnchor;
  m_uiFramesSkipped   = cFrameSpec.m_uiFramesSkipped ;
  m_uiTemporalLayer   = cFrameSpec.m_uiTemporalLayer;
  m_pcMmcoBuf         = cFrameSpec.m_pcMmcoBuf; 
  m_apcRplrBuf[0]     = cFrameSpec.m_apcRplrBuf[0];
  m_apcRplrBuf[1]     = cFrameSpec.m_apcRplrBuf[1];
  m_uiNumRefActive[0] = cFrameSpec.m_uiNumRefActive[0];
  m_uiNumRefActive[1] = cFrameSpec.m_uiNumRefActive[1];
  m_bIDR              = cFrameSpec.m_bIDR;
  m_bAdaptiveRefPicBuf= cFrameSpec.m_bAdaptiveRefPicBuf;
  m_uiFrameNumber     = cFrameSpec.m_uiFrameNumber;
}

ErrVal
FrameSpec::init( UChar        ucType, UInt uiFrameNum, UInt uiFrameNumPoc, UInt uiTemporalLevel)
{
 Bool         bAnchor         =false ;
 UInt         uiFramesSkipped =false ; 
 Bool         bKeyPicture     =false ;
 Bool         bIDR            =false ;
 switch( ucType )
  {
  case 'A': //========== IDR picture ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE_IDR;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_HIGHEST;
      m_eSliceType    = I_SLICE;
      bAnchor         = true;
      bKeyPicture     = true; 
      bIDR            = true;
      
    }
    break;
  case 'I': //========== non-IDR Intra picture stored as reference ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_HIGH;
      m_eSliceType    = I_SLICE;
      bAnchor         = true;
      bKeyPicture     = true; 
    }
    break;
  case 'i': //========== non-IDR Intra picture not stored ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOWEST;
      m_eSliceType    = I_SLICE;
    }
    break;
  case 'P': //========== P picture stored as reference ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_HIGH;
      m_eSliceType    = P_SLICE;
      bAnchor         = false;
      bKeyPicture     = true; 
    }
    break;
  case 'p': //========== P picture not stored ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOWEST;
      m_eSliceType    = P_SLICE;
    }
    break;
  case 'B': //========== B picture stored as reference ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOW;
      m_eSliceType    = B_SLICE;
    }
    break;
  case 'b': //========== B picture not stored ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOWEST;
      m_eSliceType    = B_SLICE;
    }
    break;
 
  default:
    RERR(); 
    break;
  }

  //===== set remaining parameters =====
  m_bAnchor             = bAnchor;
  m_uiFramesSkipped     = uiFramesSkipped;
  m_bKeyPicture         = bKeyPicture;
  m_uiTemporalLayer     = uiTemporalLevel;
  m_uiContFrameNumber   = uiFrameNumPoc;
  m_uiFrameNumber       = uiFrameNum;
  m_pcMmcoBuf           = new MmcoBuffer;
  m_apcRplrBuf[LIST_0]  = new RplrBuffer;
  m_apcRplrBuf[LIST_1]  = new RplrBuffer;
  m_bInit               = true;
  m_bIDR                = bIDR;
  m_bAdaptiveRefPicBuf  = false;

  return Err::m_nOK;
}

ErrVal
FrameSpec::updateNumbers( UInt         uiFrameNumIn,            UInt uiFrameNumPocIn, UInt uiMaxFrameNum)
{
  m_uiContFrameNumber+= uiFrameNumPocIn;
  m_uiFrameNumber    += uiFrameNumIn;
  if (m_uiFrameNumber > uiMaxFrameNum) m_uiFrameNumber -=uiMaxFrameNum;
  // hold on for POC 
  return Err::m_nOK;
}

ErrVal           
FrameSpec::updateType( UInt         uiInterViewFwd,          UInt uiInterViewBwd)
{
  if(m_eSliceType == B_SLICE) return Err::m_nOK;
  if(uiInterViewBwd>0 ) {    m_eSliceType = B_SLICE; return Err::m_nOK;}
  if(uiInterViewFwd==0 && m_eSliceType == I_SLICE)    return Err::m_nOK;
  m_eSliceType = P_SLICE;
  return Err::m_nOK;
}

ErrVal
FrameSpec::updateAnchor( UInt         uiAnchorPeriod)
{
  m_bAnchor     = m_uiContFrameNumber % uiAnchorPeriod == 0 ? true : false;
  m_eSliceType  = m_bAnchor ? I_SLICE : P_SLICE;
  return Err::m_nOK;
}

// }}
ErrVal
FrameSpec::init( UChar        ucType,
                 UInt         uiFrameNum,
                 Bool         bAnchor,
                 UInt         uiFramesSkipped,
                 Bool         bKeyPicture,
                 UInt         uiLayer,
                 MmcoBuffer*  pcMmcoBuf,
                 RplrBuffer*  pcRplrBufL0,
                 RplrBuffer*  pcRplrBufL1 )
{
  //===== set slice_type, nal_unit_type, nal_ref_idc
  switch( ucType )
  {
  case 'A': //========== IDR picture ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE_IDR;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_HIGHEST;
      m_eSliceType    = I_SLICE;
    }
    break;
  case 'I': //========== non-IDR Intra picture stored as reference ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_HIGH;
      m_eSliceType    = I_SLICE;
    }
    break;
  case 'i': //========== non-IDR Intra picture not stored ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOWEST;
      m_eSliceType    = I_SLICE;
    }
    break;
  case 'P': //========== P picture stored as reference ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_HIGH;
      m_eSliceType    = P_SLICE;
    }
    break;
  case 'p': //========== P picture not stored ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOWEST;
      m_eSliceType    = P_SLICE;
    }
    break;
  case 'B': //========== B picture stored as reference ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOW;
      m_eSliceType    = B_SLICE;
    }
    break;
  case 'b': //========== B picture not stored ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOWEST;
      m_eSliceType    = B_SLICE;
    }
    break;
  case 'S': //========== skipped picture (not coded / not stored) ===========
    {
      m_eNalUnitType  = NAL_UNIT_CODED_SLICE;
      m_eNalRefIdc    = NAL_REF_IDC_PRIORITY_LOW;
      m_eSliceType    = SliceType   ( MSYS_UINT_MAX );
    }
    break;
  case 's': //========== skipped picture (not coded / not stored) ===========
    {
      m_eNalUnitType  = NalUnitType ( MSYS_UINT_MAX );
      m_eNalRefIdc    = NalRefIdc   ( MSYS_UINT_MAX );
      m_eSliceType    = SliceType   ( MSYS_UINT_MAX );
    }
    break;
  default:
    RERR(); 
    break;
  }

  //===== set remaining parameters =====
  m_bAnchor             = bAnchor;
  m_uiFramesSkipped     = uiFramesSkipped;
  m_bKeyPicture         = bKeyPicture;
  m_uiTemporalLayer     = uiLayer;
  m_uiContFrameNumber   = uiFrameNum;
  m_pcMmcoBuf           = pcMmcoBuf;
  m_apcRplrBuf[LIST_0]  = pcRplrBufL0;
  m_apcRplrBuf[LIST_1]  = pcRplrBufL1;
  m_bInit               = true;

  return Err::m_nOK;
}


Bool
FrameSpec::isInitialized() const
{
  return m_bInit;
}

UInt              
FrameSpec::getFrameNum      ()  const
{
  AOF_DBG( m_bInit );
  return m_uiFrameNumber;
}

UInt
FrameSpec::getContFrameNumber() const
{
  AOF_DBG( m_bInit );
  return m_uiContFrameNumber;
}

SliceType
FrameSpec::getSliceType() const
{
  AOF_DBG( m_bInit );
  return m_eSliceType;
}

NalUnitType
FrameSpec::getNalUnitType() const
{
  AOF_DBG( m_bInit );
  return m_eNalUnitType;
}

NalRefIdc
FrameSpec::getNalRefIdc() const
{
  AOF_DBG( m_bInit );
  return m_eNalRefIdc;
}

Bool
FrameSpec::isSkipped() const
{
  AOF_DBG( m_bInit );
  return m_eSliceType == MSYS_UINT_MAX;
}

Bool
FrameSpec::isKeyPicture() const
{
  AOF_DBG( m_bInit );
  return m_bKeyPicture;
}

Bool
FrameSpec::isAnchor() const
{
  AOF_DBG( m_bInit );
  return m_bAnchor;
}

UInt      
FrameSpec::getNumRefIdxActive ( ListIdx eLstIdx)  const
{
  AOF_DBG( m_bInit );
  return m_uiNumRefActive[eLstIdx];
}

UInt
FrameSpec::getFramesSkipped() const
{
  AOF_DBG( m_bInit );
  return m_uiFramesSkipped;
}

UInt
FrameSpec::getTemporalLayer() const
{
  AOF_DBG( m_bInit );
  return m_uiTemporalLayer;
}

const MmcoBuffer*
FrameSpec::getMmcoBuf() const
{
  AOF_DBG( m_bInit );
  return m_pcMmcoBuf;
} 

const RplrBuffer*
FrameSpec::getRplrBuf( ListIdx eLstIdx) const
{
  AOF_DBG( m_bInit );
  return m_apcRplrBuf[eLstIdx];
} 

//================================= Frame Spec : end ===================================





//================================= Frame Descriptor : begin ===================================
SequenceStructure::FrameDescriptor::FrameDescriptor()
: m_bInit       ( false )
, m_pcMmcoBuf   ( NULL )
{
  m_apcRplrBuf[0] = NULL;
  m_apcRplrBuf[1] = NULL;
}

SequenceStructure::FrameDescriptor::~FrameDescriptor()
{
  uninit();
}


Void
SequenceStructure::FrameDescriptor::uninit()
{
  delete m_pcMmcoBuf; 
  delete m_apcRplrBuf[LIST_0]; 
  delete m_apcRplrBuf[LIST_1]; 

  m_pcMmcoBuf          = NULL;
  m_apcRplrBuf[LIST_0] = NULL;
  m_apcRplrBuf[LIST_1] = NULL;
  m_bInit              = false;
}


ErrVal
SequenceStructure::FrameDescriptor::init( const String& rcString,
                                          UInt          uiLastAnchorFrameNumIncrement )
{
  //===== clear object =====
  uninit();

  //===== get partial strings =====
  String cFDString;
  String cMmcoString;
  String cRplrStringL0;
  String cRplrStringL1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -