source: src/io/sink.c @ 3cc3fd8

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 3cc3fd8 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
RevLine 
[9316173]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"
[8aed26d]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
[52ca8a3]31#ifdef HAVE_WAVWRITE
32#include "io/sink_wavwrite.h"
33#endif
[9316173]34
[4b7747d]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
[a9fd272]41typedef uint_t (*aubio_sink_close_t)(aubio_sink_t * s);
[082c88b]42typedef void (*del_aubio_sink_t)(aubio_sink_t * s);
[4b7747d]43
[9316173]44struct _aubio_sink_t { 
[8aed26d]45  void *sink;
[4b7747d]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
[a9fd272]52  aubio_sink_close_t s_close;
[4b7747d]53  del_aubio_sink_t s_del;
[9316173]54};
55
[8aed26d]56aubio_sink_t * new_aubio_sink(char_t * uri, uint_t samplerate) {
[4d75b46]57  aubio_sink_t * s = AUBIO_NEW(aubio_sink_t);
[8aed26d]58#ifdef __APPLE__
59  s->sink = (void *)new_aubio_sink_apple_audio(uri, samplerate);
[4b7747d]60  if (s->sink) {
61    s->s_do = (aubio_sink_do_t)(aubio_sink_apple_audio_do);
[a9fd272]62    s->s_close = (aubio_sink_close_t)(aubio_sink_apple_audio_close);
[4b7747d]63    s->s_del = (del_aubio_sink_t)(del_aubio_sink_apple_audio);
64    return s;
65  }
66#endif /* __APPLE__ */
[8aed26d]67#if HAVE_SNDFILE
68  s->sink = (void *)new_aubio_sink_sndfile(uri, samplerate);
[4b7747d]69  if (s->sink) {
70    s->s_do = (aubio_sink_do_t)(aubio_sink_sndfile_do);
[a9fd272]71    s->s_close = (aubio_sink_close_t)(aubio_sink_sndfile_close);
[4b7747d]72    s->s_del = (del_aubio_sink_t)(del_aubio_sink_sndfile);
73    return s;
74  }
[8aed26d]75#endif /* HAVE_SNDFILE */
[52ca8a3]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);
[a9fd272]80    s->s_close = (aubio_sink_close_t)(aubio_sink_wavwrite_close);
[52ca8a3]81    s->s_del = (del_aubio_sink_t)(del_aubio_sink_wavwrite);
82    return s;
83  }
84#endif /* HAVE_WAVWRITE */
[a9fd272]85  AUBIO_ERROR("sink: failed creating %s with samplerate %dHz\n",
86      uri, samplerate);
[779966b]87  AUBIO_FREE(s);
88  return NULL;
[9316173]89}
90
[8aed26d]91void aubio_sink_do(aubio_sink_t * s, fvec_t * write_data, uint_t write) {
[4b7747d]92  s->s_do((void *)s->sink, write_data, write);
[9316173]93}
94
[a9fd272]95uint_t aubio_sink_close(aubio_sink_t *s) {
96  return s->s_close((void *)s->sink);
97}
98
[9316173]99void del_aubio_sink(aubio_sink_t * s) {
[779966b]100  if (!s) return;
[4b7747d]101  s->s_del((void *)s->sink);
[4d75b46]102  AUBIO_FREE(s);
[9316173]103  return;
104}
Note: See TracBrowser for help on using the repository browser.