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

📄 complex_filters.h

📁 传真通信V27 V29 V17 T38解调与解码
💻 H
字号:
/* * SpanDSP - a series of DSP components for telephony * * complex_filters.h * * Written by Steve Underwood <steveu@coppice.org> * * Copyright (C) 2003 Steve Underwood * * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * $Id: complex_filters.h,v 1.9 2007/04/08 08:16:17 steveu Exp $ */#if !defined(_SPANDSP_COMPLEX_FILTERS_H_)#define _SPANDSP_COMPLEX_FILTERS_H_typedef struct filter_s filter_t;typedef float (*filter_step_func_t)(filter_t *fi, float x);typedef struct{    int                 nz;    int                 np;    filter_step_func_t  fsf;} fspec_t;struct filter_s{    fspec_t             *fs;    float               sum;    int                 ptr;		/* for moving average filters only */    float               v[];};typedef struct{    filter_t            *ref;    filter_t            *imf;} cfilter_t;#if defined(__cplusplus)extern "C"{#endiffilter_t *filter_create(fspec_t *fs);void filter_delete(filter_t *fi);float filter_step(filter_t *fi, float x);cfilter_t *cfilter_create(fspec_t *fs);void cfilter_delete(cfilter_t *cfi);complexf_t cfilter_step(cfilter_t *cfi, const complexf_t *z);#if defined(__cplusplus)}#endif#endif/*- End of file ------------------------------------------------------------*/

⌨️ 快捷键说明

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