source: src/io/source_avcodec.c @ 0f5837d

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

[io] avoid deprecation warning with ffmpeg

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