📄 swdec_hdrs.h
字号:
/*------------------------------------------------------------------------------
-- --
-- This software is confidential and proprietary and may be used --
-- only as expressly authorized by a licensing agreement from --
-- --
-- Hantro Products Oy. --
-- --
-- In the event of publication, the following notice is applicable: --
-- --
-- (C) COPYRIGHT 2004 HANTRO PRODUCTS OY --
-- ALL RIGHTS RESERVED --
-- --
-- The entire notice above must be reproduced on all copies. --
-- --
--------------------------------------------------------------------------------
--
-- MODULE NAME: SwDec_Hdrs
--
-- DESCRIPTION: definition of decHdrs_t structure to store information
-- received in stream headers.
--
-------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
Table of contents
1. Include headers
2. Module defines
3. Data types
4. Function prototypes
------------------------------------------------------------------------------*/
#ifndef SWDEC_HDRS_H
#define SWDEC_HDRS_H
/*------------------------------------------------------------------------------
1. Include headers
------------------------------------------------------------------------------*/
#include "basetype.h"
/*------------------------------------------------------------------------------
2. Module defines
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
3. Data types
------------------------------------------------------------------------------*/
typedef struct
{
u32 lock; /* header information lock */
u32 lastHeaderType;
u32 profileAndLevelIndication; /* Visual Object Sequence */
u32 isVisualObjectIdentifier; /* Visual Object */
u32 visualObjectVerid;
u32 visualObjectPriority;
u32 visualObjectType;
u32 videoSignalType;
u32 videoFormat;
u32 videoRange;
u32 colourDescription;
u32 colourPrimaries;
u32 transferCharacteristics;
u32 matrixCoefficients;
u32 randomAccessibleVol; /* Video Object Layer */
u32 videoObjectTypeIndication;
u32 isObjectLayerIdentifier;
u32 videoObjectLayerVerid;
u32 videoObjectLayerPriority;
u32 aspectRatioInfo;
u32 parWidth;
u32 parHeight;
u32 volControlParameters;
u32 chromaFormat;
u32 lowDelay;
u32 vbvParameters;
u32 firstHalfBitRate;
u32 latterHalfBitRate;
u32 firstHalfVbvBufferSize;
u32 latterHalfVbvBufferSize;
u32 firstHalfVbvOccupancy;
u32 latterHalfVbvOccupancy;
u32 videoObjectLayerShape;
u32 vopTimeIncrementResolution;
u32 fixedVopRate;
u32 fixedVopTimeIncrement;
u32 videoObjectLayerWidth;
u32 videoObjectLayerHeight;
u32 interlaced;
u32 obmcDisable;
u32 spriteEnable;
u32 not8Bit;
u32 quantType;
u32 complexityEstimationDisable;
u32 resyncMarkerDisable;
u32 dataPartitioned;
u32 reversibleVlc;
u32 scalability;
u32 estimationMethod;
u32 shapeComplexityEstimationDisable;
u32 opaque;
u32 transparent;
u32 intraCae;
u32 interCae;
u32 noUpdate;
u32 upsampling;
u32 textureComplexityEstimationSet1Disable;
u32 intraBlocks;
u32 interBlocks;
u32 inter4vBlocks;
u32 notCodedBlocks;
u32 textureComplexityEstimationSet2Disable;
u32 dctCoefs;
u32 dctLines;
u32 vlcSymbols;
u32 vlcBits;
u32 motionCompensationComplexityDisable;
u32 apm;
u32 npm;
u32 interpolateMcQ;
u32 forwBackMcQ;
u32 halfpel2;
u32 halfpel4;
u32 version2ComplexityEstimationDisable;
u32 sadct;
u32 quarterpel;
u32 closedGov;
u32 brokenLink;
} decHdrs_t;
/*------------------------------------------------------------------------------
4. Function prototypes
------------------------------------------------------------------------------*/
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -