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

📄 pc_wav.h

📁 speech signal process tools
💻 H
字号:
/* * This material contains unpublished, proprietary software of  * Entropic Research Laboratory, Inc. Any reproduction, distribution,  * or publication of this work must be authorized in writing by Entropic  * Research Laboratory, Inc., and must bear the notice:  * *    "Copyright (c) 1998 Entropic Research Laboratory, Inc.  *                   All rights reserved." * * The copyright notice above does not evidence any actual or intended  * publication of this source code.      * * @(#)pc_wav.h	1.1 5/1/98 ERL * * Written by:  Rodney Johnson * Checked by: * Revised by: * * Brief description:  Declarations of functions and data structures * used by ESPS I/O routines for dealing with sampled-data files in RIFF * WAVE format. */#ifndef pc_wav_H#define pc_wav_H#include <esps/esps.h>#include <esps/fea.h>#ifdef __cplusplusextern "C" {#endif/* How many bytes do we need to read to recognize a PC WAV * header?  Defined and initialized in pc_wav.c. */#define PC_WAV_PREFIX_SIZE	((int) PcWavPrefixSize)extern int	PcWavPrefixSize;typedef struct pc_wav_hd	pc_wav_hd;/* * FUNCTION DECLARATIONS */extern intpc_wav_check_prefix ARGS((char *prefix));extern struct header *pc_wav_to_feasd ARGS((char *prefix, int num_read, FILE *file));extern pc_wav_hd *get_pc_wav_hdr ARGS((struct header *hdr));longpc_wav_rec_size ARGS((pc_wav_hd *wav_hd));extern voidpc_wav_skip_recs ARGS((FILE *file, long nrec, pc_wav_hd *wav_hd));extern intpc_wav_get_rec ARGS((struct fea_data *rec,		     pc_wav_hd *wav_hd, struct header *fea_hd, FILE *file));extern longpc_wav_getsd_recs ARGS((char *buffer,			long num_records, pc_wav_hd *wav_hd, FILE *file));#ifdef __cplusplus}#endif#endif /* pc_wav_H */

⌨️ 快捷键说明

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