source: roaraudio/libroardsp/filter.c @ 1004:15b43935d30b

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

added new filter: downmix

File size: 5.3 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 {ROARDSP_FILTER_DOWNMIX, "downmix", roardsp_downmix_init, NULL, roardsp_downmix_ctl, {
48           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, roardsp_downmix_calc162},{NULL, NULL, NULL},{NULL, NULL, NULL}}},
49 {-1, NULL, NULL, NULL, NULL, {
50      // ?                  8Bit               16Bit              24Bit              32Bit
51      // 0B:n     1     2   1B:n     1     2   2B:n     1     2   3B:n     1    2    4B:n     1     2
52           {NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL},{NULL, NULL, NULL}}}
53};
54
55int    roardsp_filter_str2id(char * str) {
56 struct _roardsp_filterlist * l = _roardsp_filterlist;
57
58 while ( l->id != -1 ) {
59  if ( strcasecmp(l->name, str) == 0 )
60   return l->id;
61  l++;
62 }
63
64 return -1;
65}
66
67char * roardsp_filter_id2str(int id) {
68 struct _roardsp_filterlist * l = _roardsp_filterlist;
69
70 while ( l->id != -1 ) {
71  if ( l->id == id )
72   return l->name;
73  l++;
74 }
75
76 return NULL;
77}
78
79int roardsp_filter_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id) {
80 struct _roardsp_filterlist * l = _roardsp_filterlist;
81 int bytes;
82 int (*calc)(struct roardsp_filter * filter, void * data, size_t samples) = NULL;
83
84 if ( filter == NULL || stream == NULL ) {
85  ROAR_DBG("roardsp_filter_init(*) = -1 // filter or stream is NULL");
86  return -1;
87 }
88
89 ROAR_DBG("roardsp_filter_init(filter=%p, stream=%p, id=%i) = ?", filter, stream, id);
90
91 memset(filter, 0, sizeof(struct roardsp_filter));
92
93 filter->channels = stream->info.channels;
94 filter->bits     = stream->info.bits;
95 filter->rate     = stream->info.rate;
96
97 bytes            = stream->info.bits / 8;
98
99 while ( l->id != id ) {
100  if ( l->id == -1 )
101   return -1;
102  l++;
103 }
104
105 filter->uninit = l->uninit;
106 filter->ctl    = l->ctl;
107
108 if ( filter->channels < 3 )
109  calc = l->calc[bytes][filter->channels];
110
111 if ( calc == NULL )
112  calc = l->calc[bytes][0]; // for n channels
113
114 if ( calc == NULL ) {
115  ROAR_DBG("roardsp_filter_init(*) = -1 // no calc code");
116  return -1;
117 }
118
119 filter->calc = calc;
120
121 if ( l->init ) {
122  ROAR_DBG("roardsp_filter_init(*) = ? // execing init");
123  return l->init(filter, stream, id);
124 }
125
126 ROAR_DBG("roardsp_filter_init(*) = 0 // no init");
127 return 0;
128}
129
130int roardsp_filter_uninit(struct roardsp_filter * filter) {
131 int ret = 0;
132
133 if ( filter == NULL )
134  return -1;
135
136 if ( filter->uninit )
137  ret = filter->uninit(filter);
138
139 memset(filter, 0, sizeof(struct roardsp_filter));
140
141 return ret;
142}
143
144int roardsp_filter_calc  (struct roardsp_filter * filter, void * data, size_t len) {
145 int ret = 0;
146
147 if ( filter == NULL )
148  return -1;
149
150 if ( filter->calc )
151  ret = filter->calc(filter, data, len);
152
153 return ret;
154}
155
156int    roardsp_filter_ctl   (struct roardsp_filter * filter, int cmd, void * data) {
157 if ( filter == NULL )
158  return -1;
159
160 if ( filter->ctl )
161  return filter->ctl(filter, cmd, data);
162
163 return -1;
164}
165
166//ll
Note: See TracBrowser for help on using the repository browser.