资源简介
图像处理学习过程中需要配置环境用到的一个库,整合的一个压缩文件,需要的里面都有
代码片段和文件信息
// Ogg Vorbis audio decoder - v1.11 - public domain
// http://nothings.org/stb_vorbis/
//
// Original version written by Sean Barrett in 2007.
//
// Originally sponsored by RAD Game Tools. Seeking sponsored
// by Phillip Bennefall Marc Andersen Aaron Baker Elias Software
// Aras Pranckevicius and Sean Barrett.
//
// LICENSE
//
// See end of file for license information.
//
// Limitations:
//
// - floor 0 not supported (used in old ogg vorbis files pre-2004)
// - lossless sample-truncation at beginning ignored
// - cannot concatenate multiple vorbis streams
// - sample positions are 32-bit limiting seekable 192Khz
// files to around 6 hours (Ogg supports 64-bit)
//
// Feature contributors:
// Dougall Johnson (sample-exact seeking)
//
// Bugfix/warning contributors:
// Terje Mathisen Niklas Frykholm Andy Hill
// Casey Muratori John Bolton Gargaj
// Laurent Gomila Marc LeBlanc Ronny Chevalier
// Bernhard Wodo Evan Balster alxprd@github
// Tom Beaumont Ingo Leitgeb Nicolas Guillemot
// Phillip Bennefall Rohit Thiago Goulart
// manxorist@github saga musix github:infatum
//
// Partial history:
// 1.11 - 2017/07/23 - fix MinGW compilation
// 1.10 - 2017/03/03 - more robust seeking; fix negative ilog(); clear error in open_memory
// 1.09 - 2016/04/04 - back out ‘truncation of last frame‘ fix from previous version
// 1.08 - 2016/04/02 - warnings; setup memory leaks; truncation of last frame
// 1.07 - 2015/01/16 - fixes for crashes on invalid files; warning fixes; const
// 1.06 - 2015/08/31 - full correct support for seeking API (Dougall Johnson)
// some crash fixes when out of memory or with corrupt files
// fix some inappropriately signed shifts
// 1.05 - 2015/04/19 - don‘t define __forceinline if it‘s redundant
// 1.04 - 2014/08/27 - fix missing const-correct case in API
// 1.03 - 2014/08/07 - warning fixes
// 1.02 - 2014/07/09 - declare qsort comparison as explicitly _cdecl in Windows
// 1.01 - 2014/06/18 - fix stb_vorbis_get_samples_float (interleaved was correct)
// 1.0 - 2014/05/26 - fix memory leaks; fix warnings; fix bugs in >2-channel;
// (API change) report sample rate for decode-full-file funcs
//
// See end of file for full version history.
//////////////////////////////////////////////////////////////////////////////
//
// HEADER BEGINS HERE
//
#ifndef STB_VORBIS_INCLUDE_STB_VORBIS_H
#define STB_VORBIS_INCLUDE_STB_VORBIS_H
#if defined(STB_VORBIS_NO_CRT) && !defined(STB_VORBIS_NO_STDIO)
#define STB_VORBIS_NO_STDIO 1
#endif
#ifndef STB_VORBIS_NO_STDIO
#include
#endif
#ifdef __cplusplus
extern “C“ {
#endif
/////////// THREAD SAFETY
// Individual stb_vorbis* handles are not thread-safe; you cannot decode from
// them from multiple threads at the same
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-07-24 18:32 stb-master\
目录 0 2017-07-24 18:32 stb-master\.github\
文件 963 2017-07-24 18:32 stb-master\.github\CONTRIBUTING.md
文件 627 2017-07-24 18:32 stb-master\.github\PULL_REQUEST_TEMPLATE.md
文件 60 2017-07-24 18:32 stb-master\.travis.yml
目录 0 2017-07-24 18:32 stb-master\data\
文件 1769 2017-07-24 18:32 stb-master\data\atari_8bit_font_revised.png
文件 645 2017-07-24 18:32 stb-master\data\easy_font_raw.png
目录 0 2017-07-24 18:32 stb-master\data\herringbone\
文件 200 2017-07-24 18:32 stb-master\data\herringbone\license.txt
文件 10818 2017-07-24 18:32 stb-master\data\herringbone\template_caves_limit_connectivity.png
文件 4904 2017-07-24 18:32 stb-master\data\herringbone\template_caves_tiny_corridors.png
文件 9337 2017-07-24 18:32 stb-master\data\herringbone\template_corner_caves.png
文件 5491 2017-07-24 18:32 stb-master\data\herringbone\template_horizontal_corridors_v1.png
文件 5759 2017-07-24 18:32 stb-master\data\herringbone\template_horizontal_corridors_v2.png
文件 6766 2017-07-24 18:32 stb-master\data\herringbone\template_horizontal_corridors_v3.png
文件 6728 2017-07-24 18:32 stb-master\data\herringbone\template_limited_connectivity.png
文件 6655 2017-07-24 18:32 stb-master\data\herringbone\template_limit_connectivity_fat.png
文件 12776 2017-07-24 18:32 stb-master\data\herringbone\template_maze_2_wide.png
文件 13141 2017-07-24 18:32 stb-master\data\herringbone\template_maze_plus_2_wide.png
文件 7764 2017-07-24 18:32 stb-master\data\herringbone\template_open_areas.png
文件 9729 2017-07-24 18:32 stb-master\data\herringbone\template_ref2_corner_caves.png
文件 4736 2017-07-24 18:32 stb-master\data\herringbone\template_rooms_and_corridors.png
文件 4193 2017-07-24 18:32 stb-master\data\herringbone\template_rooms_and_corridors_2_wide_diagonal_bias.png
文件 7664 2017-07-24 18:32 stb-master\data\herringbone\template_rooms_limit_connectivity.png
文件 8172 2017-07-24 18:32 stb-master\data\herringbone\template_round_rooms_diagonal_corridors.png
文件 10261 2017-07-24 18:32 stb-master\data\herringbone\template_sean_dungeon.png
文件 15712 2017-07-24 18:32 stb-master\data\herringbone\template_simple_caves_2_wide.png
文件 4772 2017-07-24 18:32 stb-master\data\herringbone\template_square_rooms_with_random_rects.png
文件 30625 2017-07-24 18:32 stb-master\data\map_01.png
文件 3243 2017-07-24 18:32 stb-master\data\map_02.png
............此处省略362个文件信息
相关资源
- 图像处理:任意四边形转矩形
- ssda算法源码
- 使用多线程及图像分块实现图像处理
- 图像处理中使用多线程及图像分块实
- 基于图像处理技术的织物疵点检测研
- Pattern Recognition and Machine Learning(完整
- 图像增强ppt
- 中值滤波算法分析与设计
- Handbook of Functional MRI Data Analysis
- 数字图像处理第四章答案
- RAW图片资源,用于图像处理与分析
- [章毓晋] 图象工程附册——教学参考
- 数字图象处理编程入门—做一个自己
- 数字图像处理及模式识别.pdf
- 基于FPGA图像处理灰度图像变换
- 数字图像处理实验报告(全答案)
- 图像增强实验内含完整代码
- 小梅哥AC620 FPGA开发板图像处理设计教
- 上下位机程序源码.zip
- 数字图像处理代码
- 图像处理常用到的图片
- 数字图像处理标准测试图
- 西华大学2017-2018数字图像处理期末B卷
- 哈尔滨工程大学数字图像处理英文课
- 勘智K210 20种物体识别工程添加图像处
- 数字图像处理-毛发处理实验
- 适合图像处理测试用各种人脸库人脸
- 数字图像处理数据集八-RN15
- 数字图像处理-基础篇 谷口庆治
- 基于数字图像处理技术的混凝土表面
评论
共有 条评论