source: roaraudio/libroardsp/filter.c @ 979:2d5a48c15b5f

Last change on this file since 979:2d5a48c15b5f was 979:2d5a48c15b5f, checked in by phi, 15 years ago

added new filter: Add, Quantifier, Clip

File size: 5.1 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 (*calc  [5][3])(struct roardsp_filter * filter, void * data, size_t samples);
34} _roardsp_filterlist[] = {
35 {ROARDSP_FILTER_AMP, "AMP", roardsp_amp_init, roardsp_amp_uninit, roardsp_amp_ctl, {
36           {NULL, NULL, NULL},{roardsp_amp_calc8, NULL, NULL},{roardsp_amp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
37 {ROARDSP_FILTER_ADD, "Add", roardsp_add_init, roardsp_amp_uninit, roardsp_amp_ctl, {
38           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_add_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
39 {ROARDSP_FILTER_LOWP, "Lowpass", roardsp_lowp_init, roardsp_lowp_uninit, roardsp_lowp_ctl, {
40           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_lowp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
41 {ROARDSP_FILTER_HIGHP, "Highpass", roardsp_highp_init, roardsp_highp_uninit, roardsp_highp_ctl, {
42           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_highp_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
43 {ROARDSP_FILTER_QUANTIFY, "Quantifier", roardsp_quantify_init, NULL, roardsp_quantify_ctl, {
44           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_quantify_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
45 {ROARDSP_FILTER_CLIP, "Clip", roardsp_clip_init, NULL, roardsp_clip_ctl, {
46           {NULL, NULL, NULL},{NULL, NULL, NULL},{roardsp_clip_calc16, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
47 {-1, NULL, NULL, NULL, NULL, {
48      // ?                  8Bit               16Bit              24Bit              32Bit
49      // 0B:n     1     2   1B:n     1     2   2B:n     1     2   3B:n     1    2    4B:n     1     2
50           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}}
51};
52
53int    roardsp_filter_str2id(char * str) {
54 struct _roardsp_filterlist * l = _roardsp_filterlist;
55
56 while ( l->id != -1 ) {
57  if ( strcasecmp(l->name, str) == 0 )
58   return l->id;
59  l++;
60 }
61
62 return -1;
63}
64
65char * roardsp_filter_id2str(int id) {
66 struct _roardsp_filterlist * l = _roardsp_filterlist;
67
68 while ( l->id != -1 ) {
69  if ( l->id == id )
70   return l->name;
71  l++;
72 }
73
74 return NULL;
75}
76
77int roardsp_filter_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id) {
78 struct _roardsp_filterlist * l = _roardsp_filterlist;
79 int bytes;
80 int (*calc)(struct roardsp_filter * filter, void * data, size_t samples) = NULL;
81
82 if ( filter == NULL || stream == NULL ) {
83  ROAR_DBG("roardsp_filter_init(*) = -1 // filter or stream is NULL");
84  return -1;
85 }
86
87 ROAR_DBG("roardsp_filter_init(filter=%p, stream=%p, id=%i) = ?", filter, stream, id);
88
89 memset(filter, 0, sizeof(struct roardsp_filter));
90
91 filter->channels = stream->info.channels;
92 filter->bits     = stream->info.bits;
93 filter->rate     = stream->info.rate;
94
95 bytes            = stream->info.bits / 8;
96
97 while ( l->id != id ) {
98  if ( l->id == -1 )
99   return -1;
100  l++;
101 }
102
103 filter->uninit = l->uninit;
104 filter->ctl    = l->ctl;
105
106 if ( filter->channels < 3 )
107  calc = l->calc[bytes][filter->channels];
108
109 if ( calc == NULL )
110  calc = l->calc[bytes][0]; // for n channels
111
112 if ( calc == NULL ) {
113  ROAR_DBG("roardsp_filter_init(*) = -1 // no calc code");
114  return -1;
115 }
116
117 filter->calc = calc;
118
119 if ( l->init ) {
120  ROAR_DBG("roardsp_filter_init(*) = ? // execing init");
121  return l->init(filter, stream, id);
122 }
123
124 ROAR_DBG("roardsp_filter_init(*) = 0 // no init");
125 return 0;
126}
127
128int roardsp_filter_uninit(struct roardsp_filter * filter) {
129 int ret = 0;
130
131 if ( filter == NULL )
132  return -1;
133
134 if ( filter->uninit )
135  ret = filter->uninit(filter);
136
137 memset(filter, 0, sizeof(struct roardsp_filter));
138
139 return ret;
140}
141
142int roardsp_filter_calc  (struct roardsp_filter * filter, void * data, size_t len) {
143 int ret = 0;
144
145 if ( filter == NULL )
146  return -1;
147
148 if ( filter->calc )
149  ret = filter->calc(filter, data, len);
150
151 return ret;
152}
153
154int    roardsp_filter_ctl   (struct roardsp_filter * filter, int cmd, void * data) {
155 if ( filter == NULL )
156  return -1;
157
158 if ( filter->ctl )
159  return filter->ctl(filter, cmd, data);
160
161 return -1;
162}
163
164//ll
Note: See TracBrowser for help on using the repository browser.