1 | /* |
---|
2 | Copyright (C) 2012-2014 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 "fmat.h" |
---|
24 | #include "io/sink.h" |
---|
25 | #ifdef HAVE_SINK_APPLE_AUDIO |
---|
26 | #include "io/sink_apple_audio.h" |
---|
27 | #endif /* HAVE_SINK_APPLE_AUDIO */ |
---|
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 | |
---|
35 | typedef void (*aubio_sink_do_t)(aubio_sink_t * s, fvec_t * data, uint_t write); |
---|
36 | typedef void (*aubio_sink_do_multi_t)(aubio_sink_t * s, fmat_t * data, uint_t write); |
---|
37 | typedef uint_t (*aubio_sink_preset_samplerate_t)(aubio_sink_t * s, uint_t samplerate); |
---|
38 | typedef uint_t (*aubio_sink_preset_channels_t)(aubio_sink_t * s, uint_t channels); |
---|
39 | typedef uint_t (*aubio_sink_get_samplerate_t)(aubio_sink_t * s); |
---|
40 | typedef uint_t (*aubio_sink_get_channels_t)(aubio_sink_t * s); |
---|
41 | typedef uint_t (*aubio_sink_close_t)(aubio_sink_t * s); |
---|
42 | typedef void (*del_aubio_sink_t)(aubio_sink_t * s); |
---|
43 | |
---|
44 | struct _aubio_sink_t { |
---|
45 | void *sink; |
---|
46 | aubio_sink_do_t s_do; |
---|
47 | aubio_sink_do_multi_t s_do_multi; |
---|
48 | aubio_sink_preset_samplerate_t s_preset_samplerate; |
---|
49 | aubio_sink_preset_channels_t s_preset_channels; |
---|
50 | aubio_sink_get_samplerate_t s_get_samplerate; |
---|
51 | aubio_sink_get_channels_t s_get_channels; |
---|
52 | aubio_sink_close_t s_close; |
---|
53 | del_aubio_sink_t s_del; |
---|
54 | }; |
---|
55 | |
---|
56 | extern uint_t aubio_str_path_has_extension(const char_t *filename, |
---|
57 | const char_t *pattern); |
---|
58 | |
---|
59 | #ifdef HAVE_VORBISENC |
---|
60 | typedef struct _aubio_sink_vorbis_t aubio_sink_vorbis_t; |
---|
61 | extern aubio_sink_vorbis_t * new_aubio_sink_vorbis(const char_t *uri, |
---|
62 | uint_t samplerate); |
---|
63 | extern void del_aubio_sink_vorbis (aubio_sink_vorbis_t *s); |
---|
64 | extern uint_t aubio_sink_vorbis_open(aubio_sink_vorbis_t *s); |
---|
65 | extern uint_t aubio_sink_vorbis_close(aubio_sink_vorbis_t *s); |
---|
66 | extern uint_t aubio_sink_vorbis_preset_channels(aubio_sink_vorbis_t *s, |
---|
67 | uint_t channels); |
---|
68 | extern uint_t aubio_sink_vorbis_preset_samplerate(aubio_sink_vorbis_t *s, |
---|
69 | uint_t samplerate); |
---|
70 | extern uint_t aubio_sink_vorbis_get_channels(aubio_sink_vorbis_t *s); |
---|
71 | extern uint_t aubio_sink_vorbis_get_samplerate(aubio_sink_vorbis_t *s); |
---|
72 | extern void aubio_sink_vorbis_do(aubio_sink_vorbis_t *s, fvec_t* |
---|
73 | write_data, uint_t write); |
---|
74 | extern void aubio_sink_vorbis_do_multi(aubio_sink_vorbis_t *s, fmat_t* |
---|
75 | write_data, uint_t write); |
---|
76 | #endif /* HAVE_VORBISENC */ |
---|
77 | |
---|
78 | #ifdef HAVE_FLAC |
---|
79 | typedef struct _aubio_sink_flac_t aubio_sink_flac_t; |
---|
80 | extern aubio_sink_flac_t * new_aubio_sink_flac(const char_t *uri, |
---|
81 | uint_t samplerate); |
---|
82 | extern void del_aubio_sink_flac (aubio_sink_flac_t *s); |
---|
83 | extern uint_t aubio_sink_flac_open(aubio_sink_flac_t *s); |
---|
84 | extern uint_t aubio_sink_flac_close(aubio_sink_flac_t *s); |
---|
85 | extern uint_t aubio_sink_flac_preset_channels(aubio_sink_flac_t *s, |
---|
86 | uint_t channels); |
---|
87 | extern uint_t aubio_sink_flac_preset_samplerate(aubio_sink_flac_t *s, |
---|
88 | uint_t samplerate); |
---|
89 | extern uint_t aubio_sink_flac_get_channels(aubio_sink_flac_t *s); |
---|
90 | extern uint_t aubio_sink_flac_get_samplerate(aubio_sink_flac_t *s); |
---|
91 | extern void aubio_sink_flac_do(aubio_sink_flac_t *s, fvec_t* |
---|
92 | write_data, uint_t write); |
---|
93 | extern void aubio_sink_flac_do_multi(aubio_sink_flac_t *s, fmat_t* |
---|
94 | write_data, uint_t write); |
---|
95 | #endif /* HAVE_FLAC */ |
---|
96 | |
---|
97 | aubio_sink_t * new_aubio_sink(const char_t * uri, uint_t samplerate) { |
---|
98 | aubio_sink_t * s = AUBIO_NEW(aubio_sink_t); |
---|
99 | |
---|
100 | #ifdef HAVE_VORBISENC |
---|
101 | // check if this uri could be for us |
---|
102 | if (aubio_str_path_has_extension(uri, "ogg")) { |
---|
103 | s->sink = (void *)new_aubio_sink_vorbis(uri, samplerate); |
---|
104 | if (s->sink) { |
---|
105 | s->s_do = (aubio_sink_do_t)(aubio_sink_vorbis_do); |
---|
106 | s->s_do_multi = (aubio_sink_do_multi_t)(aubio_sink_vorbis_do_multi); |
---|
107 | s->s_preset_samplerate = (aubio_sink_preset_samplerate_t)(aubio_sink_vorbis_preset_samplerate); |
---|
108 | s->s_preset_channels = (aubio_sink_preset_channels_t)(aubio_sink_vorbis_preset_channels); |
---|
109 | s->s_get_samplerate = (aubio_sink_get_samplerate_t)(aubio_sink_vorbis_get_samplerate); |
---|
110 | s->s_get_channels = (aubio_sink_get_channels_t)(aubio_sink_vorbis_get_channels); |
---|
111 | s->s_close = (aubio_sink_close_t)(aubio_sink_vorbis_close); |
---|
112 | s->s_del = (del_aubio_sink_t)(del_aubio_sink_vorbis); |
---|
113 | return s; |
---|
114 | } |
---|
115 | } |
---|
116 | #endif /* HAVE_VORBISENC */ |
---|
117 | |
---|
118 | #ifdef HAVE_FLAC |
---|
119 | // check if this uri could be for us |
---|
120 | if (aubio_str_path_has_extension(uri, "flac")) { |
---|
121 | s->sink = (void *)new_aubio_sink_flac(uri, samplerate); |
---|
122 | if (s->sink) { |
---|
123 | s->s_do = (aubio_sink_do_t)(aubio_sink_flac_do); |
---|
124 | s->s_do_multi = (aubio_sink_do_multi_t)(aubio_sink_flac_do_multi); |
---|
125 | s->s_preset_samplerate = (aubio_sink_preset_samplerate_t)(aubio_sink_flac_preset_samplerate); |
---|
126 | s->s_preset_channels = (aubio_sink_preset_channels_t)(aubio_sink_flac_preset_channels); |
---|
127 | s->s_get_samplerate = (aubio_sink_get_samplerate_t)(aubio_sink_flac_get_samplerate); |
---|
128 | s->s_get_channels = (aubio_sink_get_channels_t)(aubio_sink_flac_get_channels); |
---|
129 | s->s_close = (aubio_sink_close_t)(aubio_sink_flac_close); |
---|
130 | s->s_del = (del_aubio_sink_t)(del_aubio_sink_flac); |
---|
131 | return s; |
---|
132 | } |
---|
133 | } |
---|
134 | #endif /* HAVE_FLAC */ |
---|
135 | |
---|
136 | #ifdef HAVE_SINK_APPLE_AUDIO |
---|
137 | s->sink = (void *)new_aubio_sink_apple_audio(uri, samplerate); |
---|
138 | if (s->sink) { |
---|
139 | s->s_do = (aubio_sink_do_t)(aubio_sink_apple_audio_do); |
---|
140 | s->s_do_multi = (aubio_sink_do_multi_t)(aubio_sink_apple_audio_do_multi); |
---|
141 | s->s_preset_samplerate = (aubio_sink_preset_samplerate_t)(aubio_sink_apple_audio_preset_samplerate); |
---|
142 | s->s_preset_channels = (aubio_sink_preset_channels_t)(aubio_sink_apple_audio_preset_channels); |
---|
143 | s->s_get_samplerate = (aubio_sink_get_samplerate_t)(aubio_sink_apple_audio_get_samplerate); |
---|
144 | s->s_get_channels = (aubio_sink_get_channels_t)(aubio_sink_apple_audio_get_channels); |
---|
145 | s->s_close = (aubio_sink_close_t)(aubio_sink_apple_audio_close); |
---|
146 | s->s_del = (del_aubio_sink_t)(del_aubio_sink_apple_audio); |
---|
147 | return s; |
---|
148 | } |
---|
149 | #endif /* HAVE_SINK_APPLE_AUDIO */ |
---|
150 | #ifdef HAVE_SNDFILE |
---|
151 | s->sink = (void *)new_aubio_sink_sndfile(uri, samplerate); |
---|
152 | if (s->sink) { |
---|
153 | s->s_do = (aubio_sink_do_t)(aubio_sink_sndfile_do); |
---|
154 | s->s_do_multi = (aubio_sink_do_multi_t)(aubio_sink_sndfile_do_multi); |
---|
155 | s->s_preset_samplerate = (aubio_sink_preset_samplerate_t)(aubio_sink_sndfile_preset_samplerate); |
---|
156 | s->s_preset_channels = (aubio_sink_preset_channels_t)(aubio_sink_sndfile_preset_channels); |
---|
157 | s->s_get_samplerate = (aubio_sink_get_samplerate_t)(aubio_sink_sndfile_get_samplerate); |
---|
158 | s->s_get_channels = (aubio_sink_get_channels_t)(aubio_sink_sndfile_get_channels); |
---|
159 | s->s_close = (aubio_sink_close_t)(aubio_sink_sndfile_close); |
---|
160 | s->s_del = (del_aubio_sink_t)(del_aubio_sink_sndfile); |
---|
161 | return s; |
---|
162 | } |
---|
163 | #endif /* HAVE_SNDFILE */ |
---|
164 | #ifdef HAVE_WAVWRITE |
---|
165 | s->sink = (void *)new_aubio_sink_wavwrite(uri, samplerate); |
---|
166 | if (s->sink) { |
---|
167 | s->s_do = (aubio_sink_do_t)(aubio_sink_wavwrite_do); |
---|
168 | s->s_do_multi = (aubio_sink_do_multi_t)(aubio_sink_wavwrite_do_multi); |
---|
169 | s->s_preset_samplerate = (aubio_sink_preset_samplerate_t)(aubio_sink_wavwrite_preset_samplerate); |
---|
170 | s->s_preset_channels = (aubio_sink_preset_channels_t)(aubio_sink_wavwrite_preset_channels); |
---|
171 | s->s_get_samplerate = (aubio_sink_get_samplerate_t)(aubio_sink_wavwrite_get_samplerate); |
---|
172 | s->s_get_channels = (aubio_sink_get_channels_t)(aubio_sink_wavwrite_get_channels); |
---|
173 | s->s_close = (aubio_sink_close_t)(aubio_sink_wavwrite_close); |
---|
174 | s->s_del = (del_aubio_sink_t)(del_aubio_sink_wavwrite); |
---|
175 | return s; |
---|
176 | } |
---|
177 | #endif /* HAVE_WAVWRITE */ |
---|
178 | #if !defined(HAVE_WAVWRITE) && \ |
---|
179 | !defined(HAVE_SNDFILE) && \ |
---|
180 | !defined(HAVE_SINK_APPLE_AUDIO) && \ |
---|
181 | !defined(HAVE_VORBISENC) && \ |
---|
182 | !defined(HAVE_FLAC) |
---|
183 | AUBIO_ERROR("sink: failed creating '%s' at %dHz (no sink built-in)\n", uri, samplerate); |
---|
184 | #endif |
---|
185 | del_aubio_sink(s); |
---|
186 | return NULL; |
---|
187 | } |
---|
188 | |
---|
189 | void aubio_sink_do(aubio_sink_t * s, fvec_t * write_data, uint_t write) { |
---|
190 | s->s_do((void *)s->sink, write_data, write); |
---|
191 | } |
---|
192 | |
---|
193 | void aubio_sink_do_multi(aubio_sink_t * s, fmat_t * write_data, uint_t write) { |
---|
194 | s->s_do_multi((void *)s->sink, write_data, write); |
---|
195 | } |
---|
196 | |
---|
197 | uint_t aubio_sink_preset_samplerate(aubio_sink_t * s, uint_t samplerate) { |
---|
198 | return s->s_preset_samplerate((void *)s->sink, samplerate); |
---|
199 | } |
---|
200 | |
---|
201 | uint_t aubio_sink_preset_channels(aubio_sink_t * s, uint_t channels) { |
---|
202 | return s->s_preset_channels((void *)s->sink, channels); |
---|
203 | } |
---|
204 | |
---|
205 | uint_t aubio_sink_get_samplerate(const aubio_sink_t * s) { |
---|
206 | return s->s_get_samplerate((void *)s->sink); |
---|
207 | } |
---|
208 | |
---|
209 | uint_t aubio_sink_get_channels(const aubio_sink_t * s) { |
---|
210 | return s->s_get_channels((void *)s->sink); |
---|
211 | } |
---|
212 | |
---|
213 | uint_t aubio_sink_close(aubio_sink_t *s) { |
---|
214 | return s->s_close((void *)s->sink); |
---|
215 | } |
---|
216 | |
---|
217 | void del_aubio_sink(aubio_sink_t * s) { |
---|
218 | AUBIO_ASSERT(s); |
---|
219 | if (s->s_del && s->sink) |
---|
220 | s->s_del((void *)s->sink); |
---|
221 | AUBIO_FREE(s); |
---|
222 | } |
---|