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

📄 mjpeg_types.h

📁 Motion JPEG编解码器源代码
💻 H
字号:
/*    $Id: mjpeg_types.h,v 1.14 2005/05/18 17:21:47 sms00 Exp $    Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/#ifndef __MJPEG_TYPES_H__#define __MJPEG_TYPES_H__#include <sys/types.h> /* FreeBSD, others - ssize_t *//* * modern CYGWIN releases have stdint/inttypes so there's no need * to check for it or provide typedefs/defines*/#if defined(HAVE_STDINT_H)# include <stdint.h>#elif defined(HAVE_INTTYPES_H)# include <inttypes.h>#elsetypedef unsigned char uint8_t;typedef unsigned short uint16_t;typedef unsigned int uint32_t;typedef unsigned long long uint64_t;typedef long long int int64_t;#endif /* HAVE_STDINT_H */#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)#define GNUC_PRINTF( format_idx, arg_idx )    \  __attribute__((format (printf, format_idx, arg_idx)))#else   /* !__GNUC__ */#define GNUC_PRINTF( format_idx, arg_idx )#endif  /* !__GNUC__ */#endif /* __MJPEG_TYPES_H__ *//*  * Local variables: *  c-file-style: "gnu" *  tab-width: 8 *  indent-tabs-mode: nil * End: */

⌨️ 快捷键说明

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