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

📄 amf_panner_s.c

📁 ADI SHARC DSP 音频算法标准模块库
💻 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_Panner_S.c#3 $ 
// Part of : VisualAudio V2.5.0 
// Updated : $Date: 2006/10/12 $ by $Author: Fernando $



#include "AMF_Panner_S.h"
#include "VA_GeneralHelperFunctions.h"

void AMF_Panner_S_Render(AMF_Panner_S * 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_Panner_S_Render(AMF_Panner_S * restrict instance,float * restrict * buffers,int tickSize) {
    int i;
    float cosSinSmoothing = instance->cosSinSmoothing;
    float oneMinusRate = 1.0 - cosSinSmoothing;
    float *in = buffers[0]; // Don't use restrict because we say they can alias (see .h file)
    float *out = buffers[1];
    float c0 = instance->cosTheta;
    float c1 = instance->sinTheta;
    float t0 = instance->cosThetaTarget * cosSinSmoothing;
    float t1 = instance->sinThetaTarget * cosSinSmoothing;
 
    for (i=0; i<tickSize*2; i+=2) {
        // smooth Cos and Sin of Rotation (stereo pan)
        c0 = c0 * oneMinusRate + t0;
        c1 = c1 * oneMinusRate + t1;

        out[i] = in[i] * c0 - in[i+1] * c1;
        out[i+1] = in[i] * c1 + in[i+1] * c0;
    }
    instance->cosTheta = c0;
    instance->sinTheta = c1;
}
#endif

SEG_MOD_SLOW_CONST const AMF_ModuleClass AMFClassPanner_S = {
    
    /* Flags */
    0,
     
    /* Render function */
    (AMF_RenderFunction)AMF_Panner_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)
};

// Class-specific helper functions

// see AMF_SetPannerTheta() in VA_GeneralHelperFunctions.c
// also macros in AMF_Panner_S.h
//    AMF_Panner_S_SetPannerTheta()
//    AMF_Panner_S_SetPannerValue()

⌨️ 快捷键说明

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