1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /********************************************************************
- ** File Name: mid_ats.h
- **
- ** File Description: This file implements ATS modules apis
- **
- ** Copyright(c) 2011 Sunplus Technologies - All Rights Reserved
- **
- ** History Information Description
- ** Date Author Modification
- ** 2011/05/09 Hsunying.Huang Create
- ********************************************************************/
- #ifndef _MID_ATV_ATS_H_
- #define _MID_ATV_ATS_H_
- /*******************************************************************************
- * Header include
- ******************************************************************************/
- #include "types.h"
- /*******************************************************************************
- * Macro
- ******************************************************************************/
- #define ATS_INVALID_CODE (0xFFFF)
- /*******************************************************************************
- * Enumeration
- ******************************************************************************/
- /*******************************************************************************
- * Structure
- ******************************************************************************/
- /*!
- * @brief ats codings
- */
- typedef struct _ana_ats_coding_t
- {
- UINT16 wVPS; // line 16
- UINT16 wFormat1; // magzine 8, page 30
- UINT16 wFormat2; // magzine 8, page 30
- }Ana_ATSCoding_t;
- /*******************************************************************************
- * Program
- ******************************************************************************/
- /*** Functions ***/
- void MID_ATS_HookAPI(void);
- void MID_ATS_GetData(void *ATSData);
- #endif // _MID_ATV_ATS_H_
|