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

📄 sndread.h

📁 Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Mac OS X、Microsoft Windows、GNU/Linux和其它作業系統
💻 H
字号:
/* fileio.h -- Nyquist code to read sound files *//* for multiple channel files, one susp is shared by all sounds *//* the susp in turn must point back to all sound list tails */typedef struct read_susp_struct {    snd_susp_node susp;    snd_node snd;    snd_list_type *chan;	/* array of back pointers */    long bytes_per_sample;	/* handy for calculations */    long cnt;	/* how many sample frames to read */    cvtfn_type cvtfn;} read_susp_node, *read_susp_type;LVAL snd_make_read(unsigned char *filename, time_type offset, time_type t0,        long *format, long *channels, long *mode, long *bits, long *swap,        double *srate, double *dur, long *flags, long *byte_offset);/* LISP: (SND-READ STRING ANYNUM ANYNUM FIXNUM* FIXNUM* FIXNUM* FIXNUM* FIXNUM* ANYNUM* ANYNUM* FIXNUM^ FIXNUM^) */void read_free();

⌨️ 快捷键说明

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