source: src/io/source_avcodec.c @ 724303e

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/timestretchfix/ffmpeg5
Last change on this file since 724303e was 724303e, checked in by Paul Brossier <piem@piem.org>, 5 years ago

[source_avcodec] clean up unused statements and previously included stdlib

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