source: roaraudio/libroardsp/filter.c @ 1134:03793dc30413

Last change on this file since 1134:03793dc30413 was 1134:03793dc30413, checked in by phi, 15 years ago

set reset() on init

File size: 5.9 KB
Line 
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
27struct _roardsp_filterlist {
28 int id;
29 char * name;
30 int (*  init      )(struct roardsp_filter * filter, struct roar_stream * stream, int id);
31 int (*uninit      )(struct roardsp_filter * filter);
32 int (*ctl         )(struct roardsp_filter * filter, int cmd, void * data);
33 int (*reset       )(struct roardsp_filter * filter, int what);
34 int (*calc  [5][3])(struct roardsp_filter * filter, void * data, size_t samples);
35} _roardsp_filterlist[] = {
36 {ROARDSP_FILTER_AMP, "AMP", roardsp_amp_init, roardsp_amp_uninit, roardsp_amp_ctl, NULL, {
37           {NULL, NULL, NULL},{roardsp_amp_calc8, NULL, NULL},{roardsp_amp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
38 {ROARDSP_FILTER_ADD, "Add", roardsp_add_init, roardsp_amp_uninit, roardsp_amp_ctl, NULL, {
39           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_add_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
40#ifdef ROAR_HAVE_LIBM
41 {ROARDSP_FILTER_LOWP, "Lowpass", roardsp_lowp_init, roardsp_lowp_uninit, roardsp_lowp_ctl, NULL, {
42           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_lowp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
43 {ROARDSP_FILTER_HIGHP, "Highpass", roardsp_highp_init, roardsp_highp_uninit, roardsp_highp_ctl, NULL, {
44           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_highp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
45#endif
46 {ROARDSP_FILTER_QUANTIFY, "Quantifier", roardsp_quantify_init, NULL, roardsp_quantify_ctl, NULL, {
47           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_quantify_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
48 {ROARDSP_FILTER_CLIP, "Clip", roardsp_clip_init, NULL, roardsp_clip_ctl, NULL, {
49           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_clip_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
50 {ROARDSP_FILTER_DOWNMIX, "downmix", roardsp_downmix_init, NULL, roardsp_downmix_ctl, NULL, {
51           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, roardsp_downmix_calc162},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
52 {ROARDSP_FILTER_DCBLOCK, "DCBlock", roardsp_dcblock_init, NULL, NULL, roardsp_dcblock_reset, {
53           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_dcblock_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
54 {-1, NULL, NULL, NULL, NULL, NULL, {
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
57           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}}
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;
66  l++;
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;
78  l++;
79 }
80
81 return NULL;
82}
83
84int roardsp_filter_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id) {
85 struct _roardsp_filterlist * l = _roardsp_filterlist;
86 int bytes;
87 int (*calc)(struct roardsp_filter * filter, void * data, size_t samples) = NULL;
88
89 if ( filter == NULL || stream == NULL ) {
90  ROAR_DBG("roardsp_filter_init(*) = -1 // filter or stream is NULL");
91  return -1;
92 }
93
94 ROAR_DBG("roardsp_filter_init(filter=%p, stream=%p, id=%i) = ?", filter, stream, id);
95
96 memset(filter, 0, sizeof(struct roardsp_filter));
97
98 filter->channels = stream->info.channels;
99 filter->bits     = stream->info.bits;
100 filter->rate     = stream->info.rate;
101
102 bytes            = stream->info.bits / 8;
103
104 while ( l->id != id ) {
105  if ( l->id == -1 )
106   return -1;
107  l++;
108 }
109
110 filter->uninit = l->uninit;
111 filter->ctl    = l->ctl;
112 filter->reset  = l->reset;
113
114 if ( filter->channels < 3 )
115  calc = l->calc[bytes][filter->channels];
116
117 if ( calc == NULL )
118  calc = l->calc[bytes][0]; // for n channels
119
120 if ( calc == NULL ) {
121  ROAR_DBG("roardsp_filter_init(*) = -1 // no calc code");
122  return -1;
123 }
124
125 filter->calc = calc;
126
127 if ( l->init ) {
128  ROAR_DBG("roardsp_filter_init(*) = ? // execing init");
129  return l->init(filter, stream, id);
130 }
131
132 ROAR_DBG("roardsp_filter_init(*) = 0 // no init");
133 return 0;
134}
135
136int roardsp_filter_uninit(struct roardsp_filter * filter) {
137 int ret = 0;
138
139 if ( filter == NULL )
140  return -1;
141
142 if ( filter->uninit )
143  ret = filter->uninit(filter);
144
145 memset(filter, 0, sizeof(struct roardsp_filter));
146
147 return ret;
148}
149
150int roardsp_filter_calc  (struct roardsp_filter * filter, void * data, size_t len) {
151 int ret = 0;
152
153 if ( filter == NULL )
154  return -1;
155
156 if ( filter->calc )
157  ret = filter->calc(filter, data, len);
158
159 return ret;
160}
161
162int    roardsp_filter_ctl   (struct roardsp_filter * filter, int cmd, void * data) {
163 if ( filter == NULL )
164  return -1;
165
166 if ( filter->ctl )
167  return filter->ctl(filter, cmd, data);
168
169 return -1;
170}
171
172int    roardsp_filter_reset (struct roardsp_filter * filter, int what) {
173 if ( filter == NULL )
174  return -1;
175
176 if ( filter->reset )
177  return filter->reset(filter, what);
178
179 return -1;
180}
181
182//ll
Note: See TracBrowser for help on using the repository browser.