display.h
来自「ti达芬奇开发板H.264视频解码的完整demo程序」· C头文件 代码 · 共 41 行
H
41 行
/* * display.h * * ============================================================================ * Copyright (c) Texas Instruments Inc 2005 * * Use of this software is controlled by the terms and conditions found in the * license agreement under which this software has been supplied or provided. * ============================================================================ */#ifndef _DISPLAY_H#define _DISPLAY_H#include <pthread.h>#include <fifoutil.h>#include <rendezvous.h>/* Display thread commands */#define DISPLAY_FLUSH -1#define DISPLAY_PRIME -2typedef struct BufferElement { int id; int width; int height; char *frameBuffer;} BufferElement;typedef struct DisplayEnv { Rendezvous_Handle hRendezvous; FifoUtil_Obj outFifo; FifoUtil_Obj inFifo; pthread_mutex_t prime;} DisplayEnv;extern void *displayThrFxn(void *arg);#endif /* _DISPLAY_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?