source: src/spectral/dct_ooura.c @ bfbfafa

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

src/spectral/dct_fftw.c: add fftw implementation of dct type II

  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[60583a3]1/*
2  Copyright (C) 2017 Paul Brossier <piem@aubio.org>
3
4  This file is part of aubio.
5
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.
10
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/>.
18
19*/
20
21#include "aubio_priv.h"
22#include "fvec.h"
23#include "cvec.h"
24#include "spectral/dct.h"
25
[5d46eca]26#if !defined(HAVE_ACCELERATE) && !defined(HAVE_FFTW3)
27
[60583a3]28extern void aubio_ooura_ddct(int, int, smpl_t *, int *, smpl_t *);
29
30struct _aubio_dct_t {
31  uint_t size;
32  fvec_t *input;
33  smpl_t *w;
34  int *ip;
[3873e5e]35  smpl_t scalers[5];
[60583a3]36};
37
38aubio_dct_t * new_aubio_dct (uint_t size) {
39  aubio_dct_t * s = AUBIO_NEW(aubio_dct_t);
40  if (aubio_is_power_of_two(size) != 1) {
41    AUBIO_ERR("dct: can only create with sizes power of two, requested %d\n",
42        size);
43    goto beach;
44  }
45  s->size = size;
46  s->input = new_fvec(s->size);
47  s->w = AUBIO_ARRAY(smpl_t, s->size * 5 / 4);
48  s->ip = AUBIO_ARRAY(int, 3 + (1 << (int)FLOOR(LOG(s->size/2) / LOG(2))) / 2);
49  s->ip[0] = 0;
[3873e5e]50  s->scalers[0] = 2. * SQRT(1./(4.*s->size));
51  s->scalers[1] = 2. * SQRT(1./(2.*s->size));
52  s->scalers[2] = 1. / s->scalers[0];
53  s->scalers[3] = 1. / s->scalers[1];
54  s->scalers[4] = 2. / s->size;
[60583a3]55  return s;
56beach:
57  AUBIO_FREE(s);
58  return NULL;
59}
60
61void del_aubio_dct(aubio_dct_t *s) {
62  del_fvec(s->input);
63  AUBIO_FREE(s->ip);
64  AUBIO_FREE(s->w);
65  AUBIO_FREE(s);
66}
67
68void aubio_dct_do(aubio_dct_t *s, const fvec_t *input, fvec_t *output) {
69  uint_t i = 0;
70  fvec_copy(input, s->input);
71  aubio_ooura_ddct(s->size, -1, s->input->data, s->ip, s->w);
72  // apply orthonormal scaling
[3873e5e]73  s->input->data[0] *= s->scalers[0];
[60583a3]74  for (i = 1; i < s->input->length; i++) {
[3873e5e]75    s->input->data[i] *= s->scalers[1];
[60583a3]76  }
77  fvec_copy(s->input, output);
78}
79
80void aubio_dct_rdo(aubio_dct_t *s, const fvec_t *input, fvec_t *output) {
81  uint_t i = 0;
82  fvec_copy(input, s->input);
[3873e5e]83  s->input->data[0] *= s->scalers[2];
[60583a3]84  for (i = 1; i < s->input->length; i++) {
[3873e5e]85    s->input->data[i] *= s->scalers[3];
[60583a3]86  }
87  s->input->data[0] *= .5;
88  aubio_ooura_ddct(s->size, 1, s->input->data, s->ip, s->w);
89  for (i = 0; i < s->input->length; i++) {
[3873e5e]90    s->input->data[i] *= s->scalers[4];
[60583a3]91  }
92  fvec_copy(s->input, output);
93}
[5d46eca]94
95#endif //!defined(HAVE_ACCELERATE) && !defined(HAVE_FFTW3)
Note: See TracBrowser for help on using the repository browser.