appmain.h

来自「DM642平台上的H.264源码(可实时运行)」· C头文件 代码 · 共 44 行

H
44
字号
/*
 *  Copyright 2003 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) ReferenceFrameworks 2.10.00.11 04-30-03 (swat-d15)" */
/*
 *  ======== appMain.h ========
 *
 *  Apllication Main initialization and priming
 *  xjs 2006 11 7
 */
#ifndef APPMAIN_
#define APPMAIN_

#ifdef __cplusplus
extern "C" {
#endif

/*
 *  Declaration of PIO objects used for transfer of data to/from codec,
 *  in case they are ever needed by the application outside of appIO.c.
 */
#define LIGHT  *((volatile uint32_t*)0x90080010)

#define DATALEN  0x10000 
#define HAS_ENC 1
#define HAS_DEC 0

extern int32_t write_tag, read_tag;
extern int32_t dec_tag[2];
extern uint8_t enc_Buf[2][DATALEN];
extern uint8_t dec_Buf[2][DATALEN];
extern uint8_t *pstart,*pputdata,*pgetdata;

#ifdef __cplusplus
}
#endif /* extern "C" */

#endif /* APPIO_ */

⌨️ 快捷键说明

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