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_LIBAV |
---|
25 | |
---|
26 | // determine whether we use libavformat from ffmpeg or from libav |
---|
27 | #define FFMPEG_LIBAVFORMAT (LIBAVFORMAT_VERSION_MICRO > 99 ) |
---|
28 | // max_analyze_duration2 was used from ffmpeg libavformat 55.43.100 through 57.2.100 |
---|
29 | #define FFMPEG_LIBAVFORMAT_MAX_DUR2 FFMPEG_LIBAVFORMAT && ( \ |
---|
30 | (LIBAVFORMAT_VERSION_MAJOR == 55 && LIBAVFORMAT_VERSION_MINOR >= 43) \ |
---|
31 | || (LIBAVFORMAT_VERSION_MAJOR == 56) \ |
---|
32 | || (LIBAVFORMAT_VERSION_MAJOR == 57 && LIBAVFORMAT_VERSION_MINOR < 2) \ |
---|
33 | ) |
---|
34 | |
---|
35 | #include <libavcodec/avcodec.h> |
---|
36 | #include <libavformat/avformat.h> |
---|
37 | #include <libavresample/avresample.h> |
---|
38 | #include <libavutil/opt.h> |
---|
39 | #include <stdlib.h> |
---|
40 | |
---|
41 | #include "aubio_priv.h" |
---|
42 | #include "fvec.h" |
---|
43 | #include "fmat.h" |
---|
44 | #include "source_avcodec.h" |
---|
45 | |
---|
46 | #define AUBIO_AVCODEC_MAX_BUFFER_SIZE FF_MIN_BUFFER_SIZE |
---|
47 | |
---|
48 | struct _aubio_source_avcodec_t { |
---|
49 | uint_t hop_size; |
---|
50 | uint_t samplerate; |
---|
51 | uint_t channels; |
---|
52 | |
---|
53 | // some data about the file |
---|
54 | char_t *path; |
---|
55 | uint_t input_samplerate; |
---|
56 | uint_t input_channels; |
---|
57 | |
---|
58 | // avcodec stuff |
---|
59 | AVFormatContext *avFormatCtx; |
---|
60 | AVCodecContext *avCodecCtx; |
---|
61 | AVFrame *avFrame; |
---|
62 | AVAudioResampleContext *avr; |
---|
63 | smpl_t *output; |
---|
64 | uint_t read_samples; |
---|
65 | uint_t read_index; |
---|
66 | sint_t selected_stream; |
---|
67 | uint_t eof; |
---|
68 | uint_t multi; |
---|
69 | }; |
---|
70 | |
---|
71 | // hack to create or re-create the context the first time _do or _do_multi is called |
---|
72 | void aubio_source_avcodec_reset_resampler(aubio_source_avcodec_t * s, uint_t multi); |
---|
73 | void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_samples); |
---|
74 | |
---|
75 | uint_t aubio_source_avcodec_has_network_url(aubio_source_avcodec_t *s); |
---|
76 | |
---|
77 | uint_t aubio_source_avcodec_has_network_url(aubio_source_avcodec_t *s) { |
---|
78 | char proto[20], authorization[256], hostname[128], uripath[256]; |
---|
79 | int proto_size = 20, authorization_size = 256, hostname_size = 128, |
---|
80 | *port_ptr = 0, path_size = 256; |
---|
81 | av_url_split(proto, proto_size, authorization, authorization_size, hostname, |
---|
82 | hostname_size, port_ptr, uripath, path_size, s->path); |
---|
83 | if (strlen(proto)) { |
---|
84 | return 1; |
---|
85 | } |
---|
86 | return 0; |
---|
87 | } |
---|
88 | |
---|
89 | |
---|
90 | aubio_source_avcodec_t * new_aubio_source_avcodec(const char_t * path, uint_t samplerate, uint_t hop_size) { |
---|
91 | aubio_source_avcodec_t * s = AUBIO_NEW(aubio_source_avcodec_t); |
---|
92 | int err; |
---|
93 | if (path == NULL) { |
---|
94 | AUBIO_ERR("source_avcodec: Aborted opening null path\n"); |
---|
95 | goto beach; |
---|
96 | } |
---|
97 | if ((sint_t)samplerate < 0) { |
---|
98 | AUBIO_ERR("source_avcodec: Can not open %s with samplerate %d\n", path, samplerate); |
---|
99 | goto beach; |
---|
100 | } |
---|
101 | if ((sint_t)hop_size <= 0) { |
---|
102 | AUBIO_ERR("source_avcodec: Can not open %s with hop_size %d\n", path, hop_size); |
---|
103 | goto beach; |
---|
104 | } |
---|
105 | |
---|
106 | s->hop_size = hop_size; |
---|
107 | s->channels = 1; |
---|
108 | |
---|
109 | if (s->path) AUBIO_FREE(s->path); |
---|
110 | s->path = AUBIO_ARRAY(char_t, strnlen(path, PATH_MAX) + 1); |
---|
111 | strncpy(s->path, path, strnlen(path, PATH_MAX) + 1); |
---|
112 | |
---|
113 | // register all formats and codecs |
---|
114 | av_register_all(); |
---|
115 | |
---|
116 | if (aubio_source_avcodec_has_network_url(s)) { |
---|
117 | avformat_network_init(); |
---|
118 | } |
---|
119 | |
---|
120 | // try opening the file and get some info about it |
---|
121 | AVFormatContext *avFormatCtx = s->avFormatCtx; |
---|
122 | avFormatCtx = NULL; |
---|
123 | if ( (err = avformat_open_input(&avFormatCtx, s->path, NULL, NULL) ) < 0 ) { |
---|
124 | char errorstr[256]; |
---|
125 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
126 | AUBIO_ERR("source_avcodec: Failed opening %s (%s)\n", s->path, errorstr); |
---|
127 | goto beach; |
---|
128 | } |
---|
129 | |
---|
130 | // try to make sure max_analyze_duration is big enough for most songs |
---|
131 | #if FFMPEG_LIBAVFORMAT_MAX_DUR2 |
---|
132 | avFormatCtx->max_analyze_duration2 *= 100; |
---|
133 | #else |
---|
134 | avFormatCtx->max_analyze_duration *= 100; |
---|
135 | #endif |
---|
136 | |
---|
137 | // retrieve stream information |
---|
138 | if ( (err = avformat_find_stream_info(avFormatCtx, NULL)) < 0 ) { |
---|
139 | char errorstr[256]; |
---|
140 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
141 | AUBIO_ERR("source_avcodec: Could not find stream information " "for %s (%s)\n", s->path, |
---|
142 | errorstr); |
---|
143 | goto beach; |
---|
144 | } |
---|
145 | |
---|
146 | // dump information about file onto standard error |
---|
147 | //av_dump_format(avFormatCtx, 0, s->path, 0); |
---|
148 | |
---|
149 | // look for the first audio stream |
---|
150 | uint_t i; |
---|
151 | sint_t selected_stream = -1; |
---|
152 | for (i = 0; i < avFormatCtx->nb_streams; i++) { |
---|
153 | if (avFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) { |
---|
154 | if (selected_stream == -1) { |
---|
155 | selected_stream = i; |
---|
156 | } else { |
---|
157 | AUBIO_WRN("source_avcodec: More than one audio stream in %s, " |
---|
158 | "taking the first one\n", s->path); |
---|
159 | } |
---|
160 | } |
---|
161 | } |
---|
162 | if (selected_stream == -1) { |
---|
163 | AUBIO_ERR("source_avcodec: No audio stream in %s\n", s->path); |
---|
164 | goto beach; |
---|
165 | } |
---|
166 | //AUBIO_DBG("Taking stream %d in file %s\n", selected_stream, s->path); |
---|
167 | s->selected_stream = selected_stream; |
---|
168 | |
---|
169 | AVCodecContext *avCodecCtx = s->avCodecCtx; |
---|
170 | avCodecCtx = avFormatCtx->streams[selected_stream]->codec; |
---|
171 | AVCodec *codec = avcodec_find_decoder(avCodecCtx->codec_id); |
---|
172 | if (codec == NULL) { |
---|
173 | AUBIO_ERR("source_avcodec: Could not find decoder for %s", s->path); |
---|
174 | goto beach; |
---|
175 | } |
---|
176 | |
---|
177 | if ( ( err = avcodec_open2(avCodecCtx, codec, NULL) ) < 0) { |
---|
178 | char errorstr[256]; |
---|
179 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
180 | AUBIO_ERR("source_avcodec: Could not load codec for %s (%s)\n", s->path, errorstr); |
---|
181 | goto beach; |
---|
182 | } |
---|
183 | |
---|
184 | /* get input specs */ |
---|
185 | s->input_samplerate = avCodecCtx->sample_rate; |
---|
186 | s->input_channels = avCodecCtx->channels; |
---|
187 | //AUBIO_DBG("input_samplerate: %d\n", s->input_samplerate); |
---|
188 | //AUBIO_DBG("input_channels: %d\n", s->input_channels); |
---|
189 | |
---|
190 | if (samplerate == 0) { |
---|
191 | s->samplerate = s->input_samplerate; |
---|
192 | } else { |
---|
193 | s->samplerate = samplerate; |
---|
194 | } |
---|
195 | |
---|
196 | if (s->samplerate > s->input_samplerate) { |
---|
197 | AUBIO_WRN("source_avcodec: upsampling %s from %d to %d\n", s->path, |
---|
198 | s->input_samplerate, s->samplerate); |
---|
199 | } |
---|
200 | |
---|
201 | AVFrame *avFrame = s->avFrame; |
---|
202 | avFrame = av_frame_alloc(); |
---|
203 | if (!avFrame) { |
---|
204 | AUBIO_ERR("source_avcodec: Could not allocate frame for (%s)\n", s->path); |
---|
205 | } |
---|
206 | |
---|
207 | /* allocate output for avr */ |
---|
208 | s->output = (smpl_t *)av_malloc(AUBIO_AVCODEC_MAX_BUFFER_SIZE * sizeof(smpl_t)); |
---|
209 | |
---|
210 | s->read_samples = 0; |
---|
211 | s->read_index = 0; |
---|
212 | |
---|
213 | s->avFormatCtx = avFormatCtx; |
---|
214 | s->avCodecCtx = avCodecCtx; |
---|
215 | s->avFrame = avFrame; |
---|
216 | |
---|
217 | // default to mono output |
---|
218 | aubio_source_avcodec_reset_resampler(s, 0); |
---|
219 | |
---|
220 | s->eof = 0; |
---|
221 | s->multi = 0; |
---|
222 | |
---|
223 | //av_log_set_level(AV_LOG_QUIET); |
---|
224 | |
---|
225 | return s; |
---|
226 | |
---|
227 | beach: |
---|
228 | //AUBIO_ERR("can not read %s at samplerate %dHz with a hop_size of %d\n", |
---|
229 | // s->path, s->samplerate, s->hop_size); |
---|
230 | del_aubio_source_avcodec(s); |
---|
231 | return NULL; |
---|
232 | } |
---|
233 | |
---|
234 | void aubio_source_avcodec_reset_resampler(aubio_source_avcodec_t * s, uint_t multi) { |
---|
235 | // create or reset resampler to/from mono/multi-channel |
---|
236 | if ( (multi != s->multi) || (s->avr == NULL) ) { |
---|
237 | int64_t input_layout = av_get_default_channel_layout(s->input_channels); |
---|
238 | uint_t output_channels = multi ? s->input_channels : 1; |
---|
239 | int64_t output_layout = av_get_default_channel_layout(output_channels); |
---|
240 | if (s->avr != NULL) { |
---|
241 | avresample_close( s->avr ); |
---|
242 | av_free ( s->avr ); |
---|
243 | s->avr = NULL; |
---|
244 | } |
---|
245 | AVAudioResampleContext *avr = s->avr; |
---|
246 | avr = avresample_alloc_context(); |
---|
247 | |
---|
248 | av_opt_set_int(avr, "in_channel_layout", input_layout, 0); |
---|
249 | av_opt_set_int(avr, "out_channel_layout", output_layout, 0); |
---|
250 | av_opt_set_int(avr, "in_sample_rate", s->input_samplerate, 0); |
---|
251 | av_opt_set_int(avr, "out_sample_rate", s->samplerate, 0); |
---|
252 | av_opt_set_int(avr, "in_sample_fmt", s->avCodecCtx->sample_fmt, 0); |
---|
253 | #if HAVE_AUBIO_DOUBLE |
---|
254 | av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_DBL, 0); |
---|
255 | #else |
---|
256 | av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_FLT, 0); |
---|
257 | #endif |
---|
258 | // TODO: use planar? |
---|
259 | //av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_FLTP, 0); |
---|
260 | int err; |
---|
261 | if ( ( err = avresample_open(avr) ) < 0) { |
---|
262 | char errorstr[256]; |
---|
263 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
264 | AUBIO_ERR("source_avcodec: Could not open AVAudioResampleContext for %s (%s)\n", |
---|
265 | s->path, errorstr); |
---|
266 | //goto beach; |
---|
267 | return; |
---|
268 | } |
---|
269 | s->avr = avr; |
---|
270 | s->multi = multi; |
---|
271 | } |
---|
272 | } |
---|
273 | |
---|
274 | void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_samples) { |
---|
275 | AVFormatContext *avFormatCtx = s->avFormatCtx; |
---|
276 | AVCodecContext *avCodecCtx = s->avCodecCtx; |
---|
277 | AVFrame *avFrame = s->avFrame; |
---|
278 | AVPacket avPacket; |
---|
279 | av_init_packet (&avPacket); |
---|
280 | AVAudioResampleContext *avr = s->avr; |
---|
281 | float *output = s->output; |
---|
282 | *read_samples = 0; |
---|
283 | |
---|
284 | do |
---|
285 | { |
---|
286 | int err = av_read_frame (avFormatCtx, &avPacket); |
---|
287 | if (err == AVERROR_EOF) { |
---|
288 | s->eof = 1; |
---|
289 | goto beach; |
---|
290 | } |
---|
291 | if (err != 0) { |
---|
292 | char errorstr[256]; |
---|
293 | av_strerror (err, errorstr, sizeof(errorstr)); |
---|
294 | AUBIO_ERR("source_avcodec: could not read frame in %s (%s)\n", s->path, errorstr); |
---|
295 | goto beach; |
---|
296 | } |
---|
297 | } while (avPacket.stream_index != s->selected_stream); |
---|
298 | |
---|
299 | int got_frame = 0; |
---|
300 | int len = avcodec_decode_audio4(avCodecCtx, avFrame, &got_frame, &avPacket); |
---|
301 | |
---|
302 | if (len < 0) { |
---|
303 | AUBIO_ERR("Error while decoding %s\n", s->path); |
---|
304 | goto beach; |
---|
305 | } |
---|
306 | if (got_frame == 0) { |
---|
307 | //AUBIO_ERR("Could not get frame for (%s)\n", s->path); |
---|
308 | goto beach; |
---|
309 | } |
---|
310 | |
---|
311 | int in_linesize = 0; |
---|
312 | av_samples_get_buffer_size(&in_linesize, avCodecCtx->channels, |
---|
313 | avFrame->nb_samples, avCodecCtx->sample_fmt, 1); |
---|
314 | int in_samples = avFrame->nb_samples; |
---|
315 | int out_linesize = 0; |
---|
316 | int max_out_samples = AUBIO_AVCODEC_MAX_BUFFER_SIZE; |
---|
317 | int out_samples = avresample_convert ( avr, |
---|
318 | (uint8_t **)&output, out_linesize, max_out_samples, |
---|
319 | (uint8_t **)avFrame->data, in_linesize, in_samples); |
---|
320 | if (out_samples <= 0) { |
---|
321 | //AUBIO_ERR("No sample found while converting frame (%s)\n", s->path); |
---|
322 | goto beach; |
---|
323 | } |
---|
324 | |
---|
325 | *read_samples = out_samples; |
---|
326 | |
---|
327 | beach: |
---|
328 | s->avFormatCtx = avFormatCtx; |
---|
329 | s->avCodecCtx = avCodecCtx; |
---|
330 | s->avFrame = avFrame; |
---|
331 | s->avr = avr; |
---|
332 | s->output = output; |
---|
333 | |
---|
334 | av_packet_unref(&avPacket); |
---|
335 | } |
---|
336 | |
---|
337 | void aubio_source_avcodec_do(aubio_source_avcodec_t * s, fvec_t * read_data, uint_t * read){ |
---|
338 | if (s->multi == 1) aubio_source_avcodec_reset_resampler(s, 0); |
---|
339 | uint_t i; |
---|
340 | uint_t end = 0; |
---|
341 | uint_t total_wrote = 0; |
---|
342 | while (total_wrote < s->hop_size) { |
---|
343 | end = MIN(s->read_samples - s->read_index, s->hop_size - total_wrote); |
---|
344 | for (i = 0; i < end; i++) { |
---|
345 | read_data->data[i + total_wrote] = s->output[i + s->read_index]; |
---|
346 | } |
---|
347 | total_wrote += end; |
---|
348 | if (total_wrote < s->hop_size) { |
---|
349 | uint_t avcodec_read = 0; |
---|
350 | aubio_source_avcodec_readframe(s, &avcodec_read); |
---|
351 | s->read_samples = avcodec_read; |
---|
352 | s->read_index = 0; |
---|
353 | if (s->eof) { |
---|
354 | break; |
---|
355 | } |
---|
356 | } else { |
---|
357 | s->read_index += end; |
---|
358 | } |
---|
359 | } |
---|
360 | if (total_wrote < s->hop_size) { |
---|
361 | for (i = total_wrote; i < s->hop_size; i++) { |
---|
362 | read_data->data[i] = 0.; |
---|
363 | } |
---|
364 | } |
---|
365 | *read = total_wrote; |
---|
366 | } |
---|
367 | |
---|
368 | void aubio_source_avcodec_do_multi(aubio_source_avcodec_t * s, fmat_t * read_data, uint_t * read){ |
---|
369 | if (s->multi == 0) aubio_source_avcodec_reset_resampler(s, 1); |
---|
370 | uint_t i,j; |
---|
371 | uint_t end = 0; |
---|
372 | uint_t total_wrote = 0; |
---|
373 | while (total_wrote < s->hop_size) { |
---|
374 | end = MIN(s->read_samples - s->read_index, s->hop_size - total_wrote); |
---|
375 | for (j = 0; j < read_data->height; j++) { |
---|
376 | for (i = 0; i < end; i++) { |
---|
377 | read_data->data[j][i + total_wrote] = |
---|
378 | s->output[(i + s->read_index) * s->input_channels + j]; |
---|
379 | } |
---|
380 | } |
---|
381 | total_wrote += end; |
---|
382 | if (total_wrote < s->hop_size) { |
---|
383 | uint_t avcodec_read = 0; |
---|
384 | aubio_source_avcodec_readframe(s, &avcodec_read); |
---|
385 | s->read_samples = avcodec_read; |
---|
386 | s->read_index = 0; |
---|
387 | if (s->eof) { |
---|
388 | break; |
---|
389 | } |
---|
390 | } else { |
---|
391 | s->read_index += end; |
---|
392 | } |
---|
393 | } |
---|
394 | if (total_wrote < s->hop_size) { |
---|
395 | for (j = 0; j < read_data->height; j++) { |
---|
396 | for (i = total_wrote; i < s->hop_size; i++) { |
---|
397 | read_data->data[j][i] = 0.; |
---|
398 | } |
---|
399 | } |
---|
400 | } |
---|
401 | *read = total_wrote; |
---|
402 | } |
---|
403 | |
---|
404 | uint_t aubio_source_avcodec_get_samplerate(const aubio_source_avcodec_t * s) { |
---|
405 | return s->samplerate; |
---|
406 | } |
---|
407 | |
---|
408 | uint_t aubio_source_avcodec_get_channels(const aubio_source_avcodec_t * s) { |
---|
409 | return s->input_channels; |
---|
410 | } |
---|
411 | |
---|
412 | uint_t aubio_source_avcodec_seek (aubio_source_avcodec_t * s, uint_t pos) { |
---|
413 | int64_t resampled_pos = (uint_t)ROUND(pos * (s->input_samplerate * 1. / s->samplerate)); |
---|
414 | int64_t min_ts = MAX(resampled_pos - 2000, 0); |
---|
415 | int64_t max_ts = MIN(resampled_pos + 2000, INT64_MAX); |
---|
416 | int seek_flags = AVSEEK_FLAG_FRAME | AVSEEK_FLAG_ANY; |
---|
417 | int ret = avformat_seek_file(s->avFormatCtx, s->selected_stream, |
---|
418 | min_ts, resampled_pos, max_ts, seek_flags); |
---|
419 | if (ret < 0) { |
---|
420 | AUBIO_ERR("Failed seeking to %d in file %s", pos, s->path); |
---|
421 | } |
---|
422 | // reset read status |
---|
423 | s->eof = 0; |
---|
424 | s->read_index = 0; |
---|
425 | s->read_samples = 0; |
---|
426 | // reset the AVAudioResampleContext |
---|
427 | avresample_close(s->avr); |
---|
428 | avresample_open(s->avr); |
---|
429 | return ret; |
---|
430 | } |
---|
431 | |
---|
432 | uint_t aubio_source_avcodec_get_duration (aubio_source_avcodec_t * s) { |
---|
433 | if (s && &(s->avFormatCtx) != NULL) { |
---|
434 | int64_t duration = s->avFormatCtx->duration; |
---|
435 | return s->samplerate * ((uint_t)duration / 1e6 ); |
---|
436 | } |
---|
437 | return 0; |
---|
438 | } |
---|
439 | |
---|
440 | uint_t aubio_source_avcodec_close(aubio_source_avcodec_t * s) { |
---|
441 | if (s->avr != NULL) { |
---|
442 | avresample_close( s->avr ); |
---|
443 | av_free ( s->avr ); |
---|
444 | } |
---|
445 | s->avr = NULL; |
---|
446 | if (s->avCodecCtx != NULL) { |
---|
447 | avcodec_close ( s->avCodecCtx ); |
---|
448 | } |
---|
449 | s->avCodecCtx = NULL; |
---|
450 | if (s->avFormatCtx != NULL) { |
---|
451 | avformat_close_input ( &(s->avFormatCtx) ); |
---|
452 | } |
---|
453 | s->avFormatCtx = NULL; |
---|
454 | return AUBIO_OK; |
---|
455 | } |
---|
456 | |
---|
457 | void del_aubio_source_avcodec(aubio_source_avcodec_t * s){ |
---|
458 | if (!s) return; |
---|
459 | aubio_source_avcodec_close(s); |
---|
460 | if (s->output != NULL) { |
---|
461 | av_free(s->output); |
---|
462 | } |
---|
463 | s->output = NULL; |
---|
464 | if (s->avFrame != NULL) { |
---|
465 | av_frame_free( &(s->avFrame) ); |
---|
466 | } |
---|
467 | if (s->path) AUBIO_FREE(s->path); |
---|
468 | s->avFrame = NULL; |
---|
469 | AUBIO_FREE(s); |
---|
470 | } |
---|
471 | |
---|
472 | #endif /* HAVE_LIBAV */ |
---|