123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*------------------------------------------------------------------------------
- -- --
- -- This software is confidential and proprietary and may be used --
- -- only as expressly authorized by a licensing agreement from --
- -- --
- -- Hantro Products Oy. --
- -- --
- -- (C) COPYRIGHT 2006 HANTRO PRODUCTS OY --
- -- ALL RIGHTS RESERVED --
- -- --
- -- The entire notice above must be reproduced --
- -- on all copies and should not be removed. --
- -- --
- --------------------------------------------------------------------------------
- --
- -- Abstract : algorithm header file
- --
- --------------------------------------------------------------------------------
- --
- -- Version control information, please leave untouched.
- --
- -- $RCSfile: mp4dechwd_svdesc.h,v $
- -- $Date: 2007/11/26 09:20:13 $
- -- $Revision: 1.1 $
- --
- ------------------------------------------------------------------------------*/
- /*****************************************************************************/
- #ifndef DECSVDESC_H_DEFINED
- #define DECSVDESC_H_DEFINED
- #include "basetype.h"
- typedef struct DecSvDesc_t
- {
- u32 splitScreenIndicator;
- u32 documentCameraIndicator;
- u32 fullPictureFreezeRelease;
- u32 sourceFormat;
- u32 gobFrameId;
- u32 temporalReference;
- u32 tics; /* total tics from the beginning */
- u32 numMbsInGob;
- u32 numGobsInVop;
- } DecSvDesc;
- #endif
|