audio_thread.h

来自「TI workshop 培训资料。 是关于如何创建DAVINCI平台下codec」· C头文件 代码 · 共 18 行

H
18
字号
/* * audio_thread.h *//* Success and failure definitions for the thread */#define AUDIO_THREAD_SUCCESS ((void *) 0 )#define AUDIO_THREAD_FAILURE ((void *) -1 )/* Thread environment definition (i.e. what it needs to operate) */typedef struct audio_thread_env{	int quit;	             // Thread will run as long as quit = 0	char *engineName;            // Name of the engine for audio codecs}audio_thread_env;/* Function prototypes */void *audio_thread_fxn(void *envByRef);

⌨️ 快捷键说明

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