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: mpeg2hwd_framedesc.h,v $
- -- $Date: 2007/09/19 10:48:00 $
- -- $Revision: 1.4 $
- --
- ------------------------------------------------------------------------------*/
- /*****************************************************************************/
- #ifndef MPEG2DECFRAMEDESC_H_DEFINED
- #define MPEG2DECFRAMEDESC_H_DEFINED
- #include "basetype.h"
- typedef struct
- {
- u32 frameNumber;
- u32 frameTimePictures;
- u32 picCodingType;
- u32 totalMbInFrame;
- u32 frameWidth; /* in macro blocks */
- u32 frameHeight; /* in macro blocks */
- u32 timeCodeHours;
- u32 timeCodeMinutes;
- u32 timeCodeSeconds;
- } DecFrameDesc;
- #endif /* #ifndef MPEG2DECFRAMEDESC_H_DEFINED */
|