⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 section.h

📁 Zoran V966 DVD 解码 Soc芯片的源程序
💻 H
字号:
/****************************************************************************************
 *  Copyright (c) 2005 ZORAN Corporation, All Rights Reserved
 *  THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
 *
 *  File: $Workfile: section.h $             
 *
 * Description: 
 * ============
 * 
 * 
 * Log:
 * ====
 * $Revision: $
 * Last Modified by $Author: $ at $Modtime: $ 
 ****************************************************************************************
 * Updates:
 ****************************************************************************************/
#include "Config.h"		// Global Configuration - do not remove!

#ifdef FTA_SUPPORT

#ifndef __SECTION_H_
#define __SECTION_H_

#include "Include\sysdefs.h"

/////////////////////////////////////////////////////////////////////////////////////////////////
// Macros

/////////////////////////////////////////////////////////////////////////////////////////////////
// Enumerations & Typedefs

/////////////////////////////////////////////////////////////////////////////////////////////////
// Structures

typedef struct 
{
	UINT uReserved		: 2;
	UINT uVersionNumber	: 5;
	UINT uCurNextInd	: 1;
} MPEG_SECTION_BITFIELD;

typedef union 
{
	UINT8 cRegister;
	MPEG_SECTION_BITFIELD bitfield;
} MPEG_SECTION_BUFFER;

typedef struct
{
	UINT8 cTableId;					// The table ID
	UINT8 cSectionNumber;			// The section number
	MPEG_SECTION_BUFFER secBuffer;
} SECTION_HEADER;

/////////////////////////////////////////////////////////////////////////////////////////////////
// Public Services

void PSI_ResetSection(SECTION_HEADER* bMpgHeader);
void PSI_FillSectionHeader(UINT8 huge *buffer, SECTION_HEADER* bMpgHeader);

#endif // __SECTION_H_
#endif // FTA_SUPPORT

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -