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