?? extractor.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.
********************************************************************************
*/
#ifndef __EXTRACTOR_H_D65BE9B4_A8DA_11D3_AFE7_005004464B79
#define __EXTRACTOR_H_D65BE9B4_A8DA_11D3_AFE7_005004464B79
#define MAX_PACKET_SIZE 1000000
// JVT-S080 LMI
// If defined to 1, the initial scalability_info SEI should be updated after an extraction;
// Otherwise, it's unchanged and followed by a layers_not_present scalable SEI.
#define UPDATE_SCALABLE_SEI 1
#include "H264AVCCommonLib/Sei.h"
#include "ReadBitstreamFile.h"
#include "WriteBitstreamToFile.h"
#include "ExtractorParameter.h"
#define MAX_ROIS 5
enum NalUnitType
{
NAL_UNIT_EXTERNAL = 0,
NAL_UNIT_CODED_SLICE = 1,
NAL_UNIT_CODED_SLICE_DATAPART_A = 2,
NAL_UNIT_CODED_SLICE_DATAPART_B = 3,
NAL_UNIT_CODED_SLICE_DATAPART_C = 4,
NAL_UNIT_CODED_SLICE_IDR = 5,
NAL_UNIT_SEI = 6,
NAL_UNIT_SPS = 7,
NAL_UNIT_PPS = 8,
NAL_UNIT_ACCESS_UNIT_DELIMITER = 9,
NAL_UNIT_END_OF_SEQUENCE = 10,
NAL_UNIT_END_OF_STREAM = 11,
NAL_UNIT_FILLER_DATA = 12,
NAL_UNIT_CODED_SLICE_SCALABLE = 20,
NAL_UNIT_CODED_SLICE_IDR_SCALABLE = 21
};
class ScalableStreamDescription
{
public:
ScalableStreamDescription ();
~ScalableStreamDescription ();
ErrVal init ( h264::SEI::ScalableSei* pcScalableSei );
ErrVal uninit ();
ErrVal addPacket ( UInt uiNumBytes,
UInt uiLayer,
UInt uiLevel,
UInt uiFGSLayer,
Bool bNewPicture );
//S051{
ErrVal addPacketNoUse ( UInt uiNumBytes,
UInt uiLayer,
UInt uiLevel,
UInt uiFGSLayer,
Bool bNewPicture );
UInt64 getNALUBytesNoUse ( UInt uiLayer,
UInt uiLevel,
UInt uiFGS ) const { return m_aaaui64NumNALUBytesNoUse[uiLayer][uiLevel][uiFGS]; }
//S051}
ErrVal analyse ();
Void output ( );
UInt getNumberOfLayers () const { return m_uiNumLayers; }
UInt getNumOfScalableLayers() const { return m_uiScalableNumLayersMinus1 + 1; }
UInt getNumberOfScalableLayers ( UInt uiLayer, UInt uiTL, UInt uiQL ) const { return m_aaauiScalableLayerId[uiLayer][uiTL][uiQL]; }
UInt getBitrateOfScalableLayers( UInt uiScalableLayer ) const { return m_auiBitrate[uiScalableLayer]; }
UInt getDependencyId ( UInt uiScalableLayer ) const { return m_auiDependencyId[uiScalableLayer]; }
UInt getTempLevel ( UInt uiScalableLayer ) const { return m_auiTempLevel[uiScalableLayer]; }
UInt getFGSLevel ( UInt uiScalableLayer ) const { return m_auiQualityLevel[uiScalableLayer]; }
UInt getFrmWidth ( UInt uiScalableLayer ) const { return m_auiFrmWidth[uiScalableLayer]; }
UInt getFrmHeight ( UInt uiScalableLayer ) const { return m_auiFrmHeight[uiScalableLayer]; }
Double getFrameRate ( UInt uiScalableLayer ) const { return m_adFramerate[uiScalableLayer]; }
Bool getBaseLayerModeAVC () const { return m_bAVCBaseLayer; }
UInt getStdAVCOffset () const { return m_uiStdAVCOffset; }
UInt getScalableLayer ( UInt uiLayer, UInt uiTL, UInt uiQL )
const { return m_aaauiScalableLayerId[uiLayer][uiTL][uiQL]; }
Void setBaseLayerMode ( Bool bAVCCompatible ) { m_bAVCBaseLayer = bAVCCompatible; }
UInt getFrameWidth ( UInt uiLayer ) const { return m_auiFrameWidth [uiLayer]; }
UInt getFrameHeight ( UInt uiLayer ) const { return m_auiFrameHeight [uiLayer]; }
UInt getMaxLevel ( UInt uiLayer ) const { return m_auiDecStages [uiLayer]; }
Double getFrameRateUnit () const { return (Double)m_uiFrameRateUnitNom/(Double)m_uiFrameRateUnitDenom; }
UInt getNumPictures ( UInt uiLayer,
UInt uiLevel ) const { return m_aauiNumPictures[uiLayer][uiLevel]; }
UInt64 getNALUBytes ( UInt uiLayer,
UInt uiLevel,
UInt uiFGS ) const { return m_aaaui64NumNALUBytes[uiLayer][uiLevel][uiFGS]; }
//add France Telecom
Double getFrameRate(UInt uiExtLayer, UInt uiLevel) { return m_aaadFramerate[uiExtLayer][uiLevel][0];}
//~add France Telecom
Bool m_bSPSRequired[MAX_LAYERS][32];
Bool m_bPPSRequired[MAX_LAYERS][256];
private:
Bool m_bInit;
Bool m_bAnalyzed;
UInt m_uiNumLayers;
Bool m_bAVCBaseLayer;
UInt m_uiAVCTempResStages;
UInt m_uiFrameRateUnitDenom;
UInt m_uiFrameRateUnitNom;
UInt m_uiMaxDecStages;
UInt m_auiFrameWidth [MAX_LAYERS];
UInt m_auiFrameHeight [MAX_LAYERS];
UInt m_auiDecStages [MAX_LAYERS];
//S051{
UInt64 m_aaaui64NumNALUBytesNoUse [MAX_LAYERS][MAX_DSTAGES+1][MAX_QUALITY_LEVELS];
//S051}
UInt64 m_aaaui64NumNALUBytes [MAX_LAYERS][MAX_DSTAGES+1][MAX_QUALITY_LEVELS];
UInt64 m_aaui64BaseLayerBytes[MAX_LAYERS][MAX_DSTAGES+1];
UInt64 m_aaui64FGSLayerBytes [MAX_LAYERS][MAX_DSTAGES+1];
UInt m_aauiNumPictures [MAX_LAYERS][MAX_DSTAGES+1];
UInt m_uiStdAVCOffset;
UInt m_uiScalableNumLayersMinus1;
UInt m_auiBitrate [MAX_LAYERS*MAX_TEMP_LEVELS*MAX_QUALITY_LEVELS];
UInt m_auiTempLevel [MAX_LAYERS*MAX_TEMP_LEVELS*MAX_QUALITY_LEVELS];
UInt m_auiDependencyId [MAX_LAYERS*MAX_TEMP_LEVELS*MAX_QUALITY_LEVELS];
UInt m_auiQualityLevel [MAX_LAYERS*MAX_TEMP_LEVELS*MAX_QUALITY_LEVELS];
Double m_adFramerate [MAX_LAYERS*MAX_TEMP_LEVELS*MAX_QUALITY_LEVELS];
UInt m_auiFrmWidth [MAX_LAYERS*MAX_TEMP_LEVELS*MAX_QUALITY_LEVELS];
UInt m_auiFrmHeight [MAX_LAYERS*MAX_TEMP_LEVELS*MAX_QUALITY_LEVELS];
UInt m_aaauiScalableLayerId [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
UInt m_aaauiBitrate [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
UInt m_aaauiTempLevel [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
UInt m_aaauiDependencyId [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
UInt m_aaauiQualityLevel [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
Double m_aaadFramerate [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
UInt m_aaauiFrmWidth [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
UInt m_aaauiFrmHeight [MAX_LAYERS][MAX_TEMP_LEVELS][MAX_QUALITY_LEVELS];
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -