📄 amf_clipsym.c
字号:
// Copyright(c) 2005 Analog Devices, Inc. All Rights Reserved.
// This software is proprietary and confidential to Analog Devices, Inc. and its licensors.
// File : $Id: //depot/development/visualaudio/modules/2.5.0/SHARC/Source/AMF_ClipSym.c#3 $
// Part of : VisualAudio V2.5.0
// Updated : $Date: 2006/10/12 $ by $Author: Fernando $
#include "AMF_ClipSym.h"
void AMF_ClipSym_Render(AMF_ClipSym * restrict instance,float * restrict * buffers,int tickSize);
// NOTE: The C version of this function is for reference only (it is
// intended just to show the general algorithm that the module
// uses), and it may not have been fully tested
#if 0
SEG_MOD_FAST_CODE void AMF_ClipSym_Render(AMF_ClipSym * restrict instance,float * restrict * buffers,int tickSize) {
int i;
float *in = buffers[0];
float *out = buffers[1];
float clipValue = instance->clipValue;
for (i=0; i<tickSize; i++) {
if(in[i]>clipValue)
out[i] = clipValue;
else if(in[i]<-clipValue)
out[i] = -clipValue;
else
out[i] = in[i];
}
}
#endif
SEG_MOD_SLOW_CONST const AMF_ModuleClass AMFClassClipSym = {
/* Flags */
0,
/* Render function */
(AMF_RenderFunction)AMF_ClipSym_Render,
/* 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 + -