[source_avcodec] prevent reading after close
[aubio.git] / src / io / source_avcodec.c
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
72 struct _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
100 void aubio_source_avcodec_reset_resampler(aubio_source_avcodec_t * s);
101 // actually read a frame
102 void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s,
103     uint_t * read_samples);
104
105 uint_t aubio_source_avcodec_has_network_url(aubio_source_avcodec_t *s);
106
107 uint_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
120 aubio_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
304 beach:
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
311 void 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
352 void 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
475 beach:
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
487 void 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   if (!s->avr || !s->avFormatCtx || !s->avCodecCtx) {
495     AUBIO_ERR("source_avcodec: could not read from %s (file was closed)\n",
496         s->path);
497     *read= 0;
498     return;
499   }
500   while (total_wrote < length) {
501     end = MIN(s->read_samples - s->read_index, length - total_wrote);
502     for (i = 0; i < end; i++) {
503       read_data->data[i + total_wrote] = 0.;
504       for (j = 0; j < s->input_channels; j++) {
505         read_data->data[i + total_wrote] +=
506           s->output[(i + s->read_index) * s->input_channels + j];
507       }
508       read_data->data[i + total_wrote] *= 1./s->input_channels;
509     }
510     total_wrote += end;
511     if (total_wrote < length) {
512       uint_t avcodec_read = 0;
513       aubio_source_avcodec_readframe(s, &avcodec_read);
514       s->read_samples = avcodec_read;
515       s->read_index = 0;
516       if (s->eof) {
517         break;
518       }
519     } else {
520       s->read_index += end;
521     }
522   }
523
524   aubio_source_pad_output(read_data, total_wrote);
525
526   *read = total_wrote;
527 }
528
529 void aubio_source_avcodec_do_multi(aubio_source_avcodec_t * s,
530     fmat_t * read_data, uint_t * read) {
531   uint_t i,j;
532   uint_t end = 0;
533   uint_t total_wrote = 0;
534   uint_t length = aubio_source_validate_input_length("source_avcodec", s->path,
535       s->hop_size, read_data->length);
536   uint_t channels = aubio_source_validate_input_channels("source_avcodec",
537       s->path, s->input_channels, read_data->height);
538   if (!s->avr || !s->avFormatCtx || !s->avCodecCtx) {
539     AUBIO_ERR("source_avcodec: could not read from %s (file was closed)\n",
540         s->path);
541     *read= 0;
542     return;
543   }
544   while (total_wrote < length) {
545     end = MIN(s->read_samples - s->read_index, length - total_wrote);
546     for (j = 0; j < channels; j++) {
547       for (i = 0; i < end; i++) {
548         read_data->data[j][i + total_wrote] =
549           s->output[(i + s->read_index) * s->input_channels + j];
550       }
551     }
552     total_wrote += end;
553     if (total_wrote < length) {
554       uint_t avcodec_read = 0;
555       aubio_source_avcodec_readframe(s, &avcodec_read);
556       s->read_samples = avcodec_read;
557       s->read_index = 0;
558       if (s->eof) {
559         break;
560       }
561     } else {
562       s->read_index += end;
563     }
564   }
565
566   aubio_source_pad_multi_output(read_data, s->input_channels, total_wrote);
567
568   *read = total_wrote;
569 }
570
571 uint_t aubio_source_avcodec_get_samplerate(const aubio_source_avcodec_t * s) {
572   return s->samplerate;
573 }
574
575 uint_t aubio_source_avcodec_get_channels(const aubio_source_avcodec_t * s) {
576   return s->input_channels;
577 }
578
579 uint_t aubio_source_avcodec_seek (aubio_source_avcodec_t * s, uint_t pos) {
580   int64_t resampled_pos =
581     (uint_t)ROUND(pos * (s->input_samplerate * 1. / s->samplerate));
582   int64_t min_ts = MAX(resampled_pos - 2000, 0);
583   int64_t max_ts = MIN(resampled_pos + 2000, INT64_MAX);
584   int seek_flags = AVSEEK_FLAG_FRAME | AVSEEK_FLAG_ANY;
585   int ret = AUBIO_FAIL;
586   if (s->avFormatCtx != NULL && s->avr != NULL) {
587     ret = AUBIO_OK;
588   } else {
589     AUBIO_ERR("source_avcodec: failed seeking in %s (file not opened?)",
590         s->path);
591     return ret;
592   }
593   if ((sint_t)pos < 0) {
594     AUBIO_ERR("source_avcodec: could not seek %s at %d (seeking position"
595        " should be >= 0)\n", s->path, pos);
596     return AUBIO_FAIL;
597   }
598   ret = avformat_seek_file(s->avFormatCtx, s->selected_stream,
599       min_ts, resampled_pos, max_ts, seek_flags);
600   if (ret < 0) {
601     AUBIO_ERR("source_avcodec: failed seeking to %d in file %s",
602         pos, s->path);
603   }
604   // reset read status
605   s->eof = 0;
606   s->read_index = 0;
607   s->read_samples = 0;
608 #ifdef HAVE_AVRESAMPLE
609   // reset the AVAudioResampleContext
610   avresample_close(s->avr);
611   avresample_open(s->avr);
612 #elif defined(HAVE_SWRESAMPLE)
613   swr_close(s->avr);
614   swr_init(s->avr);
615 #endif
616   return ret;
617 }
618
619 uint_t aubio_source_avcodec_get_duration (aubio_source_avcodec_t * s) {
620   if (s && &(s->avFormatCtx) != NULL) {
621     int64_t duration = s->avFormatCtx->duration;
622     return s->samplerate * ((uint_t)duration / 1e6 );
623   }
624   return 0;
625 }
626
627 uint_t aubio_source_avcodec_close(aubio_source_avcodec_t * s) {
628   if (s->avr != NULL) {
629 #ifdef HAVE_AVRESAMPLE
630     avresample_close( s->avr );
631 #elif defined(HAVE_SWRESAMPLE)
632     swr_close ( s->avr );
633 #endif
634     av_free ( s->avr );
635   }
636   s->avr = NULL;
637   if (s->avCodecCtx != NULL) {
638 #ifndef HAVE_AUBIO_LIBAVCODEC_DEPRECATED
639     avcodec_free_context( &s->avCodecCtx );
640 #else
641     avcodec_close ( s->avCodecCtx );
642 #endif
643   }
644   s->avCodecCtx = NULL;
645   if (s->avFormatCtx != NULL) {
646     avformat_close_input(&s->avFormatCtx);
647     s->avFormatCtx = NULL;
648   }
649   av_packet_unref(&s->avPacket);
650   return AUBIO_OK;
651 }
652
653 void del_aubio_source_avcodec(aubio_source_avcodec_t * s){
654   AUBIO_ASSERT(s);
655   aubio_source_avcodec_close(s);
656   if (s->output != NULL) {
657     av_free(s->output);
658   }
659   s->output = NULL;
660   if (s->avFrame != NULL) {
661     av_frame_free( &(s->avFrame) );
662   }
663   s->avFrame = NULL;
664   if (s->path) {
665     AUBIO_FREE(s->path);
666   }
667   s->path = NULL;
668   AUBIO_FREE(s);
669 }
670
671 #endif /* HAVE_LIBAV */