[ba0ba10] | 1 | /* |
---|
| 2 | Copyright (C) 2013 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 | |
---|
[33d0242] | 21 | #include "aubio_priv.h" |
---|
[ba0ba10] | 22 | |
---|
[549928e] | 23 | #ifdef HAVE_LIBAV |
---|
[ba0ba10] | 24 | |
---|
[dcde285] | 25 | #include <libavcodec/avcodec.h> |
---|
| 26 | #include <libavformat/avformat.h> |
---|
[ba67cb6] | 27 | #if defined(HAVE_SWRESAMPLE) |
---|
| 28 | #include <libswresample/swresample.h> |
---|
| 29 | #elif defined(HAVE_AVRESAMPLE) |
---|
[dcde285] | 30 | #include <libavresample/avresample.h> |
---|
[ba67cb6] | 31 | #endif |
---|
[dcde285] | 32 | #include <libavutil/opt.h> |
---|
| 33 | #include <stdlib.h> |
---|
| 34 | |
---|
[a9c33a2] | 35 | // determine whether we use libavformat from ffmpeg or from libav |
---|
| 36 | #define FFMPEG_LIBAVFORMAT (LIBAVFORMAT_VERSION_MICRO > 99 ) |
---|
| 37 | // max_analyze_duration2 was used from ffmpeg libavformat 55.43.100 through 57.2.100 |
---|
[9ac77ac] | 38 | #define FFMPEG_LIBAVFORMAT_MAX_DUR2 FFMPEG_LIBAVFORMAT && ( \ |
---|
[a9c33a2] | 39 | (LIBAVFORMAT_VERSION_MAJOR == 55 && LIBAVFORMAT_VERSION_MINOR >= 43) \ |
---|
| 40 | || (LIBAVFORMAT_VERSION_MAJOR == 56) \ |
---|
| 41 | || (LIBAVFORMAT_VERSION_MAJOR == 57 && LIBAVFORMAT_VERSION_MINOR < 2) \ |
---|
| 42 | ) |
---|
[2a32644] | 43 | |
---|
[a2d628b] | 44 | // backward compatibility with libavcodec55 |
---|
[8250214] | 45 | #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(57,0,0) |
---|
[1504b7c] | 46 | #define HAVE_AUBIO_LIBAVCODEC_DEPRECATED 1 |
---|
[8250214] | 47 | #endif |
---|
| 48 | |
---|
| 49 | #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(55,28,1) |
---|
| 50 | #warning "libavcodec < 56 is deprecated" |
---|
[a2d628b] | 51 | #define av_frame_alloc avcodec_alloc_frame |
---|
| 52 | #define av_frame_free avcodec_free_frame |
---|
| 53 | #define av_packet_unref av_free_packet |
---|
| 54 | #endif |
---|
| 55 | |
---|
[ba0ba10] | 56 | #include "aubio_priv.h" |
---|
| 57 | #include "fvec.h" |
---|
| 58 | #include "fmat.h" |
---|
| 59 | #include "source_avcodec.h" |
---|
| 60 | |
---|
[5690daf] | 61 | #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56, 56, 0) |
---|
[0af9003] | 62 | #define AUBIO_AVCODEC_MAX_BUFFER_SIZE FF_MIN_BUFFER_SIZE |
---|
[5690daf] | 63 | #else |
---|
| 64 | #define AUBIO_AVCODEC_MAX_BUFFER_SIZE AV_INPUT_BUFFER_MIN_SIZE |
---|
| 65 | #endif |
---|
[ba0ba10] | 66 | |
---|
| 67 | struct _aubio_source_avcodec_t { |
---|
| 68 | uint_t hop_size; |
---|
| 69 | uint_t samplerate; |
---|
| 70 | uint_t channels; |
---|
| 71 | |
---|
| 72 | // some data about the file |
---|
| 73 | char_t *path; |
---|
[d3b9fe4] | 74 | uint_t input_samplerate; |
---|
| 75 | uint_t input_channels; |
---|
[ba0ba10] | 76 | |
---|
| 77 | // avcodec stuff |
---|
| 78 | AVFormatContext *avFormatCtx; |
---|
| 79 | AVCodecContext *avCodecCtx; |
---|
| 80 | AVFrame *avFrame; |
---|
[261836d] | 81 | AVPacket avPacket; |
---|
[ba67cb6] | 82 | #ifdef HAVE_AVRESAMPLE |
---|
[ba0ba10] | 83 | AVAudioResampleContext *avr; |
---|
[ba67cb6] | 84 | #elif defined(HAVE_SWRESAMPLE) |
---|
| 85 | SwrContext *avr; |
---|
| 86 | #endif |
---|
[2f89ef4] | 87 | smpl_t *output; |
---|
[d3b9fe4] | 88 | uint_t read_samples; |
---|
| 89 | uint_t read_index; |
---|
[7760b40] | 90 | sint_t selected_stream; |
---|
[eadd8d5] | 91 | uint_t eof; |
---|
[fcd963a] | 92 | uint_t multi; |
---|
[ba0ba10] | 93 | }; |
---|
| 94 | |
---|
[61ecd1a] | 95 | // hack to create or re-create the context the first time _do or _do_multi is called |
---|
| 96 | void aubio_source_avcodec_reset_resampler(aubio_source_avcodec_t * s, uint_t multi); |
---|
[029bf4e] | 97 | void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_samples); |
---|
[fcd963a] | 98 | |
---|
[6769586] | 99 | uint_t aubio_source_avcodec_has_network_url(aubio_source_avcodec_t *s); |
---|
| 100 | |
---|
| 101 | uint_t aubio_source_avcodec_has_network_url(aubio_source_avcodec_t *s) { |
---|
| 102 | char proto[20], authorization[256], hostname[128], uripath[256]; |
---|
| 103 | int proto_size = 20, authorization_size = 256, hostname_size = 128, |
---|
| 104 | *port_ptr = 0, path_size = 256; |
---|
| 105 | av_url_split(proto, proto_size, authorization, authorization_size, hostname, |
---|
| 106 | hostname_size, port_ptr, uripath, path_size, s->path); |
---|
| 107 | if (strlen(proto)) { |
---|
| 108 | return 1; |
---|
| 109 | } |
---|
| 110 | return 0; |
---|
| 111 | } |
---|
| 112 | |
---|
| 113 | |
---|
[ae5d58a] | 114 | aubio_source_avcodec_t * new_aubio_source_avcodec(const char_t * path, uint_t samplerate, uint_t hop_size) { |
---|
[ba0ba10] | 115 | aubio_source_avcodec_t * s = AUBIO_NEW(aubio_source_avcodec_t); |
---|
[50f39f5] | 116 | AVFormatContext *avFormatCtx = s->avFormatCtx; |
---|
| 117 | AVCodecContext *avCodecCtx = s->avCodecCtx; |
---|
| 118 | AVFrame *avFrame = s->avFrame; |
---|
[5bd9a2b] | 119 | sint_t selected_stream = -1; |
---|
[de23e58] | 120 | #if FF_API_LAVF_AVCTX |
---|
| 121 | AVCodecParameters *codecpar; |
---|
| 122 | #endif |
---|
[5bd9a2b] | 123 | AVCodec *codec; |
---|
[50f39f5] | 124 | uint_t i; |
---|
[ba0ba10] | 125 | int err; |
---|
| 126 | if (path == NULL) { |
---|
[491e6ea] | 127 | AUBIO_ERR("source_avcodec: Aborted opening null path\n"); |
---|
[b294b3e] | 128 | goto beach; |
---|
| 129 | } |
---|
| 130 | if ((sint_t)samplerate < 0) { |
---|
[491e6ea] | 131 | AUBIO_ERR("source_avcodec: Can not open %s with samplerate %d\n", path, samplerate); |
---|
[b294b3e] | 132 | goto beach; |
---|
| 133 | } |
---|
| 134 | if ((sint_t)hop_size <= 0) { |
---|
[491e6ea] | 135 | AUBIO_ERR("source_avcodec: Can not open %s with hop_size %d\n", path, hop_size); |
---|
[b294b3e] | 136 | goto beach; |
---|
[ba0ba10] | 137 | } |
---|
| 138 | |
---|
| 139 | s->hop_size = hop_size; |
---|
| 140 | s->channels = 1; |
---|
[b643a33] | 141 | |
---|
| 142 | if (s->path) AUBIO_FREE(s->path); |
---|
[d2be104] | 143 | s->path = AUBIO_ARRAY(char_t, strnlen(path, PATH_MAX) + 1); |
---|
| 144 | strncpy(s->path, path, strnlen(path, PATH_MAX) + 1); |
---|
[ba0ba10] | 145 | |
---|
| 146 | // register all formats and codecs |
---|
| 147 | av_register_all(); |
---|
| 148 | |
---|
[6769586] | 149 | if (aubio_source_avcodec_has_network_url(s)) { |
---|
| 150 | avformat_network_init(); |
---|
| 151 | } |
---|
[eadd8d5] | 152 | |
---|
[d75e2d5] | 153 | // try opening the file and get some info about it |
---|
[ba0ba10] | 154 | avFormatCtx = NULL; |
---|
| 155 | if ( (err = avformat_open_input(&avFormatCtx, s->path, NULL, NULL) ) < 0 ) { |
---|
[0af9003] | 156 | char errorstr[256]; |
---|
| 157 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
[491e6ea] | 158 | AUBIO_ERR("source_avcodec: Failed opening %s (%s)\n", s->path, errorstr); |
---|
[ba0ba10] | 159 | goto beach; |
---|
| 160 | } |
---|
| 161 | |
---|
[6abb4de] | 162 | // try to make sure max_analyze_duration is big enough for most songs |
---|
[a9c33a2] | 163 | #if FFMPEG_LIBAVFORMAT_MAX_DUR2 |
---|
[2a32644] | 164 | avFormatCtx->max_analyze_duration2 *= 100; |
---|
| 165 | #else |
---|
[6abb4de] | 166 | avFormatCtx->max_analyze_duration *= 100; |
---|
[2a32644] | 167 | #endif |
---|
[6abb4de] | 168 | |
---|
[ba0ba10] | 169 | // retrieve stream information |
---|
| 170 | if ( (err = avformat_find_stream_info(avFormatCtx, NULL)) < 0 ) { |
---|
[0af9003] | 171 | char errorstr[256]; |
---|
| 172 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
[491e6ea] | 173 | AUBIO_ERR("source_avcodec: Could not find stream information " "for %s (%s)\n", s->path, |
---|
[0af9003] | 174 | errorstr); |
---|
[ba0ba10] | 175 | goto beach; |
---|
| 176 | } |
---|
| 177 | |
---|
[1fe3ac2] | 178 | // dump information about file onto standard error |
---|
[ba0ba10] | 179 | //av_dump_format(avFormatCtx, 0, s->path, 0); |
---|
| 180 | |
---|
[1fe3ac2] | 181 | // look for the first audio stream |
---|
[ba0ba10] | 182 | for (i = 0; i < avFormatCtx->nb_streams; i++) { |
---|
[2b3c438] | 183 | #if FF_API_LAVF_AVCTX |
---|
| 184 | if (avFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) { |
---|
| 185 | #else |
---|
[ba0ba10] | 186 | if (avFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) { |
---|
[2b3c438] | 187 | #endif |
---|
[ba0ba10] | 188 | if (selected_stream == -1) { |
---|
| 189 | selected_stream = i; |
---|
| 190 | } else { |
---|
[491e6ea] | 191 | AUBIO_WRN("source_avcodec: More than one audio stream in %s, " |
---|
[1fe3ac2] | 192 | "taking the first one\n", s->path); |
---|
[ba0ba10] | 193 | } |
---|
| 194 | } |
---|
| 195 | } |
---|
| 196 | if (selected_stream == -1) { |
---|
[491e6ea] | 197 | AUBIO_ERR("source_avcodec: No audio stream in %s\n", s->path); |
---|
[ba0ba10] | 198 | goto beach; |
---|
[d3b9fe4] | 199 | } |
---|
[eadd8d5] | 200 | //AUBIO_DBG("Taking stream %d in file %s\n", selected_stream, s->path); |
---|
[7760b40] | 201 | s->selected_stream = selected_stream; |
---|
[ba0ba10] | 202 | |
---|
[2b3c438] | 203 | #if FF_API_LAVF_AVCTX |
---|
[de23e58] | 204 | codecpar = avFormatCtx->streams[selected_stream]->codecpar; |
---|
[2b3c438] | 205 | if (codecpar == NULL) { |
---|
| 206 | AUBIO_ERR("source_avcodec: Could not find decoder for %s", s->path); |
---|
| 207 | goto beach; |
---|
| 208 | } |
---|
[50f39f5] | 209 | codec = avcodec_find_decoder(codecpar->codec_id); |
---|
[2b3c438] | 210 | |
---|
| 211 | /* Allocate a codec context for the decoder */ |
---|
| 212 | avCodecCtx = avcodec_alloc_context3(codec); |
---|
| 213 | if (!avCodecCtx) { |
---|
| 214 | AUBIO_ERR("source_avcodec: Failed to allocate the %s codec context for path %s\n", |
---|
| 215 | av_get_media_type_string(AVMEDIA_TYPE_AUDIO), s->path); |
---|
| 216 | goto beach; |
---|
| 217 | } |
---|
| 218 | #else |
---|
[d3b9fe4] | 219 | avCodecCtx = avFormatCtx->streams[selected_stream]->codec; |
---|
[de23e58] | 220 | codec = avcodec_find_decoder(avCodecCtx->codec_id); |
---|
[2b3c438] | 221 | #endif |
---|
[ba0ba10] | 222 | if (codec == NULL) { |
---|
[491e6ea] | 223 | AUBIO_ERR("source_avcodec: Could not find decoder for %s", s->path); |
---|
[ba0ba10] | 224 | goto beach; |
---|
| 225 | } |
---|
| 226 | |
---|
[2b3c438] | 227 | #if FF_API_LAVF_AVCTX |
---|
| 228 | /* Copy codec parameters from input stream to output codec context */ |
---|
| 229 | if ((err = avcodec_parameters_to_context(avCodecCtx, codecpar)) < 0) { |
---|
| 230 | AUBIO_ERR("source_avcodec: Failed to copy %s codec parameters to decoder context for %s\n", |
---|
| 231 | av_get_media_type_string(AVMEDIA_TYPE_AUDIO), s->path); |
---|
| 232 | goto beach; |
---|
| 233 | } |
---|
| 234 | #endif |
---|
| 235 | |
---|
[ba0ba10] | 236 | if ( ( err = avcodec_open2(avCodecCtx, codec, NULL) ) < 0) { |
---|
[0af9003] | 237 | char errorstr[256]; |
---|
| 238 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
[491e6ea] | 239 | AUBIO_ERR("source_avcodec: Could not load codec for %s (%s)\n", s->path, errorstr); |
---|
[ba0ba10] | 240 | goto beach; |
---|
| 241 | } |
---|
| 242 | |
---|
| 243 | /* get input specs */ |
---|
| 244 | s->input_samplerate = avCodecCtx->sample_rate; |
---|
| 245 | s->input_channels = avCodecCtx->channels; |
---|
| 246 | //AUBIO_DBG("input_samplerate: %d\n", s->input_samplerate); |
---|
| 247 | //AUBIO_DBG("input_channels: %d\n", s->input_channels); |
---|
| 248 | |
---|
| 249 | if (samplerate == 0) { |
---|
[26a6af7] | 250 | s->samplerate = s->input_samplerate; |
---|
| 251 | } else { |
---|
| 252 | s->samplerate = samplerate; |
---|
[ba0ba10] | 253 | } |
---|
| 254 | |
---|
[018e511] | 255 | if (s->samplerate > s->input_samplerate) { |
---|
[491e6ea] | 256 | AUBIO_WRN("source_avcodec: upsampling %s from %d to %d\n", s->path, |
---|
[018e511] | 257 | s->input_samplerate, s->samplerate); |
---|
| 258 | } |
---|
| 259 | |
---|
[cd4c997] | 260 | avFrame = av_frame_alloc(); |
---|
[ba0ba10] | 261 | if (!avFrame) { |
---|
[491e6ea] | 262 | AUBIO_ERR("source_avcodec: Could not allocate frame for (%s)\n", s->path); |
---|
[ba0ba10] | 263 | } |
---|
| 264 | |
---|
[d3b9fe4] | 265 | /* allocate output for avr */ |
---|
[2f89ef4] | 266 | s->output = (smpl_t *)av_malloc(AUBIO_AVCODEC_MAX_BUFFER_SIZE * sizeof(smpl_t)); |
---|
[ba0ba10] | 267 | |
---|
| 268 | s->read_samples = 0; |
---|
| 269 | s->read_index = 0; |
---|
| 270 | |
---|
| 271 | s->avFormatCtx = avFormatCtx; |
---|
| 272 | s->avCodecCtx = avCodecCtx; |
---|
| 273 | s->avFrame = avFrame; |
---|
[fcd963a] | 274 | |
---|
| 275 | // default to mono output |
---|
[61ecd1a] | 276 | aubio_source_avcodec_reset_resampler(s, 0); |
---|
[ba0ba10] | 277 | |
---|
[eadd8d5] | 278 | s->eof = 0; |
---|
[fcd963a] | 279 | s->multi = 0; |
---|
[eadd8d5] | 280 | |
---|
[ba0ba10] | 281 | //av_log_set_level(AV_LOG_QUIET); |
---|
| 282 | |
---|
| 283 | return s; |
---|
| 284 | |
---|
| 285 | beach: |
---|
[fcd963a] | 286 | //AUBIO_ERR("can not read %s at samplerate %dHz with a hop_size of %d\n", |
---|
| 287 | // s->path, s->samplerate, s->hop_size); |
---|
[ba0ba10] | 288 | del_aubio_source_avcodec(s); |
---|
| 289 | return NULL; |
---|
| 290 | } |
---|
| 291 | |
---|
[61ecd1a] | 292 | void aubio_source_avcodec_reset_resampler(aubio_source_avcodec_t * s, uint_t multi) { |
---|
[2f89ef4] | 293 | // create or reset resampler to/from mono/multi-channel |
---|
[61ecd1a] | 294 | if ( (multi != s->multi) || (s->avr == NULL) ) { |
---|
[808c8525] | 295 | int err; |
---|
[61ecd1a] | 296 | int64_t input_layout = av_get_default_channel_layout(s->input_channels); |
---|
| 297 | uint_t output_channels = multi ? s->input_channels : 1; |
---|
| 298 | int64_t output_layout = av_get_default_channel_layout(output_channels); |
---|
[ba67cb6] | 299 | #ifdef HAVE_AVRESAMPLE |
---|
[7cc80b6] | 300 | AVAudioResampleContext *avr = avresample_alloc_context(); |
---|
| 301 | AVAudioResampleContext *oldavr = s->avr; |
---|
[ba67cb6] | 302 | #elif defined(HAVE_SWRESAMPLE) |
---|
| 303 | SwrContext *avr = swr_alloc(); |
---|
| 304 | SwrContext *oldavr = s->avr; |
---|
| 305 | #endif /* HAVE_AVRESAMPLE || HAVE_SWRESAMPLE */ |
---|
[61ecd1a] | 306 | |
---|
| 307 | av_opt_set_int(avr, "in_channel_layout", input_layout, 0); |
---|
| 308 | av_opt_set_int(avr, "out_channel_layout", output_layout, 0); |
---|
| 309 | av_opt_set_int(avr, "in_sample_rate", s->input_samplerate, 0); |
---|
| 310 | av_opt_set_int(avr, "out_sample_rate", s->samplerate, 0); |
---|
| 311 | av_opt_set_int(avr, "in_sample_fmt", s->avCodecCtx->sample_fmt, 0); |
---|
[2f89ef4] | 312 | #if HAVE_AUBIO_DOUBLE |
---|
| 313 | av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_DBL, 0); |
---|
| 314 | #else |
---|
[61ecd1a] | 315 | av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_FLT, 0); |
---|
[2f89ef4] | 316 | #endif |
---|
| 317 | // TODO: use planar? |
---|
| 318 | //av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_FLTP, 0); |
---|
[ba67cb6] | 319 | #ifdef HAVE_AVRESAMPLE |
---|
[c3e98d7] | 320 | if ( ( err = avresample_open(avr) ) < 0) |
---|
[ba67cb6] | 321 | #elif defined(HAVE_SWRESAMPLE) |
---|
[c3e98d7] | 322 | if ( ( err = swr_init(avr) ) < 0) |
---|
[ba67cb6] | 323 | #endif /* HAVE_AVRESAMPLE || HAVE_SWRESAMPLE */ |
---|
[c3e98d7] | 324 | { |
---|
[61ecd1a] | 325 | char errorstr[256]; |
---|
| 326 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
[c3e98d7] | 327 | AUBIO_ERR("source_avcodec: Could not open resampling context for %s (%s)\n", |
---|
[61ecd1a] | 328 | s->path, errorstr); |
---|
| 329 | return; |
---|
| 330 | } |
---|
| 331 | s->avr = avr; |
---|
[7cc80b6] | 332 | if (oldavr != NULL) { |
---|
[ba67cb6] | 333 | #ifdef HAVE_AVRESAMPLE |
---|
[7cc80b6] | 334 | avresample_close( oldavr ); |
---|
[ba67cb6] | 335 | #elif defined(HAVE_SWRESAMPLE) |
---|
| 336 | swr_close ( oldavr ); |
---|
| 337 | #endif /* HAVE_AVRESAMPLE || HAVE_SWRESAMPLE */ |
---|
[7cc80b6] | 338 | av_free ( oldavr ); |
---|
| 339 | oldavr = NULL; |
---|
| 340 | } |
---|
[61ecd1a] | 341 | s->multi = multi; |
---|
| 342 | } |
---|
| 343 | } |
---|
| 344 | |
---|
[d3b9fe4] | 345 | void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_samples) { |
---|
[ba0ba10] | 346 | AVFormatContext *avFormatCtx = s->avFormatCtx; |
---|
| 347 | AVCodecContext *avCodecCtx = s->avCodecCtx; |
---|
| 348 | AVFrame *avFrame = s->avFrame; |
---|
[261836d] | 349 | AVPacket avPacket = s->avPacket; |
---|
[ba67cb6] | 350 | #ifdef HAVE_AVRESAMPLE |
---|
[ba0ba10] | 351 | AVAudioResampleContext *avr = s->avr; |
---|
[ba67cb6] | 352 | #elif defined(HAVE_SWRESAMPLE) |
---|
| 353 | SwrContext *avr = s->avr; |
---|
| 354 | #endif /* HAVE_AVRESAMPLE || HAVE_SWRESAMPLE */ |
---|
[808c8525] | 355 | int got_frame = 0; |
---|
| 356 | #ifdef HAVE_AVRESAMPLE |
---|
| 357 | int in_linesize = 0; |
---|
| 358 | int in_samples = avFrame->nb_samples; |
---|
| 359 | int out_linesize = 0; |
---|
| 360 | int max_out_samples = AUBIO_AVCODEC_MAX_BUFFER_SIZE; |
---|
| 361 | int out_samples = 0; |
---|
| 362 | #elif defined(HAVE_SWRESAMPLE) |
---|
| 363 | int in_samples = avFrame->nb_samples; |
---|
| 364 | int max_out_samples = AUBIO_AVCODEC_MAX_BUFFER_SIZE / avCodecCtx->channels; |
---|
| 365 | int out_samples = 0; |
---|
| 366 | #endif /* HAVE_AVRESAMPLE || HAVE_SWRESAMPLE */ |
---|
[877b3b8] | 367 | smpl_t *output = s->output; |
---|
[1a6f2de] | 368 | #ifndef FF_API_LAVF_AVCTX |
---|
| 369 | int len = 0; |
---|
[9956027] | 370 | #else |
---|
| 371 | int ret = 0; |
---|
[1a6f2de] | 372 | #endif |
---|
[5bd9a2b] | 373 | av_init_packet (&avPacket); |
---|
[0af9003] | 374 | *read_samples = 0; |
---|
[ba0ba10] | 375 | |
---|
[7760b40] | 376 | do |
---|
| 377 | { |
---|
| 378 | int err = av_read_frame (avFormatCtx, &avPacket); |
---|
[0af9003] | 379 | if (err == AVERROR_EOF) { |
---|
| 380 | s->eof = 1; |
---|
| 381 | goto beach; |
---|
| 382 | } |
---|
[7760b40] | 383 | if (err != 0) { |
---|
[0af9003] | 384 | char errorstr[256]; |
---|
| 385 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
[8d41c1d] | 386 | AUBIO_ERR("source_avcodec: could not read frame in %s (%s)\n", s->path, errorstr); |
---|
[bdf7caf] | 387 | s->eof = 1; |
---|
[0af9003] | 388 | goto beach; |
---|
[7760b40] | 389 | } |
---|
| 390 | } while (avPacket.stream_index != s->selected_stream); |
---|
[ba0ba10] | 391 | |
---|
[2b3c438] | 392 | #if FF_API_LAVF_AVCTX |
---|
[808c8525] | 393 | ret = avcodec_send_packet(avCodecCtx, &avPacket); |
---|
[2b3c438] | 394 | if (ret < 0 && ret != AVERROR_EOF) { |
---|
| 395 | AUBIO_ERR("source_avcodec: error when sending packet for %s\n", s->path); |
---|
| 396 | goto beach; |
---|
| 397 | } |
---|
| 398 | ret = avcodec_receive_frame(avCodecCtx, avFrame); |
---|
| 399 | if (ret >= 0) { |
---|
| 400 | got_frame = 1; |
---|
| 401 | } |
---|
| 402 | if (ret < 0) { |
---|
| 403 | if (ret == AVERROR(EAGAIN)) { |
---|
[3e944fe4] | 404 | //AUBIO_WRN("source_avcodec: output is not available right now - user must try to send new input\n"); |
---|
| 405 | goto beach; |
---|
[2b3c438] | 406 | } else if (ret == AVERROR_EOF) { |
---|
| 407 | AUBIO_WRN("source_avcodec: the decoder has been fully flushed, and there will be no more output frames\n"); |
---|
| 408 | } else { |
---|
| 409 | AUBIO_ERR("source_avcodec: decoding errors on %s\n", s->path); |
---|
| 410 | goto beach; |
---|
| 411 | } |
---|
| 412 | } |
---|
| 413 | #else |
---|
[1a6f2de] | 414 | len = avcodec_decode_audio4(avCodecCtx, avFrame, &got_frame, &avPacket); |
---|
[ba0ba10] | 415 | |
---|
| 416 | if (len < 0) { |
---|
[e0ad269] | 417 | AUBIO_ERR("source_avcodec: error while decoding %s\n", s->path); |
---|
[0af9003] | 418 | goto beach; |
---|
[ba0ba10] | 419 | } |
---|
[2b3c438] | 420 | #endif |
---|
[ba0ba10] | 421 | if (got_frame == 0) { |
---|
[e0ad269] | 422 | AUBIO_WRN("source_avcodec: did not get a frame when reading %s\n", s->path); |
---|
[0af9003] | 423 | goto beach; |
---|
| 424 | } |
---|
| 425 | |
---|
[ba67cb6] | 426 | #ifdef HAVE_AVRESAMPLE |
---|
[808c8525] | 427 | in_linesize = 0; |
---|
[0af9003] | 428 | av_samples_get_buffer_size(&in_linesize, avCodecCtx->channels, |
---|
| 429 | avFrame->nb_samples, avCodecCtx->sample_fmt, 1); |
---|
[808c8525] | 430 | in_samples = avFrame->nb_samples; |
---|
| 431 | out_linesize = 0; |
---|
| 432 | max_out_samples = AUBIO_AVCODEC_MAX_BUFFER_SIZE; |
---|
| 433 | out_samples = avresample_convert ( avr, |
---|
[0af9003] | 434 | (uint8_t **)&output, out_linesize, max_out_samples, |
---|
| 435 | (uint8_t **)avFrame->data, in_linesize, in_samples); |
---|
[ba67cb6] | 436 | #elif defined(HAVE_SWRESAMPLE) |
---|
[808c8525] | 437 | in_samples = avFrame->nb_samples; |
---|
| 438 | max_out_samples = AUBIO_AVCODEC_MAX_BUFFER_SIZE / avCodecCtx->channels; |
---|
| 439 | out_samples = swr_convert( avr, |
---|
[ba67cb6] | 440 | (uint8_t **)&output, max_out_samples, |
---|
| 441 | (const uint8_t **)avFrame->data, in_samples); |
---|
| 442 | #endif /* HAVE_AVRESAMPLE || HAVE_SWRESAMPLE */ |
---|
[0af9003] | 443 | if (out_samples <= 0) { |
---|
[e0ad269] | 444 | AUBIO_WRN("source_avcodec: no sample found while converting frame (%s)\n", s->path); |
---|
[0af9003] | 445 | goto beach; |
---|
[ba0ba10] | 446 | } |
---|
| 447 | |
---|
[0af9003] | 448 | *read_samples = out_samples; |
---|
| 449 | |
---|
| 450 | beach: |
---|
[ba0ba10] | 451 | s->avFormatCtx = avFormatCtx; |
---|
| 452 | s->avCodecCtx = avCodecCtx; |
---|
| 453 | s->avFrame = avFrame; |
---|
[ba67cb6] | 454 | #if defined(HAVE_AVRESAMPLE) || defined(HAVE_SWRESAMPLE) |
---|
[ba0ba10] | 455 | s->avr = avr; |
---|
[ba67cb6] | 456 | #endif /* HAVE_AVRESAMPLE || HAVE_SWRESAMPLE */ |
---|
[ba0ba10] | 457 | s->output = output; |
---|
| 458 | |
---|
[a9c33a2] | 459 | av_packet_unref(&avPacket); |
---|
[ba0ba10] | 460 | } |
---|
| 461 | |
---|
| 462 | void aubio_source_avcodec_do(aubio_source_avcodec_t * s, fvec_t * read_data, uint_t * read){ |
---|
| 463 | uint_t i; |
---|
[eadd8d5] | 464 | uint_t end = 0; |
---|
| 465 | uint_t total_wrote = 0; |
---|
[8b210a9] | 466 | // switch from multi |
---|
| 467 | if (s->multi == 1) aubio_source_avcodec_reset_resampler(s, 0); |
---|
[eadd8d5] | 468 | while (total_wrote < s->hop_size) { |
---|
| 469 | end = MIN(s->read_samples - s->read_index, s->hop_size - total_wrote); |
---|
| 470 | for (i = 0; i < end; i++) { |
---|
[3d5cddf] | 471 | read_data->data[i + total_wrote] = s->output[i + s->read_index]; |
---|
[ba0ba10] | 472 | } |
---|
[eadd8d5] | 473 | total_wrote += end; |
---|
| 474 | if (total_wrote < s->hop_size) { |
---|
| 475 | uint_t avcodec_read = 0; |
---|
| 476 | aubio_source_avcodec_readframe(s, &avcodec_read); |
---|
| 477 | s->read_samples = avcodec_read; |
---|
| 478 | s->read_index = 0; |
---|
| 479 | if (s->eof) { |
---|
| 480 | break; |
---|
[ba0ba10] | 481 | } |
---|
[eadd8d5] | 482 | } else { |
---|
| 483 | s->read_index += end; |
---|
[ba0ba10] | 484 | } |
---|
[eadd8d5] | 485 | } |
---|
| 486 | if (total_wrote < s->hop_size) { |
---|
[eacc55c] | 487 | for (i = total_wrote; i < s->hop_size; i++) { |
---|
[eadd8d5] | 488 | read_data->data[i] = 0.; |
---|
[ba0ba10] | 489 | } |
---|
| 490 | } |
---|
[eadd8d5] | 491 | *read = total_wrote; |
---|
[ba0ba10] | 492 | } |
---|
| 493 | |
---|
| 494 | void aubio_source_avcodec_do_multi(aubio_source_avcodec_t * s, fmat_t * read_data, uint_t * read){ |
---|
[fcd963a] | 495 | uint_t i,j; |
---|
| 496 | uint_t end = 0; |
---|
| 497 | uint_t total_wrote = 0; |
---|
[8b210a9] | 498 | // switch from mono |
---|
| 499 | if (s->multi == 0) aubio_source_avcodec_reset_resampler(s, 1); |
---|
[fcd963a] | 500 | while (total_wrote < s->hop_size) { |
---|
| 501 | end = MIN(s->read_samples - s->read_index, s->hop_size - total_wrote); |
---|
| 502 | for (j = 0; j < read_data->height; j++) { |
---|
| 503 | for (i = 0; i < end; i++) { |
---|
| 504 | read_data->data[j][i + total_wrote] = |
---|
| 505 | s->output[(i + s->read_index) * s->input_channels + j]; |
---|
| 506 | } |
---|
| 507 | } |
---|
| 508 | total_wrote += end; |
---|
| 509 | if (total_wrote < s->hop_size) { |
---|
| 510 | uint_t avcodec_read = 0; |
---|
| 511 | aubio_source_avcodec_readframe(s, &avcodec_read); |
---|
| 512 | s->read_samples = avcodec_read; |
---|
| 513 | s->read_index = 0; |
---|
| 514 | if (s->eof) { |
---|
| 515 | break; |
---|
| 516 | } |
---|
| 517 | } else { |
---|
| 518 | s->read_index += end; |
---|
| 519 | } |
---|
| 520 | } |
---|
| 521 | if (total_wrote < s->hop_size) { |
---|
| 522 | for (j = 0; j < read_data->height; j++) { |
---|
[eacc55c] | 523 | for (i = total_wrote; i < s->hop_size; i++) { |
---|
[fcd963a] | 524 | read_data->data[j][i] = 0.; |
---|
| 525 | } |
---|
| 526 | } |
---|
| 527 | } |
---|
| 528 | *read = total_wrote; |
---|
[ba0ba10] | 529 | } |
---|
| 530 | |
---|
[ae5d58a] | 531 | uint_t aubio_source_avcodec_get_samplerate(const aubio_source_avcodec_t * s) { |
---|
[ba0ba10] | 532 | return s->samplerate; |
---|
| 533 | } |
---|
| 534 | |
---|
[ae5d58a] | 535 | uint_t aubio_source_avcodec_get_channels(const aubio_source_avcodec_t * s) { |
---|
[ba0ba10] | 536 | return s->input_channels; |
---|
| 537 | } |
---|
| 538 | |
---|
| 539 | uint_t aubio_source_avcodec_seek (aubio_source_avcodec_t * s, uint_t pos) { |
---|
[50bb325] | 540 | int64_t resampled_pos = (uint_t)ROUND(pos * (s->input_samplerate * 1. / s->samplerate)); |
---|
| 541 | int64_t min_ts = MAX(resampled_pos - 2000, 0); |
---|
| 542 | int64_t max_ts = MIN(resampled_pos + 2000, INT64_MAX); |
---|
| 543 | int seek_flags = AVSEEK_FLAG_FRAME | AVSEEK_FLAG_ANY; |
---|
[41b4421] | 544 | int ret = AUBIO_FAIL; |
---|
| 545 | if (s->avFormatCtx != NULL && s->avr != NULL) { |
---|
| 546 | ret = AUBIO_OK; |
---|
| 547 | } else { |
---|
| 548 | AUBIO_ERR("source_avcodec: failed seeking in %s (file not opened?)", s->path); |
---|
| 549 | return ret; |
---|
| 550 | } |
---|
[4d44531] | 551 | if ((sint_t)pos < 0) { |
---|
| 552 | AUBIO_ERR("source_avcodec: could not seek %s at %d (seeking position" |
---|
| 553 | " should be >= 0)\n", s->path, pos); |
---|
| 554 | return AUBIO_FAIL; |
---|
| 555 | } |
---|
[41b4421] | 556 | ret = avformat_seek_file(s->avFormatCtx, s->selected_stream, |
---|
[50bb325] | 557 | min_ts, resampled_pos, max_ts, seek_flags); |
---|
| 558 | if (ret < 0) { |
---|
[41b4421] | 559 | AUBIO_ERR("source_avcodec: failed seeking to %d in file %s", pos, s->path); |
---|
[50bb325] | 560 | } |
---|
| 561 | // reset read status |
---|
| 562 | s->eof = 0; |
---|
| 563 | s->read_index = 0; |
---|
| 564 | s->read_samples = 0; |
---|
[ba67cb6] | 565 | #ifdef HAVE_AVRESAMPLE |
---|
[50bb325] | 566 | // reset the AVAudioResampleContext |
---|
| 567 | avresample_close(s->avr); |
---|
| 568 | avresample_open(s->avr); |
---|
[ba67cb6] | 569 | #elif defined(HAVE_SWRESAMPLE) |
---|
| 570 | swr_close(s->avr); |
---|
| 571 | swr_init(s->avr); |
---|
| 572 | #endif |
---|
[50bb325] | 573 | return ret; |
---|
[ba0ba10] | 574 | } |
---|
| 575 | |
---|
[2d071ad] | 576 | uint_t aubio_source_avcodec_get_duration (aubio_source_avcodec_t * s) { |
---|
| 577 | if (s && &(s->avFormatCtx) != NULL) { |
---|
| 578 | int64_t duration = s->avFormatCtx->duration; |
---|
| 579 | return s->samplerate * ((uint_t)duration / 1e6 ); |
---|
| 580 | } |
---|
| 581 | return 0; |
---|
| 582 | } |
---|
| 583 | |
---|
[422452b] | 584 | uint_t aubio_source_avcodec_close(aubio_source_avcodec_t * s) { |
---|
[ba0ba10] | 585 | if (s->avr != NULL) { |
---|
[ba67cb6] | 586 | #ifdef HAVE_AVRESAMPLE |
---|
[ba0ba10] | 587 | avresample_close( s->avr ); |
---|
[ba67cb6] | 588 | #elif defined(HAVE_SWRESAMPLE) |
---|
| 589 | swr_close ( s->avr ); |
---|
| 590 | #endif |
---|
[ba0ba10] | 591 | av_free ( s->avr ); |
---|
| 592 | } |
---|
| 593 | s->avr = NULL; |
---|
| 594 | if (s->avCodecCtx != NULL) { |
---|
[91fa88d] | 595 | #ifndef HAVE_AUBIO_LIBAVCODEC_DEPRECATED |
---|
| 596 | avcodec_free_context( &s->avCodecCtx ); |
---|
| 597 | #else |
---|
[ba0ba10] | 598 | avcodec_close ( s->avCodecCtx ); |
---|
[91fa88d] | 599 | #endif |
---|
[ba0ba10] | 600 | } |
---|
| 601 | s->avCodecCtx = NULL; |
---|
| 602 | if (s->avFormatCtx != NULL) { |
---|
[41ebc91] | 603 | avformat_close_input(&s->avFormatCtx); |
---|
| 604 | s->avFormatCtx = NULL; |
---|
[ba0ba10] | 605 | } |
---|
[261836d] | 606 | av_packet_unref(&s->avPacket); |
---|
[422452b] | 607 | return AUBIO_OK; |
---|
| 608 | } |
---|
| 609 | |
---|
| 610 | void del_aubio_source_avcodec(aubio_source_avcodec_t * s){ |
---|
| 611 | if (!s) return; |
---|
| 612 | aubio_source_avcodec_close(s); |
---|
| 613 | if (s->output != NULL) { |
---|
| 614 | av_free(s->output); |
---|
| 615 | } |
---|
| 616 | s->output = NULL; |
---|
| 617 | if (s->avFrame != NULL) { |
---|
[cd4c997] | 618 | av_frame_free( &(s->avFrame) ); |
---|
[422452b] | 619 | } |
---|
| 620 | s->avFrame = NULL; |
---|
[b6bb265] | 621 | if (s->path) { |
---|
| 622 | AUBIO_FREE(s->path); |
---|
| 623 | } |
---|
| 624 | s->path = NULL; |
---|
[ba0ba10] | 625 | AUBIO_FREE(s); |
---|
| 626 | } |
---|
| 627 | |
---|
[549928e] | 628 | #endif /* HAVE_LIBAV */ |
---|