12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*------------------------------------------------------------------------------
- -- --
- -- 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 : API's internal static data storage definition
- --
- --------------------------------------------------------------------------------
- --
- -- Version control information, please leave untouched.
- --
- -- $RCSfile: mpeg2hwd_apistorage.h,v $
- -- $Date: 2010/02/25 12:30:23 $
- -- $Revision: 1.8 $
- --
- ------------------------------------------------------------------------------*/
- #ifndef MPEG2DECAPISTORAGE_H
- #define MPEG2DECAPISTORAGE_H
- #include "dwl.h"
- typedef struct
- {
- enum
- {
- UNINIT,
- INITIALIZED,
- HEADERSDECODED,
- STREAMDECODING,
- HW_PIC_STARTED,
- HW_STRM_ERROR
- } DecStat;
- enum
- {
- NO_BUFFER = 0,
- } bufferForPp;
- DWLLinearMem_t InternalFrameIn;
- DWLLinearMem_t InternalFrameOut;
- DWLLinearMem_t pQTableBase;
- u32 firstHeaders;
- u32 disableFilter;
- u32 externalBuffers; /* application gives frame buffers */
- u32 firstField;
- u32 outputOtherField;
- u32 parity;
- u32 ignoreField;
- } DecApiStorage;
- #endif /* #ifndef MPEG2DECAPISTORAGE_H */
|