q2x.h
来自「基于EP7312的MP3播放器源代码,包括MCU和PC端代码.」· C头文件 代码 · 共 35 行
H
35 行
//****************************************************************************//// q2x.h ////// Copyright (c) 2000 QSound Labs, Inc.////// History//// Aug 22/2000 - MSW creation based upon Qxpander.h//// Sept 5/2000 - MSW changed so that the local variables of the processor are// kept within the persistant control structure//// Dec 15/2000 - MSW added sample rate function and changed the size of// the internal state.//// Jan 28/2001 - MSW whoop the state was 79 should have been 81!////****************************************************************************typedef struct{ long lState[81];} Q2XState;// assembly functions...extern void q2xInitialise(Q2XState *state);extern void q2xReset(Q2XState *state);extern void q2xProcess(Q2XState *state, long *left, long *right);extern void q2xSetVolume(Q2XState *state, long left, long right);extern void q2xSetSpread(Q2XState *state, long spread);extern void q2xSetMode(Q2XState *state, long mode);extern void q2xSetSampleRate(Q2XState *state, long rate);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?