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

📄 jdatabuf.h

📁 有关嵌入式的摄像头视频采集的论文
💻 H
字号:
/********************************************************************* * webcam_server                                                     * *                                                                   * * (c) 2002 Donn Morrison donn@donn.dyndns.org                       * *                                                                   * * code used from Gerd Knorr's xawtv (libng)                         * * - and -                                                           * * Cory Lueninghoener's gqcam                                        * *                                                                   * *    waits for connections from a viewer and sends                  * *    jpeg encoded captures as a live video feed                     * *                                                                   * *********************************************************************/#ifndef _JDATABUF_H_INCLUDED_#define _JDATABUF_H_INCLUDED_#include <jpeglib.h>#include <jerror.h>//METHODDEF(long)longget_jpeg_size (j_compress_ptr cinfo);//GLOBAL(void)voidjpeg_buff_dest (j_compress_ptr cinfo);//METHODDEF(void)voidjpeg_buff_free (j_compress_ptr cinfo);typedef struct {  struct jpeg_destination_mgr pub;  long total_buffer_size;  JOCTET * buffer;} my_destination_mgr;typedef my_destination_mgr * my_dest_ptr;#endif

⌨️ 快捷键说明

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