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

📄 vol.c

📁 基于TI DSP TMS320DM642的音频FIR滤波处理程序代码
💻 C
字号:
/*
 *  Copyright 2003 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) ReferenceFrameworks 2.10.00.11 04-30-03 (swat-d15)" */
/*
 *  ======== VOL.c ========
 *
 *  Caller-friendly interface for the IVOL algorithm
 *  
 *  Obtained from the vendor-provided vol.c where all ALGRF_ prefixes
 *  were replaced with ALGRF_ (as in ALGRF_activate -> ALGRF_activate)
 *  to use the ALGRF module.
 *
 *  Original comments:
 *  VOL Filter Module - implements all functions and defines all constant
 *  structures common to all VOL filter algorithm implementations.
 */
#include <std.h>

#include <algrf.h>

#include "vol.h"

/*
 *  ======== VOL_apply ========
 *  Apply a VOL filter to the input array and place results in the
 *  output array.
 */
Void VOL_apply( VOL_Handle handle, Short in[], Short out[] )
{
    /* activate instance object */
    ALGRF_activate( (ALGRF_Handle)handle );

    handle->fxns->amplify( handle, (XDAS_Int16 *)in, (XDAS_Int16 *)out ); 

    /* deactivate instance object */
    ALGRF_deactivate( (ALGRF_Handle)handle );
}

/*
 *  ======== VOL_exit ========
 *  Module finalization
 */
Void VOL_exit()
{
}

/*
 *  ======== VOL_init ========
 *  Module initialization
 */
Void VOL_init()
{
}


⌨️ 快捷键说明

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