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

📄 input_plugin.h~

📁 webcam,通过linux实现的摄像头
💻 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 + -