rebuffer.c
来自「一个共享源码的音频库1」· C语言 代码 · 共 55 行
C
55 行
/* rebuffer.c*/#ifdef HAVE_CONFIG_H#include <config.h>#endif#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <math.h>#include <assert.h>#include <audiofile.h>#include "afinternal.h"#include "modules.h"#include "pcm.h"#include "util.h"#include "units.h"#define CHNK(X)#define DEBG(X)#define min(a,b) ((a)<(b) ? (a) : (b))#define max(a,b) ((a)>(b) ? (a) : (b))/* ===== REBUFFERING modules (use templates) *//* defines module floatrebufferv2f and floatrebufferf2v */#define PRFX(word) float ## word#define INITFUNC(word) initfloat ## word#define NAMESTRING(word) "float" #word#define TYPE float#include "rebuffer.template"#undef PRFX#undef INITFUNC#undef NAMESTRING#undef TYPE/* defines module int2rebufferv2f and int2rebufferf2v */#define PRFX(word) int2 ## word#define INITFUNC(word) initint2 ## word#define NAMESTRING(word) "int2" #word#define TYPE schar2#include "rebuffer.template"#undef PRFX#undef INITFUNC#undef NAMESTRING#undef TYPE
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?