?? section.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 + -