source: src/io/source_avcodec.c @ ac97e80d

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

[source] [avcodec] create resampler once

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