source: src/io/source_avcodec.c @ 7760b40

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

src/io/source_avcodec.c: only read packets from selected stream, get correct out_samples from avresample_convert

  • Property mode set to 100644
File size: 11.2 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
22#include "config.h"
23
24#ifdef HAVE_AVCODEC
25
26#include <sndfile.h>
27#include <libavcodec/avcodec.h>
28#include <libavformat/avformat.h>
29#include <libavresample/avresample.h>
30#include <libavutil/opt.h>
31#include <stdlib.h>
32
33#include "aubio_priv.h"
34#include "fvec.h"
35#include "fmat.h"
36#include "source_avcodec.h"
37
38#define AUBIO_AVCODEC_MIN_BUFFER_SIZE FF_MIN_BUFFER_SIZE
39
40#define SHORT_TO_FLOAT(x) (smpl_t)(x * 3.0517578125e-05)
41
42struct _aubio_source_avcodec_t {
43  uint_t hop_size;
44  uint_t samplerate;
45  uint_t channels;
46
47  // some data about the file
48  char_t *path;
49  uint_t input_samplerate;
50  uint_t input_channels;
51
52  // avcodec stuff
53  AVFormatContext *avFormatCtx;
54  AVCodecContext *avCodecCtx;
55  AVFrame *avFrame;
56  AVAudioResampleContext *avr;
57  int16_t *output;
58  uint_t read_samples;
59  uint_t read_index;
60  sint_t selected_stream;
61};
62
63aubio_source_avcodec_t * new_aubio_source_avcodec(char_t * path, uint_t samplerate, uint_t hop_size) {
64  aubio_source_avcodec_t * s = AUBIO_NEW(aubio_source_avcodec_t);
65  int err;
66
67  if (path == NULL) {
68    AUBIO_ERR("Aborted opening null path\n");
69    return NULL;
70  }
71
72  s->hop_size = hop_size;
73  s->channels = 1;
74  s->path = path;
75
76  // register all formats and codecs
77  av_register_all();
78
79  // try opening the file and get some info about it
80  AVFormatContext *avFormatCtx = s->avFormatCtx;
81  avFormatCtx = NULL;
82  if ( (err = avformat_open_input(&avFormatCtx, s->path, NULL, NULL) ) < 0 ) {
83    uint8_t errorstr_len = 128;
84    char errorstr[errorstr_len];
85    if (av_strerror (err, errorstr, errorstr_len) == 0) {
86      AUBIO_ERR("Failed opening %s (%s)\n", s->path, errorstr);
87    } else {
88      AUBIO_ERR("Failed opening %s (unknown error)\n", s->path);
89    }
90    goto beach;
91  }
92
93  // try to make sure max_analyze_duration is big enough for most songs
94  avFormatCtx->max_analyze_duration *= 100;
95
96  // retrieve stream information
97  if ( (err = avformat_find_stream_info(avFormatCtx, NULL)) < 0 ) {
98    uint8_t errorstr_len = 128;
99    char errorstr[errorstr_len];
100    if (av_strerror (err, errorstr, errorstr_len) == 0) {
101      AUBIO_ERR("Could not find stream information for %s (%s)\n", s->path, errorstr);
102    } else {
103      AUBIO_ERR("Could not find stream information for %s (unknown error)\n", s->path);
104    }
105    goto beach;
106  }
107
108  // Dump information about file onto standard error
109  //av_dump_format(avFormatCtx, 0, s->path, 0);
110
111  // look for the first audio stream, printing a warning if more than one is found
112  uint_t i;
113  sint_t selected_stream = -1;
114  for (i = 0; i < avFormatCtx->nb_streams; i++) {
115    if (avFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
116      if (selected_stream == -1) {
117        selected_stream = i;
118      } else {
119        AUBIO_WRN("More than one audio stream in %s, taking the first one\n", s->path);
120      }
121    }
122  }
123  if (selected_stream == -1) {
124    AUBIO_ERR("No audio stream in %s\n", s->path);
125    goto beach;
126  }
127  AUBIO_DBG("Taking stream %d in file %s\n", selected_stream, s->path);
128  s->selected_stream = selected_stream;
129
130  AVCodecContext *avCodecCtx = s->avCodecCtx;
131  avCodecCtx = avFormatCtx->streams[selected_stream]->codec;
132  AVCodec *codec = avcodec_find_decoder(avCodecCtx->codec_id);
133  if (codec == NULL) {
134    AUBIO_ERR("Could not find decoder for %s", s->path);
135    goto beach;
136  }
137
138  if ( ( err = avcodec_open2(avCodecCtx, codec, NULL) ) < 0) {
139    uint8_t errorstr_len = 128;
140    char errorstr[errorstr_len];
141    if (av_strerror (err, errorstr, errorstr_len) == 0) {
142      AUBIO_ERR("Could not load codec for %s (%s)\n", s->path, errorstr);
143    } else {
144      AUBIO_ERR("Could not load codec for %s (unknown error)\n", s->path);
145    }
146    goto beach;
147  }
148
149  /* get input specs */
150  s->input_samplerate = avCodecCtx->sample_rate;
151  s->input_channels   = avCodecCtx->channels;
152  //AUBIO_DBG("input_samplerate: %d\n", s->input_samplerate);
153  //AUBIO_DBG("input_channels: %d\n", s->input_channels);
154
155  if (samplerate == 0) {
156    samplerate = s->input_samplerate;
157    //AUBIO_DBG("sampling rate set to 0, automagically adjusting to %d\n", samplerate);
158  }
159  s->samplerate = samplerate;
160
161  int64_t input_layout = av_get_default_channel_layout(s->input_channels);
162  int64_t mono_layout = av_get_default_channel_layout(1);
163
164  AVAudioResampleContext *avr = s->avr;
165  avr = avresample_alloc_context();
166  av_opt_set_int(avr, "in_channel_layout",  input_layout,           0);
167  av_opt_set_int(avr, "out_channel_layout", mono_layout,            0);
168  av_opt_set_int(avr, "in_sample_rate",     s->input_samplerate,    0);
169  av_opt_set_int(avr, "out_sample_rate",    s->samplerate,          0);
170  av_opt_set_int(avr, "in_sample_fmt",      avCodecCtx->sample_fmt, 0);
171  av_opt_set_int(avr, "out_sample_fmt",     AV_SAMPLE_FMT_S16,      0);
172  if ( ( err = avresample_open(avr) ) < 0) {
173    uint8_t errorstr_len = 128;
174    char errorstr[errorstr_len];
175    if (av_strerror (err, errorstr, errorstr_len) == 0) {
176      AUBIO_ERR("Could not open AVAudioResampleContext for %s (%s)\n", s->path, errorstr);
177    } else {
178      AUBIO_ERR("Could not open AVAudioResampleContext for %s (unknown error)\n", s->path);
179    }
180    goto beach;
181  }
182
183  AVFrame *avFrame = s->avFrame;
184  avFrame = avcodec_alloc_frame();
185  if (!avFrame) {
186    AUBIO_ERR("Could not allocate frame for (%s)\n", s->path);
187  }
188
189  /* allocate output for avr */
190  s->output = (int16_t *)av_malloc(AUBIO_AVCODEC_MIN_BUFFER_SIZE * sizeof(int16_t));
191
192  s->read_samples = 0;
193  s->read_index = 0;
194
195  s->avFormatCtx = avFormatCtx;
196  s->avCodecCtx = avCodecCtx;
197  s->avFrame = avFrame;
198  s->avr = avr;
199
200  //av_log_set_level(AV_LOG_QUIET);
201
202  return s;
203
204beach:
205  AUBIO_ERR("can not read %s at samplerate %dHz with a hop_size of %d\n",
206      s->path, s->samplerate, s->hop_size);
207  del_aubio_source_avcodec(s);
208  return NULL;
209}
210
211void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_samples) {
212  AVFormatContext *avFormatCtx = s->avFormatCtx;
213  AVCodecContext *avCodecCtx = s->avCodecCtx;
214  AVFrame *avFrame = s->avFrame;
215  AVPacket avPacket;
216  av_init_packet (&avPacket);
217  AVAudioResampleContext *avr = s->avr;
218  int16_t *output = s->output;
219
220  do
221  {
222    int err = av_read_frame (avFormatCtx, &avPacket);
223    if (err != 0) {
224      uint8_t errorstr_len = 128;
225      char errorstr[errorstr_len];
226      if (av_strerror (err, errorstr, errorstr_len) == 0) {
227        AUBIO_ERR("Could not read frame in %s (%s)\n", s->path, errorstr);
228      } else {
229        AUBIO_ERR("Could not read frame in %s (unknown error)\n", s->path);
230      }
231      *read_samples = 0;
232      return;
233    }
234  } while (avPacket.stream_index != s->selected_stream);
235
236  int got_frame = 0;
237  int len = avcodec_decode_audio4(avCodecCtx, avFrame, &got_frame, &avPacket);
238
239  if (len < 0) {
240    AUBIO_ERR("Error while decoding %s\n", s->path);
241    return;
242  }
243  if (got_frame == 0) {
244    AUBIO_ERR("Could not get frame for (%s)\n", s->path);
245  } /* else {
246    int data_size =
247      av_samples_get_buffer_size(NULL,
248        avCodecCtx->channels, avFrame->nb_samples,
249        avCodecCtx->sample_fmt, 1);
250    AUBIO_WRN("Got data_size %d frame for (%s)\n", data_size, s->path);
251  } */
252
253  int in_samples = avFrame->nb_samples;
254  int in_plane_size = 0; //avFrame->linesize[0];
255  int out_plane_size = 0; //sizeof(float); //in_samples * sizeof(float);
256  int max_out_samples = AUBIO_AVCODEC_MIN_BUFFER_SIZE;
257  uint_t out_samples = avresample_convert ( avr,
258        (uint8_t **)&output, out_plane_size, max_out_samples,
259        (uint8_t **)avFrame->data, in_plane_size, in_samples);
260  if (out_samples < 0) {
261      AUBIO_ERR("Could not convert frame  (%s)\n", s->path);
262      *read_samples = 0;
263  }
264  //AUBIO_ERR("Got in_plane_size %d frame for (%s)\n", in_plane_size, s->path);
265  //AUBIO_WRN("Delay is %d for %s\n", avresample_get_delay(avr), s->path);
266  //AUBIO_WRN("max_out_samples is %d for AUBIO_AVCODEC_MIN_BUFFER_SIZE %d\n",
267  //    max_out_samples, AUBIO_AVCODEC_MIN_BUFFER_SIZE);
268
269  //AUBIO_WRN("Converted %d to %d samples\n", in_samples, out_samples);
270  //for (i = 0; i < out_samples; i ++) {
271  //  AUBIO_DBG("%f\n", SHORT_TO_FLOAT(output[i]));
272  //}
273  av_free_packet(&avPacket);
274  s->avFormatCtx = avFormatCtx;
275  s->avCodecCtx = avCodecCtx;
276  s->avFrame = avFrame;
277  s->avr = avr;
278  s->output = output;
279
280  *read_samples = out_samples;
281}
282
283
284void aubio_source_avcodec_do(aubio_source_avcodec_t * s, fvec_t * read_data, uint_t * read){
285  uint_t i;
286  //AUBIO_DBG("entering 'do' with %d, %d\n", s->read_samples, s->read_index);
287  if (s->read_samples < s->hop_size) {
288    // write the end of the buffer to the beginning of read_data
289    uint_t partial = s->read_samples;
290    for (i = 0; i < partial; i++) {
291      read_data->data[i] = SHORT_TO_FLOAT(s->output[i + s->read_index]);
292    }
293    // get more data
294    uint_t avcodec_read = 0;
295    aubio_source_avcodec_readframe(s, &avcodec_read);
296    s->read_samples = avcodec_read;
297    s->read_index = 0;
298    // write the beginning of the buffer to the end of read_data
299    uint_t end = MIN(s->hop_size, s->read_samples);
300    if (avcodec_read == 0) {
301      end = partial;
302    }
303    for (i = partial; i < end; i++) {
304      read_data->data[i] = SHORT_TO_FLOAT(s->output[i - partial + s->read_index]);
305    }
306    if (end < s->hop_size) {
307      for (i = end; i < s->hop_size; i++) {
308        read_data->data[i] = 0.;
309      }
310    }
311    s->read_index += end - partial;
312    s->read_samples -= end - partial;
313    *read = end;
314  } else {
315    for (i = 0; i < s->hop_size; i++) {
316      read_data->data[i] = SHORT_TO_FLOAT(s->output[i + s->read_index]);
317    }
318    s->read_index += s->hop_size;
319    s->read_samples -= s->hop_size;
320    *read = s->hop_size;
321  }
322}
323
324void aubio_source_avcodec_do_multi(aubio_source_avcodec_t * s, fmat_t * read_data, uint_t * read){
325  //uint_t i,j, input_channels = s->input_channels;
326}
327
328uint_t aubio_source_avcodec_get_samplerate(aubio_source_avcodec_t * s) {
329  return s->samplerate;
330}
331
332uint_t aubio_source_avcodec_get_channels(aubio_source_avcodec_t * s) {
333  return s->input_channels;
334}
335
336uint_t aubio_source_avcodec_seek (aubio_source_avcodec_t * s, uint_t pos) {
337  //uint_t resampled_pos = (uint_t)ROUND(pos * s->input_samplerate * 1. / s->samplerate);
338  return 0; //sf_seek (s->handle, resampled_pos, SEEK_SET);
339}
340
341void del_aubio_source_avcodec(aubio_source_avcodec_t * s){
342  if (!s) return;
343  if (s->output != NULL) {
344    av_free(s->output);
345  }
346  if (s->avr != NULL) {
347    avresample_close( s->avr );
348    av_free ( s->avr );
349  }
350  s->avr = NULL;
351  if (s->avFrame != NULL) {
352    avcodec_free_frame( &(s->avFrame) );
353  }
354  s->avFrame = NULL;
355  if (s->avCodecCtx != NULL) {
356    avcodec_close ( s->avCodecCtx );
357  }
358  s->avCodecCtx = NULL;
359  if (s->avFormatCtx != NULL) {
360    avformat_close_input ( &(s->avFormatCtx) );
361  }
362  s->avFrame = NULL;
363  s->avFormatCtx = NULL;
364  AUBIO_FREE(s);
365}
366
367#endif /* HAVE_SNDFILE */
Note: See TracBrowser for help on using the repository browser.