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

📄 amf_delayallpassoffchip1s_4coef.c

📁 ADI SHARC DSP 音频算法标准模块库
💻 C
字号:

// Copyright(c) 2005 Analog Devices, Inc. All Rights Reserved. ADI Confidential.

#include "AMF_DelayAllpassOffChip1s_4Coef.h"

void AMF_DelayAllpassOffChip1s_4Coef_Render(AMF_DelayAllpassOffChip1s_4Coef * restrict instance,float * restrict * buffers,int tickSize);

#if 0
#pragma optimize_for_speed
SEG_MOD_FAST_CODE  void AMF_DelayAllpassOffChip1s_4Coef_Render(AMF_DelayAllpassOffChip1s_4Coef * restrict instance,float * restrict * buffers,int tickSize) {
    int delay = instance->delay;		// delay in samples
    int delaySize =instance->delaySize;
    float *delayBuffer = &instance->delayBuffer[0];		// delay buffer
    int writeIndex = instance->delayWritePtr-delayBuffer;			// delay index
    int i;
    float tmp;
    float *in = buffers[0]; 
    float *out = buffers[1]; 
	float pm *bufPtr;
    float pm *readBufPtr;
    float al0, al1, al2, al3;

	readBufPtr = (float pm *)((int)delayBuffer);
	readBufPtr = (float pm *)__builtin_circptr(readBufPtr, writeIndex-delay, (float pm *)((int)delayBuffer), delaySize);
	bufPtr = (float pm *)((int)delayBuffer);
	bufPtr = (float pm *)__builtin_circptr(bufPtr, writeIndex, (float pm *)((int)delayBuffer), delaySize);	

    // do the sum at the front of the delay
    al2 = instance->AL2;
    al3 = instance->AL3;
    al0 = instance->AL0;
    al1 = instance->AL1;
#pragma loop_count(8,128,8)
#pragma no_alias		
#pragma SIMD_for
    for (i=0; i<tickSize; i++) {
        tmp = *readBufPtr;
        *bufPtr = al2*in[i] + al3*tmp;
        out[i] = al0*in[i] + al1*tmp;
		readBufPtr = (float pm *)__builtin_circptr(readBufPtr, 1, (float pm *)((int)delayBuffer), delaySize);		
		bufPtr = (float pm *)__builtin_circptr(bufPtr, 1, (float pm *)((int)delayBuffer), delaySize);
    }
}
#endif 

SEG_MOD_SLOW_CONST const AMF_ModuleClass AMFClassDelayAllpassOffChip1s_4Coef = {
    
    /* Flags */
	0,

	/** Reference to render function. */
	(AMF_RenderFunction)AMF_DelayAllpassOffChip1s_4Coef_Render,  // render function 

    /* Default bypass */
	(void *)0,

	/* Input descriptor - 1 input, and it is mono. */
	1, 0,

	/* Output descriptor - 1 output, and it is mono. */
    1, 0,
};


⌨️ 快捷键说明

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