source: src/spectral/phasevoc.h @ 779966b

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

src/spectral: switch to mono

  • Property mode set to 100644
File size: 2.7 KB
Line 
1/*
2  Copyright (C) 2003-2009 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/** \file
22
23  Phase vocoder object
24
25  This object implements a phase vocoder. The spectral frames are computed
26  using a HanningZ window and a swapped version of the signal to simplify the
27  phase relationships across frames. The window sizes and overlap are specified
28  at creation time.
29
30*/
31
32#ifndef _PHASEVOC_H
33#define _PHASEVOC_H
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/** phasevocoder object */
40typedef struct _aubio_pvoc_t aubio_pvoc_t;
41
42/** create phase vocoder object
43
44  \param win_s size of analysis buffer (and length the FFT transform)
45  \param hop_s step size between two consecutive analysis
46
47*/
48aubio_pvoc_t * new_aubio_pvoc (uint_t win_s, uint_t hop_s);
49/** delete phase vocoder object
50
51  \param pv phase vocoder object as returned by new_aubio_pvoc
52
53*/
54void del_aubio_pvoc(aubio_pvoc_t *pv);
55
56/** compute spectral frame
57 
58  This function accepts an input vector of size [hop_s]. The
59  analysis buffer is rotated and filled with the new data. After windowing of
60  this signal window, the Fourier transform is computed and returned in
61  fftgrain as two vectors, magnitude and phase.
62
63  \param pv phase vocoder object as returned by new_aubio_pvoc
64  \param in new input signal (hop_s long)
65  \param fftgrain output spectral frame
66
67*/
68void aubio_pvoc_do(aubio_pvoc_t *pv, fvec_t *in, cvec_t * fftgrain);
69/** compute signal from spectral frame
70
71  This function takes an input spectral frame fftgrain of size
72  [buf_s] and computes its inverse Fourier transform. Overlap-add
73  synthesis is then computed using the previously synthetised frames, and the
74  output stored in out.
75 
76  \param pv phase vocoder object as returned by new_aubio_pvoc
77  \param fftgrain input spectral frame
78  \param out output signal (hop_s long)
79
80*/
81void aubio_pvoc_rdo(aubio_pvoc_t *pv, cvec_t * fftgrain, fvec_t *out);
82
83/** get window size
84
85  \param pv phase vocoder to get the window size from
86
87*/
88uint_t aubio_pvoc_get_win(aubio_pvoc_t* pv);
89/** get hop size
90
91  \param pv phase vocoder to get the hop size from
92
93*/
94uint_t aubio_pvoc_get_hop(aubio_pvoc_t* pv);
95
96#ifdef __cplusplus
97}
98#endif
99
100#endif
Note: See TracBrowser for help on using the repository browser.