]> git.sesse.net Git - ffmpeg/blob - libavresample/utils.c
configure: Add --disable-inline-asm command line option
[ffmpeg] / libavresample / utils.c
1 /*
2  * Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "libavutil/common.h"
22 #include "libavutil/dict.h"
23 #include "libavutil/error.h"
24 #include "libavutil/log.h"
25 #include "libavutil/mem.h"
26 #include "libavutil/opt.h"
27
28 #include "avresample.h"
29 #include "audio_data.h"
30 #include "internal.h"
31
32 int avresample_open(AVAudioResampleContext *avr)
33 {
34     int ret;
35
36     /* set channel mixing parameters */
37     avr->in_channels = av_get_channel_layout_nb_channels(avr->in_channel_layout);
38     if (avr->in_channels <= 0 || avr->in_channels > AVRESAMPLE_MAX_CHANNELS) {
39         av_log(avr, AV_LOG_ERROR, "Invalid input channel layout: %"PRIu64"\n",
40                avr->in_channel_layout);
41         return AVERROR(EINVAL);
42     }
43     avr->out_channels = av_get_channel_layout_nb_channels(avr->out_channel_layout);
44     if (avr->out_channels <= 0 || avr->out_channels > AVRESAMPLE_MAX_CHANNELS) {
45         av_log(avr, AV_LOG_ERROR, "Invalid output channel layout: %"PRIu64"\n",
46                avr->out_channel_layout);
47         return AVERROR(EINVAL);
48     }
49     avr->resample_channels = FFMIN(avr->in_channels, avr->out_channels);
50     avr->downmix_needed    = avr->in_channels  > avr->out_channels;
51     avr->upmix_needed      = avr->out_channels > avr->in_channels ||
52                              (!avr->downmix_needed && (avr->am->matrix ||
53                               avr->in_channel_layout != avr->out_channel_layout));
54     avr->mixing_needed     = avr->downmix_needed || avr->upmix_needed;
55
56     /* set resampling parameters */
57     avr->resample_needed   = avr->in_sample_rate != avr->out_sample_rate ||
58                              avr->force_resampling;
59
60     /* select internal sample format if not specified by the user */
61     if (avr->internal_sample_fmt == AV_SAMPLE_FMT_NONE &&
62         (avr->mixing_needed || avr->resample_needed)) {
63         enum AVSampleFormat  in_fmt = av_get_planar_sample_fmt(avr->in_sample_fmt);
64         enum AVSampleFormat out_fmt = av_get_planar_sample_fmt(avr->out_sample_fmt);
65         int max_bps = FFMAX(av_get_bytes_per_sample(in_fmt),
66                             av_get_bytes_per_sample(out_fmt));
67         if (max_bps <= 2) {
68             avr->internal_sample_fmt = AV_SAMPLE_FMT_S16P;
69         } else if (avr->mixing_needed) {
70             avr->internal_sample_fmt = AV_SAMPLE_FMT_FLTP;
71         } else {
72             if (max_bps <= 4) {
73                 if (in_fmt  == AV_SAMPLE_FMT_S32P ||
74                     out_fmt == AV_SAMPLE_FMT_S32P) {
75                     if (in_fmt  == AV_SAMPLE_FMT_FLTP ||
76                         out_fmt == AV_SAMPLE_FMT_FLTP) {
77                         /* if one is s32 and the other is flt, use dbl */
78                         avr->internal_sample_fmt = AV_SAMPLE_FMT_DBLP;
79                     } else {
80                         /* if one is s32 and the other is s32, s16, or u8, use s32 */
81                         avr->internal_sample_fmt = AV_SAMPLE_FMT_S32P;
82                     }
83                 } else {
84                     /* if one is flt and the other is flt, s16 or u8, use flt */
85                     avr->internal_sample_fmt = AV_SAMPLE_FMT_FLTP;
86                 }
87             } else {
88                 /* if either is dbl, use dbl */
89                 avr->internal_sample_fmt = AV_SAMPLE_FMT_DBLP;
90             }
91         }
92         av_log(avr, AV_LOG_DEBUG, "Using %s as internal sample format\n",
93                av_get_sample_fmt_name(avr->internal_sample_fmt));
94     }
95
96     /* set sample format conversion parameters */
97     if (avr->in_channels == 1)
98         avr->in_sample_fmt = av_get_planar_sample_fmt(avr->in_sample_fmt);
99     if (avr->out_channels == 1)
100         avr->out_sample_fmt = av_get_planar_sample_fmt(avr->out_sample_fmt);
101     avr->in_convert_needed = (avr->resample_needed || avr->mixing_needed) &&
102                               avr->in_sample_fmt != avr->internal_sample_fmt;
103     if (avr->resample_needed || avr->mixing_needed)
104         avr->out_convert_needed = avr->internal_sample_fmt != avr->out_sample_fmt;
105     else
106         avr->out_convert_needed = avr->in_sample_fmt != avr->out_sample_fmt;
107
108     /* allocate buffers */
109     if (avr->mixing_needed || avr->in_convert_needed) {
110         avr->in_buffer = ff_audio_data_alloc(FFMAX(avr->in_channels, avr->out_channels),
111                                              0, avr->internal_sample_fmt,
112                                              "in_buffer");
113         if (!avr->in_buffer) {
114             ret = AVERROR(EINVAL);
115             goto error;
116         }
117     }
118     if (avr->resample_needed) {
119         avr->resample_out_buffer = ff_audio_data_alloc(avr->out_channels,
120                                                        0, avr->internal_sample_fmt,
121                                                        "resample_out_buffer");
122         if (!avr->resample_out_buffer) {
123             ret = AVERROR(EINVAL);
124             goto error;
125         }
126     }
127     if (avr->out_convert_needed) {
128         avr->out_buffer = ff_audio_data_alloc(avr->out_channels, 0,
129                                               avr->out_sample_fmt, "out_buffer");
130         if (!avr->out_buffer) {
131             ret = AVERROR(EINVAL);
132             goto error;
133         }
134     }
135     avr->out_fifo = av_audio_fifo_alloc(avr->out_sample_fmt, avr->out_channels,
136                                         1024);
137     if (!avr->out_fifo) {
138         ret = AVERROR(ENOMEM);
139         goto error;
140     }
141
142     /* setup contexts */
143     if (avr->in_convert_needed) {
144         avr->ac_in = ff_audio_convert_alloc(avr, avr->internal_sample_fmt,
145                                             avr->in_sample_fmt, avr->in_channels);
146         if (!avr->ac_in) {
147             ret = AVERROR(ENOMEM);
148             goto error;
149         }
150     }
151     if (avr->out_convert_needed) {
152         enum AVSampleFormat src_fmt;
153         if (avr->in_convert_needed)
154             src_fmt = avr->internal_sample_fmt;
155         else
156             src_fmt = avr->in_sample_fmt;
157         avr->ac_out = ff_audio_convert_alloc(avr, avr->out_sample_fmt, src_fmt,
158                                              avr->out_channels);
159         if (!avr->ac_out) {
160             ret = AVERROR(ENOMEM);
161             goto error;
162         }
163     }
164     if (avr->resample_needed) {
165         avr->resample = ff_audio_resample_init(avr);
166         if (!avr->resample) {
167             ret = AVERROR(ENOMEM);
168             goto error;
169         }
170     }
171     if (avr->mixing_needed) {
172         ret = ff_audio_mix_init(avr);
173         if (ret < 0)
174             goto error;
175     }
176
177     return 0;
178
179 error:
180     avresample_close(avr);
181     return ret;
182 }
183
184 void avresample_close(AVAudioResampleContext *avr)
185 {
186     ff_audio_data_free(&avr->in_buffer);
187     ff_audio_data_free(&avr->resample_out_buffer);
188     ff_audio_data_free(&avr->out_buffer);
189     av_audio_fifo_free(avr->out_fifo);
190     avr->out_fifo = NULL;
191     av_freep(&avr->ac_in);
192     av_freep(&avr->ac_out);
193     ff_audio_resample_free(&avr->resample);
194     ff_audio_mix_close(avr->am);
195     return;
196 }
197
198 void avresample_free(AVAudioResampleContext **avr)
199 {
200     if (!*avr)
201         return;
202     avresample_close(*avr);
203     av_freep(&(*avr)->am);
204     av_opt_free(*avr);
205     av_freep(avr);
206 }
207
208 static int handle_buffered_output(AVAudioResampleContext *avr,
209                                   AudioData *output, AudioData *converted)
210 {
211     int ret;
212
213     if (!output || av_audio_fifo_size(avr->out_fifo) > 0 ||
214         (converted && output->allocated_samples < converted->nb_samples)) {
215         if (converted) {
216             /* if there are any samples in the output FIFO or if the
217                user-supplied output buffer is not large enough for all samples,
218                we add to the output FIFO */
219             av_dlog(avr, "[FIFO] add %s to out_fifo\n", converted->name);
220             ret = ff_audio_data_add_to_fifo(avr->out_fifo, converted, 0,
221                                             converted->nb_samples);
222             if (ret < 0)
223                 return ret;
224         }
225
226         /* if the user specified an output buffer, read samples from the output
227            FIFO to the user output */
228         if (output && output->allocated_samples > 0) {
229             av_dlog(avr, "[FIFO] read from out_fifo to output\n");
230             av_dlog(avr, "[end conversion]\n");
231             return ff_audio_data_read_from_fifo(avr->out_fifo, output,
232                                                 output->allocated_samples);
233         }
234     } else if (converted) {
235         /* copy directly to output if it is large enough or there is not any
236            data in the output FIFO */
237         av_dlog(avr, "[copy] %s to output\n", converted->name);
238         output->nb_samples = 0;
239         ret = ff_audio_data_copy(output, converted);
240         if (ret < 0)
241             return ret;
242         av_dlog(avr, "[end conversion]\n");
243         return output->nb_samples;
244     }
245     av_dlog(avr, "[end conversion]\n");
246     return 0;
247 }
248
249 int attribute_align_arg avresample_convert(AVAudioResampleContext *avr,
250                                            void **output, int out_plane_size,
251                                            int out_samples, void **input,
252                                            int in_plane_size, int in_samples)
253 {
254     AudioData input_buffer;
255     AudioData output_buffer;
256     AudioData *current_buffer;
257     int ret;
258
259     /* reset internal buffers */
260     if (avr->in_buffer) {
261         avr->in_buffer->nb_samples = 0;
262         ff_audio_data_set_channels(avr->in_buffer,
263                                    avr->in_buffer->allocated_channels);
264     }
265     if (avr->resample_out_buffer) {
266         avr->resample_out_buffer->nb_samples = 0;
267         ff_audio_data_set_channels(avr->resample_out_buffer,
268                                    avr->resample_out_buffer->allocated_channels);
269     }
270     if (avr->out_buffer) {
271         avr->out_buffer->nb_samples = 0;
272         ff_audio_data_set_channels(avr->out_buffer,
273                                    avr->out_buffer->allocated_channels);
274     }
275
276     av_dlog(avr, "[start conversion]\n");
277
278     /* initialize output_buffer with output data */
279     if (output) {
280         ret = ff_audio_data_init(&output_buffer, output, out_plane_size,
281                                  avr->out_channels, out_samples,
282                                  avr->out_sample_fmt, 0, "output");
283         if (ret < 0)
284             return ret;
285         output_buffer.nb_samples = 0;
286     }
287
288     if (input) {
289         /* initialize input_buffer with input data */
290         ret = ff_audio_data_init(&input_buffer, input, in_plane_size,
291                                  avr->in_channels, in_samples,
292                                  avr->in_sample_fmt, 1, "input");
293         if (ret < 0)
294             return ret;
295         current_buffer = &input_buffer;
296
297         if (avr->upmix_needed && !avr->in_convert_needed && !avr->resample_needed &&
298             !avr->out_convert_needed && output && out_samples >= in_samples) {
299             /* in some rare cases we can copy input to output and upmix
300                directly in the output buffer */
301             av_dlog(avr, "[copy] %s to output\n", current_buffer->name);
302             ret = ff_audio_data_copy(&output_buffer, current_buffer);
303             if (ret < 0)
304                 return ret;
305             current_buffer = &output_buffer;
306         } else if (avr->mixing_needed || avr->in_convert_needed) {
307             /* if needed, copy or convert input to in_buffer, and downmix if
308                applicable */
309             if (avr->in_convert_needed) {
310                 ret = ff_audio_data_realloc(avr->in_buffer,
311                                             current_buffer->nb_samples);
312                 if (ret < 0)
313                     return ret;
314                 av_dlog(avr, "[convert] %s to in_buffer\n", current_buffer->name);
315                 ret = ff_audio_convert(avr->ac_in, avr->in_buffer, current_buffer,
316                                        current_buffer->nb_samples);
317                 if (ret < 0)
318                     return ret;
319             } else {
320                 av_dlog(avr, "[copy] %s to in_buffer\n", current_buffer->name);
321                 ret = ff_audio_data_copy(avr->in_buffer, current_buffer);
322                 if (ret < 0)
323                     return ret;
324             }
325             ff_audio_data_set_channels(avr->in_buffer, avr->in_channels);
326             if (avr->downmix_needed) {
327                 av_dlog(avr, "[downmix] in_buffer\n");
328                 ret = ff_audio_mix(avr->am, avr->in_buffer);
329                 if (ret < 0)
330                     return ret;
331             }
332             current_buffer = avr->in_buffer;
333         }
334     } else {
335         /* flush resampling buffer and/or output FIFO if input is NULL */
336         if (!avr->resample_needed)
337             return handle_buffered_output(avr, output ? &output_buffer : NULL,
338                                           NULL);
339         current_buffer = NULL;
340     }
341
342     if (avr->resample_needed) {
343         AudioData *resample_out;
344         int consumed = 0;
345
346         if (!avr->out_convert_needed && output && out_samples > 0)
347             resample_out = &output_buffer;
348         else
349             resample_out = avr->resample_out_buffer;
350         av_dlog(avr, "[resample] %s to %s\n", current_buffer->name,
351                 resample_out->name);
352         ret = ff_audio_resample(avr->resample, resample_out,
353                                 current_buffer, &consumed);
354         if (ret < 0)
355             return ret;
356
357         /* if resampling did not produce any samples, just return 0 */
358         if (resample_out->nb_samples == 0) {
359             av_dlog(avr, "[end conversion]\n");
360             return 0;
361         }
362
363         current_buffer = resample_out;
364     }
365
366     if (avr->upmix_needed) {
367         av_dlog(avr, "[upmix] %s\n", current_buffer->name);
368         ret = ff_audio_mix(avr->am, current_buffer);
369         if (ret < 0)
370             return ret;
371     }
372
373     /* if we resampled or upmixed directly to output, return here */
374     if (current_buffer == &output_buffer) {
375         av_dlog(avr, "[end conversion]\n");
376         return current_buffer->nb_samples;
377     }
378
379     if (avr->out_convert_needed) {
380         if (output && out_samples >= current_buffer->nb_samples) {
381             /* convert directly to output */
382             av_dlog(avr, "[convert] %s to output\n", current_buffer->name);
383             ret = ff_audio_convert(avr->ac_out, &output_buffer, current_buffer,
384                                    current_buffer->nb_samples);
385             if (ret < 0)
386                 return ret;
387
388             av_dlog(avr, "[end conversion]\n");
389             return output_buffer.nb_samples;
390         } else {
391             ret = ff_audio_data_realloc(avr->out_buffer,
392                                         current_buffer->nb_samples);
393             if (ret < 0)
394                 return ret;
395             av_dlog(avr, "[convert] %s to out_buffer\n", current_buffer->name);
396             ret = ff_audio_convert(avr->ac_out, avr->out_buffer,
397                                    current_buffer, current_buffer->nb_samples);
398             if (ret < 0)
399                 return ret;
400             current_buffer = avr->out_buffer;
401         }
402     }
403
404     return handle_buffered_output(avr, output ? &output_buffer : NULL,
405                                   current_buffer);
406 }
407
408 int avresample_available(AVAudioResampleContext *avr)
409 {
410     return av_audio_fifo_size(avr->out_fifo);
411 }
412
413 int avresample_read(AVAudioResampleContext *avr, void **output, int nb_samples)
414 {
415     if (!output)
416         return av_audio_fifo_drain(avr->out_fifo, nb_samples);
417     return av_audio_fifo_read(avr->out_fifo, output, nb_samples);
418 }
419
420 unsigned avresample_version(void)
421 {
422     return LIBAVRESAMPLE_VERSION_INT;
423 }
424
425 const char *avresample_license(void)
426 {
427 #define LICENSE_PREFIX "libavresample license: "
428     return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
429 }
430
431 const char *avresample_configuration(void)
432 {
433     return LIBAV_CONFIGURATION;
434 }