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

📄 video_thread.h

📁 davinci lab video playback play video file
💻 H
字号:
/* * video_thread.h *//* Success and failure definitions for the thread */#define VIDEO_THREAD_SUCCESS (void *) 0#define VIDEO_THREAD_FAILURE (void *) -1/* Thread environment definition (i.e. what it needs to operate) */typedef struct video_thread_env{	int quit;	         	// Thread will run as long as quit = 0}video_thread_env;/* Function prototypes */void *video_thread_fxn(void *arg);

⌨️ 快捷键说明

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