summaryrefslogtreecommitdiff
path: root/src/utils/scale.c
blob: 3bd116c8e8855b7642424a4d973bf5cff737a465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
  Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>

  This file is part of aubio.

  aubio is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  aubio is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with aubio.  If not, see <http://www.gnu.org/licenses/>.

*/

#include "aubio_priv.h"
#include "fvec.h"
#include "utils/scale.h"

struct _aubio_scale_t {
  smpl_t ilow;
  smpl_t ihig;
  smpl_t olow;
  smpl_t ohig;

  smpl_t scaler;
  smpl_t irange;

  /* not implemented yet : type in/out data
     bool inint;
     bool outint;
     */
};

aubio_scale_t * new_aubio_scale (smpl_t ilow, smpl_t ihig,
    smpl_t olow, smpl_t ohig) {
  aubio_scale_t * s = AUBIO_NEW(aubio_scale_t);
  aubio_scale_set_limits (s, ilow, ihig, olow, ohig);
  return s;
}

void del_aubio_scale(aubio_scale_t *s) {
  AUBIO_FREE(s);
}

uint_t aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
    smpl_t olow, smpl_t ohig) {
  smpl_t inputrange = ihig - ilow;
  smpl_t outputrange= ohig - olow;
  s->ilow = ilow;
  s->ihig = ihig;
  s->olow = olow;
  s->ohig = ohig;
  if (inputrange == 0) {
    s->scaler = 0.0;
  } else {
    s->scaler = outputrange/inputrange;
    if (inputrange < 0) {
      inputrange = inputrange * -1.0f;
    }
  }
  return AUBIO_OK;
}

void aubio_scale_do (aubio_scale_t *s, fvec_t *input) 
{
  uint_t j;
  for (j=0;  j < input->length; j++){
    input->data[j] -= s->ilow;
    input->data[j] *= s->scaler;
    input->data[j] += s->olow;
  }
}