📄 amf_delayoffchip_s.c
字号:
// Copyright(c) 2005 Analog Devices, Inc. All Rights Reserved. ADI Confidential.
#include "AMF_DelayOffChip_S.h"
void AMF_DelayOffChip_S_Render(AMF_DelayOffChip_S * restrict instance,float * restrict * buffers,int tickSize);
#if 0
SEG_MOD_FAST_CODE void AMF_DelayOffChip_S_Render(AMF_DelayOffChip_S * restrict instance,float * restrict * buffers,int tickSize) {
int delay = instance->delay; // delay in samples
float *delayBuffer = &instance->delayBuffer[0]; // delay buffer
int writeIndex = instance->delayWritePtr-delayBuffer; // delay index
int i;
float tmp;
float *in = buffers[0]; // Don't use restrict because we say they can alias (see .h file)
float *out = buffers[1];
float *bufPtr;
// weird kludge to get the compiler to actually set the B0 register...
bufPtr = delayBuffer;
bufPtr = __builtin_circptr(bufPtr, writeIndex, delayBuffer, delay*2);
#if 0
#pragma loop_count(8,2048,8)
for (i=0; i<2*tickSize; i++) {
tmp = *bufPtr;
*bufPtr = in[i];
bufPtr = __builtin_circptr(bufPtr, 1, delayBuffer, delay*2);
out[i] = tmp;
}
instance->delayWritePtr = bufPtr;
#else
#pragma loop_count(8,2048,8)
for (i=0; i<2*tickSize; i++) {
out[i] = *bufPtr;
bufPtr = __builtin_circptr(bufPtr, 1, delayBuffer, delay*2);
}
// weird kludge to get the compiler to actually set the B0 register...
bufPtr = delayBuffer;
bufPtr = __builtin_circptr(bufPtr, writeIndex, delayBuffer, delay*2);
#pragma loop_count(8,2048,8)
for (i=0; i<2*tickSize; i++) {
*bufPtr = in[i];
bufPtr = __builtin_circptr(bufPtr, 1, delayBuffer, delay*2);
}
instance->delayWritePtr = bufPtr;
#endif
}
#endif
SEG_MOD_SLOW_CONST const AMF_ModuleClass AMFClassDelayOffChip_S = {
/* Flags */
0,
/** Reference to render function. */
(AMF_RenderFunction)AMF_DelayOffChip_S_Render, // render function
/* Default bypass */
(void *)0,
/* Input descriptor - 1 input, and it is stereo. */
1, AMF_StereoPin(0),
/* Output descriptor - 1 output, and it is stereo. */
1, AMF_StereoPin(0),
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -