source: src/io/sink.c @ c21553d

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

src/io/sink*: add _close function, improve error messages

  • Property mode set to 100644
File size: 3.1 KB
Line 
1/*
2  Copyright (C) 2012 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 "config.h"
22#include "aubio_priv.h"
23#include "fvec.h"
24#include "io/sink.h"
25#ifdef __APPLE__
26#include "io/sink_apple_audio.h"
27#endif /* __APPLE__ */
28#ifdef HAVE_SNDFILE
29#include "io/sink_sndfile.h"
30#endif
31#ifdef HAVE_WAVWRITE
32#include "io/sink_wavwrite.h"
33#endif
34
35typedef void (*aubio_sink_do_t)(aubio_sink_t * s, fvec_t * data, uint_t write);
36#if 0
37typedef void (*aubio_sink_do_multi_t)(aubio_sink_t * s, fmat_t * data, uint_t * read);
38typedef uint_t (*aubio_sink_get_samplerate_t)(aubio_sink_t * s);
39typedef uint_t (*aubio_sink_get_channels_t)(aubio_sink_t * s);
40#endif
41typedef uint_t (*aubio_sink_close_t)(aubio_sink_t * s);
42typedef void (*del_aubio_sink_t)(aubio_sink_t * s);
43
44struct _aubio_sink_t { 
45  void *sink;
46  aubio_sink_do_t s_do;
47#if 0
48  aubio_sink_do_multi_t s_do_multi;
49  aubio_sink_get_samplerate_t s_get_samplerate;
50  aubio_sink_get_channels_t s_get_channels;
51#endif
52  aubio_sink_close_t s_close;
53  del_aubio_sink_t s_del;
54};
55
56aubio_sink_t * new_aubio_sink(char_t * uri, uint_t samplerate) {
57  aubio_sink_t * s = AUBIO_NEW(aubio_sink_t);
58#ifdef __APPLE__
59  s->sink = (void *)new_aubio_sink_apple_audio(uri, samplerate);
60  if (s->sink) {
61    s->s_do = (aubio_sink_do_t)(aubio_sink_apple_audio_do);
62    s->s_close = (aubio_sink_close_t)(aubio_sink_apple_audio_close);
63    s->s_del = (del_aubio_sink_t)(del_aubio_sink_apple_audio);
64    return s;
65  }
66#endif /* __APPLE__ */
67#if HAVE_SNDFILE
68  s->sink = (void *)new_aubio_sink_sndfile(uri, samplerate);
69  if (s->sink) {
70    s->s_do = (aubio_sink_do_t)(aubio_sink_sndfile_do);
71    s->s_close = (aubio_sink_close_t)(aubio_sink_sndfile_close);
72    s->s_del = (del_aubio_sink_t)(del_aubio_sink_sndfile);
73    return s;
74  }
75#endif /* HAVE_SNDFILE */
76#if HAVE_WAVWRITE
77  s->sink = (void *)new_aubio_sink_wavwrite(uri, samplerate);
78  if (s->sink) {
79    s->s_do = (aubio_sink_do_t)(aubio_sink_wavwrite_do);
80    s->s_close = (aubio_sink_close_t)(aubio_sink_wavwrite_close);
81    s->s_del = (del_aubio_sink_t)(del_aubio_sink_wavwrite);
82    return s;
83  }
84#endif /* HAVE_WAVWRITE */
85  AUBIO_ERROR("sink: failed creating %s with samplerate %dHz\n",
86      uri, samplerate);
87  AUBIO_FREE(s);
88  return NULL;
89}
90
91void aubio_sink_do(aubio_sink_t * s, fvec_t * write_data, uint_t write) {
92  s->s_do((void *)s->sink, write_data, write);
93}
94
95uint_t aubio_sink_close(aubio_sink_t *s) {
96  return s->s_close((void *)s->sink);
97}
98
99void del_aubio_sink(aubio_sink_t * s) {
100  if (!s) return;
101  s->s_del((void *)s->sink);
102  AUBIO_FREE(s);
103  return;
104}
Note: See TracBrowser for help on using the repository browser.