source: roaraudio/libroardsp/filter.c @ 2999:c08010b8e02f

Last change on this file since 2999:c08010b8e02f was 2999:c08010b8e02f, checked in by phi, 15 years ago

swap filter needs to be run in 2 channel, not in 1 channel mode

File size: 7.1 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[] = {
[1141]36 {ROARDSP_FILTER_AMP, "AMP", roardsp_amp_init, roardsp_amp_uninit, roardsp_amp_ctl, roardsp_amp_reset, {
[882]37           {NULL, NULL, NULL},{roardsp_amp_calc8, NULL, NULL},{roardsp_amp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1141]38 {ROARDSP_FILTER_ADD, "Add", roardsp_add_init, roardsp_amp_uninit, roardsp_amp_ctl, roardsp_add_reset, {
[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
[1141]41 {ROARDSP_FILTER_LOWP, "Lowpass", roardsp_lowp_init, roardsp_lowp_uninit, roardsp_lowp_ctl, roardsp_lowp_reset, {
[677]42           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_lowp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1141]43 {ROARDSP_FILTER_HIGHP, "Highpass", roardsp_highp_init, roardsp_highp_uninit, roardsp_highp_ctl, roardsp_highp_reset, {
[683]44           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_highp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1104]45#endif
[1141]46 {ROARDSP_FILTER_QUANTIFY, "Quantifier", roardsp_quantify_init, NULL, roardsp_quantify_ctl, roardsp_quantify_reset, {
[979]47           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_quantify_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1141]48 {ROARDSP_FILTER_CLIP, "Clip", roardsp_quantify_init, NULL, roardsp_clip_ctl, roardsp_clip_reset, {
[979]49           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_clip_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1141]50 {ROARDSP_FILTER_DOWNMIX, "downmix", roardsp_quantify_init, NULL, roardsp_downmix_ctl, roardsp_downmix_reset, {
[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}}},
[1587]54 {ROARDSP_FILTER_SWAP, "Swap", roardsp_swap_init, roardsp_swap_uninit, roardsp_swap_ctl, roardsp_swap_reset, {
[2999]55           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, roardsp_swap_calc162},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[2992]56 {ROARDSP_FILTER_SPEEX_PREP, "SpeexPrep", roardsp_speex_prep_init, roardsp_speex_prep_uninit,
57                                          roardsp_speex_prep_ctl,  roardsp_speex_prep_reset, {
[2998]58           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, roardsp_speex_prep_calc161, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
[1131]59 {-1, NULL, NULL, NULL, NULL, NULL, {
[677]60      // ?                  8Bit               16Bit              24Bit              32Bit
61      // 0B:n     1     2   1B:n     1     2   2B:n     1     2   3B:n     1    2    4B:n     1     2
[671]62           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}}
[665]63};
64
65int    roardsp_filter_str2id(char * str) {
66 struct _roardsp_filterlist * l = _roardsp_filterlist;
67
68 while ( l->id != -1 ) {
69  if ( strcasecmp(l->name, str) == 0 )
70   return l->id;
[678]71  l++;
[665]72 }
73
74 return -1;
75}
76
77char * roardsp_filter_id2str(int id) {
78 struct _roardsp_filterlist * l = _roardsp_filterlist;
79
80 while ( l->id != -1 ) {
81  if ( l->id == id )
82   return l->name;
[678]83  l++;
[665]84 }
85
86 return NULL;
87}
88
[2990]89int    roardsp_filter_new   (struct roardsp_filter ** filter, struct roar_stream * stream, int id) {
90 struct roardsp_filter * n;
91 int ret;
92
93 if ( filter == NULL || stream == NULL )
94  return -1;
95
96 *filter = NULL; // just to be sure
97
98 n = roar_mm_malloc(sizeof(struct roardsp_filter));
99
100 if ( n == NULL )
101  return -1;
102
103 if ( (ret = roardsp_filter_init(n, stream, id)) == -1 ) {
104  roar_mm_free(n);
105  return -1;
106 }
107
108 n->flags |= ROARDSP_FFLAG_FREE;
109
110 *filter = n;
111
112 return ret;
113}
114
[663]115int roardsp_filter_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id) {
[671]116 struct _roardsp_filterlist * l = _roardsp_filterlist;
117 int bytes;
118 int (*calc)(struct roardsp_filter * filter, void * data, size_t samples) = NULL;
119
[681]120 if ( filter == NULL || stream == NULL ) {
121  ROAR_DBG("roardsp_filter_init(*) = -1 // filter or stream is NULL");
[663]122  return -1;
[681]123 }
124
125 ROAR_DBG("roardsp_filter_init(filter=%p, stream=%p, id=%i) = ?", filter, stream, id);
[663]126
127 memset(filter, 0, sizeof(struct roardsp_filter));
128
129 filter->channels = stream->info.channels;
130 filter->bits     = stream->info.bits;
[673]131 filter->rate     = stream->info.rate;
[663]132
[671]133 bytes            = stream->info.bits / 8;
134
[678]135 while ( l->id != id ) {
[671]136  if ( l->id == -1 )
137   return -1;
[678]138  l++;
139 }
[671]140
141 filter->uninit = l->uninit;
142 filter->ctl    = l->ctl;
[1134]143 filter->reset  = l->reset;
[671]144
145 if ( filter->channels < 3 )
146  calc = l->calc[bytes][filter->channels];
147
148 if ( calc == NULL )
149  calc = l->calc[bytes][0]; // for n channels
150
[681]151 if ( calc == NULL ) {
152  ROAR_DBG("roardsp_filter_init(*) = -1 // no calc code");
[671]153  return -1;
[681]154 }
155
156 filter->calc = calc;
[671]157
[681]158 if ( l->init ) {
159  ROAR_DBG("roardsp_filter_init(*) = ? // execing init");
[671]160  return l->init(filter, stream, id);
[681]161 }
[671]162
[681]163 ROAR_DBG("roardsp_filter_init(*) = 0 // no init");
[671]164 return 0;
[663]165}
166
167int roardsp_filter_uninit(struct roardsp_filter * filter) {
168 int ret = 0;
169
170 if ( filter == NULL )
171  return -1;
172
173 if ( filter->uninit )
174  ret = filter->uninit(filter);
175
[2990]176 if ( filter->flags & ROARDSP_FFLAG_FREE ) {
177  roar_mm_free(filter);
178 } else  {
179  memset(filter, 0, sizeof(struct roardsp_filter));
180 }
[663]181
182 return ret;
183}
184
185int roardsp_filter_calc  (struct roardsp_filter * filter, void * data, size_t len) {
186 int ret = 0;
187
188 if ( filter == NULL )
189  return -1;
190
191 if ( filter->calc )
192  ret = filter->calc(filter, data, len);
193
194 return ret;
195}
[661]196
[671]197int    roardsp_filter_ctl   (struct roardsp_filter * filter, int cmd, void * data) {
198 if ( filter == NULL )
199  return -1;
200
201 if ( filter->ctl )
202  return filter->ctl(filter, cmd, data);
203
204 return -1;
205}
206
[1131]207int    roardsp_filter_reset (struct roardsp_filter * filter, int what) {
208 if ( filter == NULL )
209  return -1;
210
211 if ( filter->reset )
212  return filter->reset(filter, what);
213
214 return -1;
215}
216
[661]217//ll
Note: See TracBrowser for help on using the repository browser.