[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 "aubio_priv.h" |
---|
| 22 | #include "fvec.h" |
---|
[4865e4b] | 23 | #include "fmat.h" |
---|
[9316173] | 24 | #include "io/source.h" |
---|
[549928e] | 25 | #ifdef HAVE_LIBAV |
---|
[1b0755d] | 26 | #include "io/source_avcodec.h" |
---|
[549928e] | 27 | #endif /* HAVE_LIBAV */ |
---|
[9209c79] | 28 | #ifdef HAVE_SOURCE_APPLE_AUDIO |
---|
[c9b99fd] | 29 | #include "io/source_apple_audio.h" |
---|
[9209c79] | 30 | #endif /* HAVE_SOURCE_APPLE_AUDIO */ |
---|
[afbd7e7] | 31 | #ifdef HAVE_SNDFILE |
---|
| 32 | #include "io/source_sndfile.h" |
---|
[1b0755d] | 33 | #endif /* HAVE_SNDFILE */ |
---|
[52efae1] | 34 | #ifdef HAVE_WAVREAD |
---|
| 35 | #include "io/source_wavread.h" |
---|
| 36 | #endif /* HAVE_WAVREAD */ |
---|
[1b0755d] | 37 | |
---|
| 38 | typedef void (*aubio_source_do_t)(aubio_source_t * s, fvec_t * data, uint_t * read); |
---|
| 39 | typedef void (*aubio_source_do_multi_t)(aubio_source_t * s, fmat_t * data, uint_t * read); |
---|
| 40 | typedef uint_t (*aubio_source_get_samplerate_t)(aubio_source_t * s); |
---|
| 41 | typedef uint_t (*aubio_source_get_channels_t)(aubio_source_t * s); |
---|
[857f8871] | 42 | typedef uint_t (*aubio_source_get_duration_t)(aubio_source_t * s); |
---|
[1b0755d] | 43 | typedef uint_t (*aubio_source_seek_t)(aubio_source_t * s, uint_t seek); |
---|
[422452b] | 44 | typedef uint_t (*aubio_source_close_t)(aubio_source_t * s); |
---|
[082c88b] | 45 | typedef void (*del_aubio_source_t)(aubio_source_t * s); |
---|
[9316173] | 46 | |
---|
| 47 | struct _aubio_source_t { |
---|
[3504dfe7] | 48 | void *source; |
---|
[1b0755d] | 49 | aubio_source_do_t s_do; |
---|
| 50 | aubio_source_do_multi_t s_do_multi; |
---|
| 51 | aubio_source_get_samplerate_t s_get_samplerate; |
---|
| 52 | aubio_source_get_channels_t s_get_channels; |
---|
[857f8871] | 53 | aubio_source_get_duration_t s_get_duration; |
---|
[1b0755d] | 54 | aubio_source_seek_t s_seek; |
---|
[422452b] | 55 | aubio_source_close_t s_close; |
---|
[1b0755d] | 56 | del_aubio_source_t s_del; |
---|
[9316173] | 57 | }; |
---|
| 58 | |
---|
[ae5d58a] | 59 | aubio_source_t * new_aubio_source(const char_t * uri, uint_t samplerate, uint_t hop_size) { |
---|
[3504dfe7] | 60 | aubio_source_t * s = AUBIO_NEW(aubio_source_t); |
---|
[de66709] | 61 | #ifdef HAVE_LIBAV |
---|
[1b0755d] | 62 | s->source = (void *)new_aubio_source_avcodec(uri, samplerate, hop_size); |
---|
| 63 | if (s->source) { |
---|
| 64 | s->s_do = (aubio_source_do_t)(aubio_source_avcodec_do); |
---|
| 65 | s->s_do_multi = (aubio_source_do_multi_t)(aubio_source_avcodec_do_multi); |
---|
| 66 | s->s_get_channels = (aubio_source_get_channels_t)(aubio_source_avcodec_get_channels); |
---|
| 67 | s->s_get_samplerate = (aubio_source_get_samplerate_t)(aubio_source_avcodec_get_samplerate); |
---|
[857f8871] | 68 | s->s_get_duration = (aubio_source_get_duration_t)(aubio_source_avcodec_get_duration); |
---|
[1b0755d] | 69 | s->s_seek = (aubio_source_seek_t)(aubio_source_avcodec_seek); |
---|
[422452b] | 70 | s->s_close = (aubio_source_close_t)(aubio_source_avcodec_close); |
---|
[1b0755d] | 71 | s->s_del = (del_aubio_source_t)(del_aubio_source_avcodec); |
---|
| 72 | return s; |
---|
| 73 | } |
---|
[549928e] | 74 | #endif /* HAVE_LIBAV */ |
---|
[9209c79] | 75 | #ifdef HAVE_SOURCE_APPLE_AUDIO |
---|
[42e6a5e] | 76 | s->source = (void *)new_aubio_source_apple_audio(uri, samplerate, hop_size); |
---|
[1b0755d] | 77 | if (s->source) { |
---|
| 78 | s->s_do = (aubio_source_do_t)(aubio_source_apple_audio_do); |
---|
| 79 | s->s_do_multi = (aubio_source_do_multi_t)(aubio_source_apple_audio_do_multi); |
---|
| 80 | s->s_get_channels = (aubio_source_get_channels_t)(aubio_source_apple_audio_get_channels); |
---|
| 81 | s->s_get_samplerate = (aubio_source_get_samplerate_t)(aubio_source_apple_audio_get_samplerate); |
---|
[857f8871] | 82 | s->s_get_duration = (aubio_source_get_duration_t)(aubio_source_apple_audio_get_duration); |
---|
[1b0755d] | 83 | s->s_seek = (aubio_source_seek_t)(aubio_source_apple_audio_seek); |
---|
[422452b] | 84 | s->s_close = (aubio_source_close_t)(aubio_source_apple_audio_close); |
---|
[1b0755d] | 85 | s->s_del = (del_aubio_source_t)(del_aubio_source_apple_audio); |
---|
| 86 | return s; |
---|
| 87 | } |
---|
[9209c79] | 88 | #endif /* HAVE_SOURCE_APPLE_AUDIO */ |
---|
[de66709] | 89 | #ifdef HAVE_SNDFILE |
---|
[42e6a5e] | 90 | s->source = (void *)new_aubio_source_sndfile(uri, samplerate, hop_size); |
---|
[1b0755d] | 91 | if (s->source) { |
---|
| 92 | s->s_do = (aubio_source_do_t)(aubio_source_sndfile_do); |
---|
| 93 | s->s_do_multi = (aubio_source_do_multi_t)(aubio_source_sndfile_do_multi); |
---|
| 94 | s->s_get_channels = (aubio_source_get_channels_t)(aubio_source_sndfile_get_channels); |
---|
| 95 | s->s_get_samplerate = (aubio_source_get_samplerate_t)(aubio_source_sndfile_get_samplerate); |
---|
[857f8871] | 96 | s->s_get_duration = (aubio_source_get_duration_t)(aubio_source_sndfile_get_duration); |
---|
[1b0755d] | 97 | s->s_seek = (aubio_source_seek_t)(aubio_source_sndfile_seek); |
---|
[422452b] | 98 | s->s_close = (aubio_source_close_t)(aubio_source_sndfile_close); |
---|
[1b0755d] | 99 | s->s_del = (del_aubio_source_t)(del_aubio_source_sndfile); |
---|
| 100 | return s; |
---|
| 101 | } |
---|
[afbd7e7] | 102 | #endif /* HAVE_SNDFILE */ |
---|
[de66709] | 103 | #ifdef HAVE_WAVREAD |
---|
[52efae1] | 104 | s->source = (void *)new_aubio_source_wavread(uri, samplerate, hop_size); |
---|
| 105 | if (s->source) { |
---|
| 106 | s->s_do = (aubio_source_do_t)(aubio_source_wavread_do); |
---|
| 107 | s->s_do_multi = (aubio_source_do_multi_t)(aubio_source_wavread_do_multi); |
---|
| 108 | s->s_get_channels = (aubio_source_get_channels_t)(aubio_source_wavread_get_channels); |
---|
| 109 | s->s_get_samplerate = (aubio_source_get_samplerate_t)(aubio_source_wavread_get_samplerate); |
---|
[857f8871] | 110 | s->s_get_duration = (aubio_source_get_duration_t)(aubio_source_wavread_get_duration); |
---|
[52efae1] | 111 | s->s_seek = (aubio_source_seek_t)(aubio_source_wavread_seek); |
---|
[422452b] | 112 | s->s_close = (aubio_source_close_t)(aubio_source_wavread_close); |
---|
[52efae1] | 113 | s->s_del = (del_aubio_source_t)(del_aubio_source_wavread); |
---|
| 114 | return s; |
---|
| 115 | } |
---|
| 116 | #endif /* HAVE_WAVREAD */ |
---|
[cf894b1] | 117 | //AUBIO_ERROR("source: failed creating aubio source with %s" |
---|
| 118 | // " at samplerate %d with hop_size %d\n", uri, samplerate, hop_size); |
---|
[e3b5962] | 119 | AUBIO_FREE(s); |
---|
| 120 | return NULL; |
---|
[9316173] | 121 | } |
---|
| 122 | |
---|
[3504dfe7] | 123 | void aubio_source_do(aubio_source_t * s, fvec_t * data, uint_t * read) { |
---|
[1b0755d] | 124 | s->s_do((void *)s->source, data, read); |
---|
[9316173] | 125 | } |
---|
| 126 | |
---|
[4865e4b] | 127 | void aubio_source_do_multi(aubio_source_t * s, fmat_t * data, uint_t * read) { |
---|
[1b0755d] | 128 | s->s_do_multi((void *)s->source, data, read); |
---|
[4865e4b] | 129 | } |
---|
| 130 | |
---|
[422452b] | 131 | uint_t aubio_source_close(aubio_source_t * s) { |
---|
| 132 | return s->s_close((void *)s->source); |
---|
| 133 | } |
---|
| 134 | |
---|
[9316173] | 135 | void del_aubio_source(aubio_source_t * s) { |
---|
[32df658] | 136 | if (!s) return; |
---|
[1b0755d] | 137 | s->s_del((void *)s->source); |
---|
[3504dfe7] | 138 | AUBIO_FREE(s); |
---|
[9316173] | 139 | } |
---|
| 140 | |
---|
[944c7e1] | 141 | uint_t aubio_source_get_samplerate(aubio_source_t * s) { |
---|
[1b0755d] | 142 | return s->s_get_samplerate((void *)s->source); |
---|
[944c7e1] | 143 | } |
---|
| 144 | |
---|
[4865e4b] | 145 | uint_t aubio_source_get_channels(aubio_source_t * s) { |
---|
[1b0755d] | 146 | return s->s_get_channels((void *)s->source); |
---|
[4865e4b] | 147 | } |
---|
| 148 | |
---|
[857f8871] | 149 | uint_t aubio_source_get_duration(aubio_source_t *s) { |
---|
| 150 | return s->s_get_duration((void *)s->source); |
---|
| 151 | } |
---|
| 152 | |
---|
[7982203] | 153 | uint_t aubio_source_seek (aubio_source_t * s, uint_t seek ) { |
---|
[1b0755d] | 154 | return s->s_seek((void *)s->source, seek); |
---|
[7982203] | 155 | } |
---|