source: src/temporal/filter.c @ 23493b5

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 23493b5 was 23493b5, checked in by Paul Brossier <piem@piem.org>, 8 years ago

src/temporal/: add const qualifiers

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[96fb8ad]1/*
[a54502c]2  Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
[96fb8ad]3
[a54502c]4  This file is part of aubio.
[96fb8ad]5
[a54502c]6  aubio is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
[96fb8ad]10
[a54502c]11  aubio is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  GNU General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with aubio.  If not, see <http://www.gnu.org/licenses/>.
[96fb8ad]18
19*/
20
21
22/* Requires lsmp_t to be long or double. float will NOT give reliable
23 * results */
24
25#include "aubio_priv.h"
[6c7d49b]26#include "fvec.h"
[a7667ce]27#include "lvec.h"
[96fb8ad]28#include "mathutils.h"
[32d6958]29#include "temporal/filter.h"
[a4364b8]30
[a54502c]31struct _aubio_filter_t
32{
[a4364b8]33  uint_t order;
34  uint_t samplerate;
[a54502c]35  lvec_t *a;
36  lvec_t *b;
37  lvec_t *y;
38  lvec_t *x;
[a4364b8]39};
[96fb8ad]40
[a54502c]41void
[23493b5]42aubio_filter_do_outplace (aubio_filter_t * f, const fvec_t * in, fvec_t * out)
[a54502c]43{
44  fvec_copy (in, out);
[6481c0c]45  aubio_filter_do (f, out);
[96fb8ad]46}
47
[a54502c]48void
49aubio_filter_do (aubio_filter_t * f, fvec_t * in)
50{
[741bdda]51  uint_t j, l, order = f->order;
52  lsmp_t *x = f->x->data;
53  lsmp_t *y = f->y->data;
54  lsmp_t *a = f->a->data;
55  lsmp_t *b = f->b->data;
56
57  for (j = 0; j < in->length; j++) {
58    /* new input */
59    x[0] = KILL_DENORMAL (in->data[j]);
60    y[0] = b[0] * x[0];
61    for (l = 1; l < order; l++) {
62      y[0] += b[l] * x[l];
63      y[0] -= a[l] * y[l];
64    }
65    /* new output */
66    in->data[j] = y[0];
67    /* store for next sample */
68    for (l = order - 1; l > 0; l--) {
69      x[l] = x[l - 1];
70      y[l] = y[l - 1];
[96fb8ad]71    }
72  }
73}
74
[3f99693]75/* The rough way: reset memory of filter between each run to avoid end effects. */
[bafe71d]76void
77aubio_filter_do_filtfilt (aubio_filter_t * f, fvec_t * in, fvec_t * tmp)
78{
[741bdda]79  uint_t j;
[96fb8ad]80  uint_t length = in->length;
81  /* apply filtering */
[bafe71d]82  aubio_filter_do (f, in);
83  aubio_filter_do_reset (f);
[3f99693]84  /* mirror */
[96fb8ad]85  for (j = 0; j < length; j++)
[741bdda]86    tmp->data[length - j - 1] = in->data[j];
[3f99693]87  /* apply filtering on mirrored */
[bafe71d]88  aubio_filter_do (f, tmp);
89  aubio_filter_do_reset (f);
[96fb8ad]90  /* invert back */
91  for (j = 0; j < length; j++)
[741bdda]92    in->data[j] = tmp->data[length - j - 1];
[96fb8ad]93}
94
[a54502c]95lvec_t *
[23493b5]96aubio_filter_get_feedback (const aubio_filter_t * f)
[a54502c]97{
[a4364b8]98  return f->a;
99}
100
[a54502c]101lvec_t *
[23493b5]102aubio_filter_get_feedforward (const aubio_filter_t * f)
[a54502c]103{
[a4364b8]104  return f->b;
105}
106
[a54502c]107uint_t
[23493b5]108aubio_filter_get_order (const aubio_filter_t * f)
[a54502c]109{
[a4364b8]110  return f->order;
111}
112
[a54502c]113uint_t
[23493b5]114aubio_filter_get_samplerate (const aubio_filter_t * f)
[a54502c]115{
[a4364b8]116  return f->samplerate;
117}
118
[59c046d]119uint_t
120aubio_filter_set_samplerate (aubio_filter_t * f, uint_t samplerate)
121{
122  f->samplerate = samplerate;
123  return AUBIO_OK;
124}
125
[3f99693]126void
127aubio_filter_do_reset (aubio_filter_t * f)
128{
[bafe71d]129  lvec_zeros (f->x);
130  lvec_zeros (f->y);
[3f99693]131}
132
[a54502c]133aubio_filter_t *
[741bdda]134new_aubio_filter (uint_t order)
[a54502c]135{
136  aubio_filter_t *f = AUBIO_NEW (aubio_filter_t);
[9590e81]137  if ((sint_t)order < 1) {
138    AUBIO_FREE(f);
139    return NULL;
140  }
[741bdda]141  f->x = new_lvec (order);
142  f->y = new_lvec (order);
143  f->a = new_lvec (order);
144  f->b = new_lvec (order);
[59c046d]145  /* by default, samplerate is not set */
146  f->samplerate = 0;
[96fb8ad]147  f->order = order;
[a4364b8]148  /* set default to identity */
[9590e81]149  f->a->data[0] = 1.;
150  f->b->data[0] = 1.;
[96fb8ad]151  return f;
152}
153
[a54502c]154void
155del_aubio_filter (aubio_filter_t * f)
156{
157  del_lvec (f->a);
158  del_lvec (f->b);
159  del_lvec (f->x);
160  del_lvec (f->y);
161  AUBIO_FREE (f);
[bb20f87]162  return;
163}
Note: See TracBrowser for help on using the repository browser.