tskencode.h

来自「TI公司的DM642 DSP上开发的MPEG2编码源码」· C头文件 代码 · 共 38 行

H
38
字号

#ifndef TSKENCODE_
#define TSKENCODE__

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

#ifdef __cplusplus
extern "C" {
#endif

#define PROCESSNUMCHANNELS 1
#define PROCESSNUMCELLS    1

/* Definition of the structure describing the state of the thread. */
typedef struct _ThrEncode
{
    CHAN_Obj         chanList[ PROCESSNUMCHANNELS ];
    ICELL_Obj        cellList[ PROCESSNUMCHANNELS * PROCESSNUMCELLS ];
} ThrEncode;

// message IDs
enum
{
    MSGQUALCHANGE  = 0
};

/* prototypes for public functions */
extern Void tskEncodeInit( Void );
extern Void tskEncodeStart();
extern Void tskEncode( Void );
#ifdef __cplusplus
}
#endif // extern "C"

#endif

⌨️ 快捷键说明

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