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

📄 thrdecode.h

📁 dm642上的h264源码
💻 H
字号:
/*
 *  Copyright 2002 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.
 *  
 */
/*
 *  ======== thrCapture.h ========
 */
 
#ifndef THRDECODE_
#define THRDECODE_

// RF5 module includes
#include <chan.h>
#include <icell.h>

#include "appThreads.h"     // thread-wide common info

#ifdef __cplusplus
extern "C" {
#endif

enum {	CHDECODE  = 0,
		NUMDECODECHANS
	 };
enum { CHDECODECELLDEC = 0,
       CHDECODENUMCELLS
     };
     
typedef struct ThrDecode {
		
    CHAN_Obj     	decodeChans[NUMDECODECHANS]; 
    ICELL_Obj    	decodeCells[NUMDECODECHANS * CHDECODENUMCELLS];    
    placementBuff	OutputBuff;
    Char            *dec_buf;
    ScomDecToDisp 	scombufDisp;

} ThrDecode; 

/* prototypes for public functions */
extern Void thrDecodeInit( Void );
extern Void thrDecodeStartup( Void );
extern Void thrDecodeRun( Void );

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

#endif // THRCAPTURE_

 


⌨️ 快捷键说明

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