source: roaraudio/libroardsp/filter_lowp.c @ 5181:ca57e34b2a35

Last change on this file since 5181:ca57e34b2a35 was 5181:ca57e34b2a35, checked in by phi, 13 years ago

updated filters to support 8 and 32 bit as well as 16 bit

File size: 3.5 KB
Line 
1//filter_lowp.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2011
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, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include "libroardsp.h"
27
28#ifdef ROAR_HAVE_LIBM
29
30int roardsp_lowp_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id) {
31 struct roardsp_lowp * self = roar_mm_malloc(sizeof(struct roardsp_lowp));
32
33 ROAR_DBG("roardsp_lowp_init(*): self=%p", self);
34
35 if ( self == NULL )
36  return -1;
37
38 memset(self, 0, sizeof(struct roardsp_lowp));
39
40 filter->inst = (void*) self;
41
42 return roardsp_filter_reset(filter, ROARDSP_RESET_FULL);
43}
44
45int roardsp_lowp_uninit(struct roardsp_filter * filter) {
46 roar_mm_free(filter->inst);
47 return 0;
48}
49
50#define _calcX(bits,twobits) \
51int roardsp_lowp_calc##bits  (struct roardsp_filter * filter, void * data, size_t samples) { \
52 struct roardsp_lowp * self = (struct roardsp_lowp *) filter->inst; \
53 int##bits##_t * samp = (int##bits##_t *) data; \
54 register int##twobits##_t s; \
55 int i, c; \
56 int channels = filter->channels; \
57\
58 if ( channels > ROAR_MAX_CHANNELS ) \
59  return -1; \
60\
61 samples /= channels; \
62\
63 ROAR_DBG("roardsp_lowp_calc16(*): filtering %i frames of %i channels...", samples, channels); \
64\
65/*  *      output[N] = input[N] * A + output[N-1] * B */ \
66\
67 for (i = 0; i < samples; i++) { \
68  for (c = 0; c < channels; c++) { \
69   s = (int##twobits##_t)samp[i*channels + c] * self->a + (int##twobits##_t)self->old[c] * self->b; \
70\
71   s /= 65536; \
72\
73   samp[i*channels + c] = s; \
74   self->old[        c] = s; \
75  } \
76 } \
77\
78 return 0; \
79}
80
81_calcX(8,32) /* we need 32 bit not 16 bit here as we multiplay with 65536 internally */
82_calcX(16,32)
83_calcX(32,64)
84
85int roardsp_lowp_ctl   (struct roardsp_filter * filter, int cmd, void * data) {
86 struct roardsp_lowp * self = (struct roardsp_lowp *) filter->inst;
87 float lp;
88 float oldfreq;
89 float newfreq;
90
91 if ( cmd != ROARDSP_FCTL_FREQ ) {
92  roar_err_set(ROAR_ERROR_BADRQC);
93  return -1;
94 }
95
96 newfreq = *(float*)data;
97
98 lp = exp(-2. * M_PI * newfreq / filter->rate) * 65536.;
99
100 self->b = lp;
101 self->a = 65536. - lp;
102
103 oldfreq = self->freq / 1000.;
104 self->freq = newfreq * 1000.;
105
106 *(float*)data = oldfreq;
107
108 ROAR_DBG("roardsp_lowp_ctl(*): oldfreq=%f, newfreq=%f", oldfreq, newfreq);
109
110 return 0;
111}
112
113int roardsp_lowp_reset (struct roardsp_filter * filter, int what) {
114 struct roardsp_lowp * self;
115 float freq;
116
117 if ( filter == NULL )
118  return -1;
119
120 if ( filter->inst == NULL )
121  return -1;
122
123 self = filter->inst;
124 freq = filter->rate/2.45;
125
126 switch (what) {
127  case ROARDSP_RESET_NONE:
128    return  0;
129   break;
130  case ROARDSP_RESET_FULL:
131    roardsp_lowp_ctl(filter, ROARDSP_FCTL_FREQ, &freq);
132  case ROARDSP_RESET_STATE:
133    memset(self->old, 0, sizeof(int32_t)*ROAR_MAX_CHANNELS);
134    return  0;
135   break;
136  default:
137    return -1;
138 }
139
140 return -1;
141}
142
143#endif
144
145//ll
Note: See TracBrowser for help on using the repository browser.