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

📄 waveheader.h

📁 基于osip、eXosip、speex、ffmpeg的VoIP源代码
💻 H
字号:
/*mediastreamer2 library - modular sound and video processing and streamingCopyright (C) 2006  Simon MORLAT (simon.morlat@linphone.org)This program is free software; you can redistribute it and/ormodify it under the terms of the GNU General Public Licenseas published by the Free Software Foundation; either version 2of 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.*//* the following code was taken from a free software utility that I don't remember the name. *//* sorry */#ifdef HAVE_CONFIG_H#include "mediastreamer-config.h"#endif#ifndef waveheader_h#define waveheader_h/* all integer in wav header must be read in least endian order */static inline uint16_t swap16(uint16_t a){	return ((a & 0xFF) << 8) | ((a & 0xFF00) >> 8);}static inline uint32_t swap32(uint32_t a){	return ((a & 0xFF) << 24) | ((a & 0xFF00) << 8) | 		((a & 0xFF0000) >> 8) | ((a & 0xFF000000) >> 24);}#ifdef WORDS_BIGENDIAN#define le_uint32(a) (swap32((a)))#define le_uint16(a) (swap16((a)))#define le_int16(a) ( (int16_t) swap16((uint16_t)((a))) )#else#define le_uint32(a) (a)#define le_uint16(a) (a)#define le_int16(a) (a)#endiftypedef struct _riff_t {	char riff[4] ;	/* "RIFF" (ASCII characters) */	uint32_t  len ;	/* Length of package (binary, little endian) */	char wave[4] ;	/* "WAVE" (ASCII characters) */} riff_t;/* The FORMAT chunk */typedef struct _format_t {	char  fmt[4] ;		/* "fmt_" (ASCII characters) */	uint32_t   len ;	/* length of FORMAT chunk (always 0x10) */	uint16_t  type;		/* codec type*/	uint16_t channel ;	/* Channel numbers (0x01 = mono, 0x02 = stereo) */	uint32_t   rate ;	/* Sample rate (binary, in Hz) */	uint32_t   bps ;	/* Average Bytes Per Second */	uint16_t blockalign ;	/*number of bytes per sample */	uint16_t bitpspl ;	/* bits per sample */} format_t;/* The DATA chunk */typedef struct _data_t {	char data[4] ;	/* "data" (ASCII characters) */	int  len ;	/* length of data */} data_t;typedef struct _wave_header_t{	riff_t riff_chunk;	format_t format_chunk;	data_t data_chunk;} wave_header_t;#define wave_header_get_rate(header)		le_uint32((header)->format_chunk.rate)#define wave_header_get_channel(header)		le_uint16((header)->format_chunk.channel)#define wave_header_get_bpsmpl(header) \	le_uint16((header)->format_chunk.blockalign)#endif

⌨️ 快捷键说明

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