source: roaraudio/libroardsp/filter.c @ 1133:902afe9f9028

Last change on this file since 1133:902afe9f9028 was 1131:bca464362519, checked in by phi, 15 years ago

added support to reset a filter(chain) :), works only for dcblock at the moment :(

File size: 5.9 KB
RevLine 
[661]1//filter.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - August 2008
5 *
6 *  This file is part of libroardsp a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroardsp is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "libroardsp.h"
26
[665]27struct _roardsp_filterlist {
28 int id;
29 char * name;
[667]30 int (*  init      )(struct roardsp_filter * filter, struct roar_stream * stream, int id);
31 int (*uninit      )(struct roardsp_filter * filter);
[671]32 int (*ctl         )(struct roardsp_filter * filter, int cmd, void * data);
[1131]33 int (*reset       )(struct roardsp_filter * filter, int what);
[667]34 int (*calc  [5][3])(struct roardsp_filter * filter, void * data, size_t samples);
[665]35} _roardsp_filterlist[] = {
[1131]36 {ROARDSP_FILTER_AMP, "AMP", roardsp_amp_init, roardsp_amp_uninit, roardsp_amp_ctl, NULL, {
[882]37           {NULL, NULL, NULL},{roardsp_amp_calc8, NULL, NULL},{roardsp_amp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1131]38 {ROARDSP_FILTER_ADD, "Add", roardsp_add_init, roardsp_amp_uninit, roardsp_amp_ctl, NULL, {
[979]39           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_add_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1104]40#ifdef ROAR_HAVE_LIBM
[1131]41 {ROARDSP_FILTER_LOWP, "Lowpass", roardsp_lowp_init, roardsp_lowp_uninit, roardsp_lowp_ctl, NULL, {
[677]42           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_lowp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1131]43 {ROARDSP_FILTER_HIGHP, "Highpass", roardsp_highp_init, roardsp_highp_uninit, roardsp_highp_ctl, NULL, {
[683]44           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_highp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1104]45#endif
[1131]46 {ROARDSP_FILTER_QUANTIFY, "Quantifier", roardsp_quantify_init, NULL, roardsp_quantify_ctl, NULL, {
[979]47           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_quantify_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1131]48 {ROARDSP_FILTER_CLIP, "Clip", roardsp_clip_init, NULL, roardsp_clip_ctl, NULL, {
[979]49           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_clip_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1131]50 {ROARDSP_FILTER_DOWNMIX, "downmix", roardsp_downmix_init, NULL, roardsp_downmix_ctl, NULL, {
[1004]51           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, roardsp_downmix_calc162},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1131]52 {ROARDSP_FILTER_DCBLOCK, "DCBlock", roardsp_dcblock_init, NULL, NULL, roardsp_dcblock_reset, {
[1100]53           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_dcblock_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1131]54 {-1, NULL, NULL, NULL, NULL, NULL, {
[677]55      // ?                  8Bit               16Bit              24Bit              32Bit
56      // 0B:n     1     2   1B:n     1     2   2B:n     1     2   3B:n     1    2    4B:n     1     2
[671]57           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}}
[665]58};
59
60int    roardsp_filter_str2id(char * str) {
61 struct _roardsp_filterlist * l = _roardsp_filterlist;
62
63 while ( l->id != -1 ) {
64  if ( strcasecmp(l->name, str) == 0 )
65   return l->id;
[678]66  l++;
[665]67 }
68
69 return -1;
70}
71
72char * roardsp_filter_id2str(int id) {
73 struct _roardsp_filterlist * l = _roardsp_filterlist;
74
75 while ( l->id != -1 ) {
76  if ( l->id == id )
77   return l->name;
[678]78  l++;
[665]79 }
80
81 return NULL;
82}
83
[663]84int roardsp_filter_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id) {
[671]85 struct _roardsp_filterlist * l = _roardsp_filterlist;
86 int bytes;
87 int (*calc)(struct roardsp_filter * filter, void * data, size_t samples) = NULL;
88
[681]89 if ( filter == NULL || stream == NULL ) {
90  ROAR_DBG("roardsp_filter_init(*) = -1 // filter or stream is NULL");
[663]91  return -1;
[681]92 }
93
94 ROAR_DBG("roardsp_filter_init(filter=%p, stream=%p, id=%i) = ?", filter, stream, id);
[663]95
96 memset(filter, 0, sizeof(struct roardsp_filter));
97
98 filter->channels = stream->info.channels;
99 filter->bits     = stream->info.bits;
[673]100 filter->rate     = stream->info.rate;
[663]101
[671]102 bytes            = stream->info.bits / 8;
103
[678]104 while ( l->id != id ) {
[671]105  if ( l->id == -1 )
106   return -1;
[678]107  l++;
108 }
[671]109
110 filter->uninit = l->uninit;
111 filter->ctl    = l->ctl;
112
113 if ( filter->channels < 3 )
114  calc = l->calc[bytes][filter->channels];
115
116 if ( calc == NULL )
117  calc = l->calc[bytes][0]; // for n channels
118
[681]119 if ( calc == NULL ) {
120  ROAR_DBG("roardsp_filter_init(*) = -1 // no calc code");
[671]121  return -1;
[681]122 }
123
124 filter->calc = calc;
[671]125
[681]126 if ( l->init ) {
127  ROAR_DBG("roardsp_filter_init(*) = ? // execing init");
[671]128  return l->init(filter, stream, id);
[681]129 }
[671]130
[681]131 ROAR_DBG("roardsp_filter_init(*) = 0 // no init");
[671]132 return 0;
[663]133}
134
135int roardsp_filter_uninit(struct roardsp_filter * filter) {
136 int ret = 0;
137
138 if ( filter == NULL )
139  return -1;
140
141 if ( filter->uninit )
142  ret = filter->uninit(filter);
143
144 memset(filter, 0, sizeof(struct roardsp_filter));
145
146 return ret;
147}
148
149int roardsp_filter_calc  (struct roardsp_filter * filter, void * data, size_t len) {
150 int ret = 0;
151
152 if ( filter == NULL )
153  return -1;
154
155 if ( filter->calc )
156  ret = filter->calc(filter, data, len);
157
158 return ret;
159}
[661]160
[671]161int    roardsp_filter_ctl   (struct roardsp_filter * filter, int cmd, void * data) {
162 if ( filter == NULL )
163  return -1;
164
165 if ( filter->ctl )
166  return filter->ctl(filter, cmd, data);
167
168 return -1;
169}
170
[1131]171int    roardsp_filter_reset (struct roardsp_filter * filter, int what) {
172 if ( filter == NULL )
173  return -1;
174
175 if ( filter->reset )
176  return filter->reset(filter, what);
177
178 return -1;
179}
180
[661]181//ll
Note: See TracBrowser for help on using the repository browser.