📄 input_plugin.h~
字号:
/* ============================================================================ Name : input_plugin.h Author : Zhang Yi Version : Copyright : Your copyright notice Description : Hello World in C, Ansi-style ============================================================================ */#ifndef XVID_ENCODE_H#define XVID_ENCODE_H#include <xvid.h>#include <pthread.h>#include <linux/videodev.h>#define NB_BUFFER 3#ifndef VIDEO_PALETTE_JPEG #define VIDEO_PALETTE_JPEG 21 #endifstruct vdIn { int fd; char *videodevice; struct video_capability videocap; struct video_window videowin; struct video_picture picture; unsigned char* buf; int width; int height; int formatIn;};void *input_run();#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -