source: src/io/source_avcodec.c @ 8e76c71

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

[source_avcodec] fix warning messages

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