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