FFmpeg
Loading...
Searching...
No Matches
swresample.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2011-2013 Michael Niedermayer (michaelni@gmx.at)
3 *
4 * This file is part of libswresample
5 *
6 * libswresample 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 * libswresample 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 libswresample; 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/mem.h"
22#include "libavutil/opt.h"
23#include "swresample_internal.h"
24#include "audioconvert.h"
25#include "libavutil/avassert.h"
27#include "libavutil/internal.h"
28
29#include <float.h>
30
31#define ALIGN 32
32
33int swri_check_chlayout(struct SwrContext *s, const AVChannelLayout *chl, const char *name) {
34 char l1[1024];
35 int ret;
36
37 if (!(ret = av_channel_layout_check(chl)) || chl->nb_channels > SWR_CH_MAX) {
38 if (ret)
39 av_channel_layout_describe(chl, l1, sizeof(l1));
40 av_log(s, AV_LOG_WARNING, "%s channel layout \"%s\" is invalid or unsupported.\n", name, ret ? l1 : "");
41 return AVERROR(EINVAL);
42 }
43
44 return 0;
45}
46
48 if(!s || s->in_convert) // s needs to be allocated but not initialized
49 return AVERROR(EINVAL);
50 s->channel_map = channel_map;
51 return 0;
52}
53
55 const AVChannelLayout *out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate,
56 const AVChannelLayout *in_ch_layout, enum AVSampleFormat in_sample_fmt, int in_sample_rate,
57 int log_offset, void *log_ctx) {
58 struct SwrContext *s = *ps;
59 int ret;
60
61 if (!s) s = swr_alloc();
62 if (!s) return AVERROR(ENOMEM);
63
64 *ps = s;
65
66 s->log_level_offset = log_offset;
67 s->log_ctx = log_ctx;
68
69 if ((ret = av_opt_set_chlayout(s, "ochl", out_ch_layout, 0)) < 0)
70 goto fail;
71 if ((ret = swri_check_chlayout(s, out_ch_layout, "ochl")) < 0)
72 goto fail;
73
74 if ((ret = av_opt_set_int(s, "osf", out_sample_fmt, 0)) < 0)
75 goto fail;
76
77 if ((ret = av_opt_set_int(s, "osr", out_sample_rate, 0)) < 0)
78 goto fail;
79
80 if ((ret = av_opt_set_chlayout(s, "ichl", in_ch_layout, 0)) < 0)
81 goto fail;
82 if ((ret = swri_check_chlayout(s, in_ch_layout, "ichl")) < 0)
83 goto fail;
84
85 if ((ret = av_opt_set_int(s, "isf", in_sample_fmt, 0)) < 0)
86 goto fail;
87
88 if ((ret = av_opt_set_int(s, "isr", in_sample_rate, 0)) < 0)
89 goto fail;
90
91 return 0;
92fail:
93 av_log(s, AV_LOG_ERROR, "Failed to set option\n");
94 swr_free(ps);
95 return ret;
96}
97
99 a->fmt = fmt;
100 a->bps = av_get_bytes_per_sample(fmt);
101 a->planar= av_sample_fmt_is_planar(fmt);
102 if (a->ch_count == 1)
103 a->planar = 1;
104}
105
106static void free_temp(AudioData *a){
107 av_free(a->data);
108 memset(a, 0, sizeof(*a));
109}
110
112 s->in_buffer_index= 0;
113 s->in_buffer_count= 0;
114 s->resample_in_constraint= 0;
115 memset(s->in.ch, 0, sizeof(s->in.ch));
116 memset(s->out.ch, 0, sizeof(s->out.ch));
117 free_temp(&s->postin);
118 free_temp(&s->midbuf);
119 free_temp(&s->preout);
120 free_temp(&s->in_buffer);
121 free_temp(&s->silence);
122 free_temp(&s->drop_temp);
123 free_temp(&s->dither.noise);
124 free_temp(&s->dither.temp);
125 av_channel_layout_uninit(&s->in_ch_layout);
126 av_channel_layout_uninit(&s->out_ch_layout);
127 av_channel_layout_uninit(&s->used_ch_layout);
129 swri_audio_convert_free(&s->out_convert);
130 swri_audio_convert_free(&s->full_convert);
132
133 s->delayed_samples_fixup = 0;
134 s->flushed = 0;
135}
136
138 SwrContext *s= *ss;
139 if(s){
141 av_channel_layout_uninit(&s->user_in_chlayout);
142 av_channel_layout_uninit(&s->user_out_chlayout);
143 av_channel_layout_uninit(&s->user_used_chlayout);
144
145 if (s->resampler)
146 s->resampler->free(&s->resample);
147 }
148
149 av_freep(ss);
150}
151
155
157 int ret;
158 char l1[1024], l2[1024];
159
161
162 if((unsigned) s-> in_sample_fmt >= AV_SAMPLE_FMT_NB){
163 av_log(s, AV_LOG_ERROR, "Requested input sample format %d is invalid\n", s->in_sample_fmt);
164 return AVERROR(EINVAL);
165 }
166 if((unsigned) s->out_sample_fmt >= AV_SAMPLE_FMT_NB){
167 av_log(s, AV_LOG_ERROR, "Requested output sample format %d is invalid\n", s->out_sample_fmt);
168 return AVERROR(EINVAL);
169 }
170
171 if(s-> in_sample_rate <= 0){
172 av_log(s, AV_LOG_ERROR, "Requested input sample rate %d is invalid\n", s->in_sample_rate);
173 return AVERROR(EINVAL);
174 }
175 if(s->out_sample_rate <= 0){
176 av_log(s, AV_LOG_ERROR, "Requested output sample rate %d is invalid\n", s->out_sample_rate);
177 return AVERROR(EINVAL);
178 }
179
180 if (s->out_sample_fmt == AV_SAMPLE_FMT_DSD &&
181 !(s->in_sample_fmt == AV_SAMPLE_FMT_DSD &&
182 s->in_sample_rate == s->out_sample_rate &&
183 !(s->flags & SWR_FLAG_RESAMPLE))) {
184 av_log(s, AV_LOG_ERROR, "Conversion to DSD is not supported\n");
185 return AVERROR(EINVAL);
186 }
187
188 s->out.ch_count = s-> user_out_chlayout.nb_channels;
190
191 if (swri_check_chlayout(s, &s->user_in_chlayout , "input") ||
192 swri_check_chlayout(s, &s->user_out_chlayout, "output"))
193 return AVERROR(EINVAL);
194
195 ret = av_channel_layout_copy(&s->in_ch_layout, &s->user_in_chlayout);
196 ret |= av_channel_layout_copy(&s->out_ch_layout, &s->user_out_chlayout);
197 ret |= av_channel_layout_copy(&s->used_ch_layout, &s->user_used_chlayout);
198 if (ret < 0)
199 return ret;
200
201 s->int_sample_fmt= s->user_int_sample_fmt;
202
203 s->dither.method = s->user_dither_method;
204
205 switch(s->engine){
206#if CONFIG_LIBSOXR
207 case SWR_ENGINE_SOXR: s->resampler = &swri_soxr_resampler; break;
208#endif
209 case SWR_ENGINE_SWR : s->resampler = &swri_resampler; break;
210 default:
211 av_log(s, AV_LOG_ERROR, "Requested resampling engine is unavailable\n");
212 return AVERROR(EINVAL);
213 }
214
215 if (!av_channel_layout_check(&s->used_ch_layout))
216 av_channel_layout_default(&s->used_ch_layout, s->in.ch_count);
217
218 if (s->used_ch_layout.nb_channels != s->in_ch_layout.nb_channels)
219 av_channel_layout_uninit(&s->in_ch_layout);
220
221 if (s->used_ch_layout.order == AV_CHANNEL_ORDER_UNSPEC)
222 av_channel_layout_default(&s->used_ch_layout, s->used_ch_layout.nb_channels);
223 if (s->in_ch_layout.order == AV_CHANNEL_ORDER_UNSPEC) {
224 ret = av_channel_layout_copy(&s->in_ch_layout, &s->used_ch_layout);
225 if (ret < 0)
226 return ret;
227 }
228 if (s->out_ch_layout.order == AV_CHANNEL_ORDER_UNSPEC)
229 av_channel_layout_default(&s->out_ch_layout, s->out.ch_count);
230
231 s->rematrix = av_channel_layout_compare(&s->out_ch_layout, &s->in_ch_layout) ||
232 s->rematrix_volume!=1.0 ||
233 s->rematrix_custom;
234
235 if(s->int_sample_fmt == AV_SAMPLE_FMT_NONE){
236 // DSD to PCM conversion is done in floating point
237 if( s->in_sample_fmt == AV_SAMPLE_FMT_DSD
238 && s->out_sample_fmt != AV_SAMPLE_FMT_DSD) {
239 s->int_sample_fmt= AV_SAMPLE_FMT_FLTP;
240 // 16bit or less to 16bit or less with the same sample rate
241 } else if( av_get_bytes_per_sample(s-> in_sample_fmt) <= 2
242 && av_get_bytes_per_sample(s->out_sample_fmt) <= 2
243 && s->out_sample_rate==s->in_sample_rate) {
244 s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
245 // 8 -> 8, 16->8, 8->16bit
247 +av_get_bytes_per_sample(s->out_sample_fmt) <= 3 ) {
248 s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
249 }else if( av_get_bytes_per_sample(s-> in_sample_fmt) <= 2
250 && !s->rematrix
251 && s->out_sample_rate==s->in_sample_rate
252 && !(s->flags & SWR_FLAG_RESAMPLE)){
253 s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
255 && av_get_planar_sample_fmt(s->out_sample_fmt) == AV_SAMPLE_FMT_S32P
256 && !s->rematrix
257 && s->out_sample_rate == s->in_sample_rate
258 && !(s->flags & SWR_FLAG_RESAMPLE)
259 && s->engine != SWR_ENGINE_SOXR){
260 s->int_sample_fmt= AV_SAMPLE_FMT_S32P;
261 }else if(av_get_bytes_per_sample(s->in_sample_fmt) <= 4){
262 s->int_sample_fmt= AV_SAMPLE_FMT_FLTP;
263 }else{
264 s->int_sample_fmt= AV_SAMPLE_FMT_DBLP;
265 }
266 }
267 av_log(s, AV_LOG_DEBUG, "Using %s internally between filters\n", av_get_sample_fmt_name(s->int_sample_fmt));
268
269 if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P
270 &&s->int_sample_fmt != AV_SAMPLE_FMT_S32P
271 &&s->int_sample_fmt != AV_SAMPLE_FMT_S64P
272 &&s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
273 &&s->int_sample_fmt != AV_SAMPLE_FMT_DBLP){
274 av_log(s, AV_LOG_ERROR, "Requested sample format %s is not supported internally, s16p/s32p/s64p/fltp/dblp are supported\n", av_get_sample_fmt_name(s->int_sample_fmt));
275 return AVERROR(EINVAL);
276 }
277
279 set_audiodata_fmt(&s->out, s->out_sample_fmt);
280
281 if (s->firstpts_in_samples != AV_NOPTS_VALUE) {
282 if (!s->async && s->min_compensation >= FLT_MAX/2)
283 s->async = 1;
284 if (s->firstpts == AV_NOPTS_VALUE)
285 s->firstpts =
286 s->outpts = s->firstpts_in_samples * s->out_sample_rate;
287 } else
288 s->firstpts = AV_NOPTS_VALUE;
289
290 if (s->async) {
291 if (s->min_compensation >= FLT_MAX/2)
292 s->min_compensation = 0.001;
293 if (s->async > 1.0001) {
294 s->max_soft_compensation = s->async / (double) s->in_sample_rate;
295 }
296 }
297
298 if (s->out_sample_rate!=s->in_sample_rate || (s->flags & SWR_FLAG_RESAMPLE)){
299 s->resample = s->resampler->init(s->resample, s->out_sample_rate, s->in_sample_rate, s->filter_size, s->phase_shift, s->linear_interp, s->cutoff, s->int_sample_fmt, s->filter_type, s->kaiser_beta, s->precision, s->cheby, s->exact_rational);
300 if (!s->resample) {
301 av_log(s, AV_LOG_ERROR, "Failed to initialize resampler\n");
302 return AVERROR(ENOMEM);
303 }
304 }else
305 s->resampler->free(&s->resample);
306 if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P
307 && s->int_sample_fmt != AV_SAMPLE_FMT_S32P
308 && s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
309 && s->int_sample_fmt != AV_SAMPLE_FMT_DBLP
310 && s->resample){
311 av_log(s, AV_LOG_ERROR, "Resampling only supported with internal s16p/s32p/fltp/dblp\n");
312 ret = AVERROR(EINVAL);
313 goto fail;
314 }
315
316#define RSC 1 //FIXME finetune
317 if(!s-> in.ch_count)
318 s-> in.ch_count = s->in_ch_layout.nb_channels;
319 if (!av_channel_layout_check(&s->used_ch_layout))
320 av_channel_layout_default(&s->used_ch_layout, s->in.ch_count);
321 if(!s->out.ch_count)
322 s->out.ch_count = s->out_ch_layout.nb_channels;
323
324 if(!s-> in.ch_count){
325 av_assert0(s->in_ch_layout.order == AV_CHANNEL_ORDER_UNSPEC);
326 av_log(s, AV_LOG_ERROR, "Input channel count and layout are unset\n");
327 ret = AVERROR(EINVAL);
328 goto fail;
329 }
330
331 av_channel_layout_describe(&s->out_ch_layout, l2, sizeof(l2));
332 av_channel_layout_describe(&s->in_ch_layout, l1, sizeof(l1));
333 if (s->in_ch_layout.order != AV_CHANNEL_ORDER_UNSPEC && s->used_ch_layout.nb_channels != s->in_ch_layout.nb_channels) {
334 av_log(s, AV_LOG_ERROR, "Input channel layout %s mismatches specified channel count %d\n", l1, s->used_ch_layout.nb_channels);
335 ret = AVERROR(EINVAL);
336 goto fail;
337 }
338
339 if (( s->out_ch_layout.order == AV_CHANNEL_ORDER_UNSPEC
340 || s-> in_ch_layout.order == AV_CHANNEL_ORDER_UNSPEC) && s->used_ch_layout.nb_channels != s->out.ch_count && !s->rematrix_custom) {
341 av_log(s, AV_LOG_ERROR, "Rematrix is needed between %s and %s "
342 "but there is not enough information to do it\n", l1, l2);
343 ret = AVERROR(EINVAL);
344 goto fail;
345 }
346
347av_assert0(s->used_ch_layout.nb_channels);
348av_assert0(s->out.ch_count);
349 s->resample_first= RSC*s->out.ch_count/s->used_ch_layout.nb_channels - RSC < s->out_sample_rate/(float)s-> in_sample_rate - 1.0;
350
351 s->in_buffer= s->in;
352 s->silence = s->in;
353 s->drop_temp= s->out;
354
355 if ((ret = swri_dither_init(s, s->out_sample_fmt, s->int_sample_fmt)) < 0)
356 goto fail;
357
358 if(!s->resample && !s->rematrix && !s->channel_map && !s->dither.method){
359 s->full_convert = swri_audio_convert_alloc(s->out_sample_fmt,
360 s-> in_sample_fmt, s-> in.ch_count, NULL, 0);
361 // fall through to the generic path for conversions that have no
362 // direct implementation (e.g. DSD input to non-float output)
363 if (s->full_convert)
364 return 0;
365 }
366
367 s->in_convert = swri_audio_convert_alloc(s->int_sample_fmt,
368 s-> in_sample_fmt, s->used_ch_layout.nb_channels, s->channel_map, 0);
369 s->out_convert= swri_audio_convert_alloc(s->out_sample_fmt,
370 s->int_sample_fmt, s->out.ch_count, NULL, 0);
371
372 if (!s->in_convert || !s->out_convert) {
373 av_log(s, AV_LOG_ERROR, "Cannot convert %s sample format to %s sample format\n",
374 av_get_sample_fmt_name(!s->in_convert ? s->in_sample_fmt : s->int_sample_fmt),
375 av_get_sample_fmt_name(!s->in_convert ? s->int_sample_fmt : s->out_sample_fmt));
376 ret = AVERROR(EINVAL);
377 goto fail;
378 }
379
380 s->postin= s->in;
381 s->preout= s->out;
382 s->midbuf= s->in;
383
384 if(s->channel_map){
385 s->postin.ch_count=
386 s->midbuf.ch_count= s->used_ch_layout.nb_channels;
387 if(s->resample)
388 s->in_buffer.ch_count= s->used_ch_layout.nb_channels;
389 }
390 if(!s->resample_first){
391 s->midbuf.ch_count= s->out.ch_count;
392 if(s->resample)
393 s->in_buffer.ch_count = s->out.ch_count;
394 }
395
396 set_audiodata_fmt(&s->postin, s->int_sample_fmt);
397 set_audiodata_fmt(&s->midbuf, s->int_sample_fmt);
398 set_audiodata_fmt(&s->preout, s->int_sample_fmt);
399
400 if(s->resample){
401 set_audiodata_fmt(&s->in_buffer, s->int_sample_fmt);
402 }
403
404 av_assert0(!s->preout.count);
405 s->dither.noise = s->preout;
406 s->dither.temp = s->preout;
407 if (s->dither.method > SWR_DITHER_NS) {
408 s->dither.noise.bps = 4;
409 s->dither.noise.fmt = AV_SAMPLE_FMT_FLTP;
410 s->dither.noise_scale = 1;
411 }
412
413 if(s->rematrix || s->dither.method) {
414 ret = swri_rematrix_init(s);
415 if (ret < 0)
416 goto fail;
417 }
418
419 return 0;
420fail:
421 swr_close(s);
422 return ret;
423
424}
425
427 int i, countb;
428 AudioData old;
429
430 if(count < 0 || count > INT_MAX/2/a->bps/a->ch_count)
431 return AVERROR(EINVAL);
432
433 if(a->count >= count)
434 return 0;
435
436 count*=2;
437
438 countb= FFALIGN(count*a->bps, ALIGN);
439 old= *a;
440
441 av_assert0(a->bps);
442 av_assert0(a->ch_count);
443
444 a->data = av_calloc(countb, a->ch_count);
445 if(!a->data)
446 return AVERROR(ENOMEM);
447 for(i=0; i<a->ch_count; i++){
448 a->ch[i]= a->data + i*(a->planar ? countb : a->bps);
449 if(a->count && a->planar) memcpy(a->ch[i], old.ch[i], a->count*a->bps);
450 }
451 if(a->count && !a->planar) memcpy(a->ch[0], old.ch[0], a->count*a->ch_count*a->bps);
452 av_freep(&old.data);
453 a->count= count;
454
455 return 1;
456}
457
459 int count){
460 av_assert0(out->planar == in->planar);
461 av_assert0(out->bps == in->bps);
462 av_assert0(out->ch_count == in->ch_count);
463 if(out->planar){
464 int ch;
465 for(ch=0; ch<out->ch_count; ch++)
466 memcpy(out->ch[ch], in->ch[ch], count*out->bps);
467 }else
468 memcpy(out->ch[0], in->ch[0], count*out->ch_count*out->bps);
469}
470
471static void fill_audiodata(AudioData *out, uint8_t *const in_arg [SWR_CH_MAX])
472{
473 int i;
474 if(!in_arg){
475 memset(out->ch, 0, sizeof(out->ch));
476 }else if(out->planar){
477 for(i=0; i<out->ch_count; i++)
478 out->ch[i]= in_arg[i];
479 }else{
480 for(i=0; i<out->ch_count; i++)
481 out->ch[i]= in_arg[0] + i*out->bps;
482 }
483}
484
485static void reversefill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){
486 int i;
487 if(out->planar){
488 for(i=0; i<out->ch_count; i++)
489 in_arg[i]= out->ch[i];
490 }else{
491 in_arg[0]= out->ch[0];
492 }
493}
494
495/**
496 *
497 * out may be equal in.
498 */
499static void buf_set(AudioData *out, AudioData *in, int count){
500 int ch;
501 if(in->planar){
502 for(ch=0; ch<out->ch_count; ch++)
503 out->ch[ch]= in->ch[ch] + count*out->bps;
504 }else{
505 for(ch=out->ch_count-1; ch>=0; ch--)
506 out->ch[ch]= in->ch[0] + (ch + count*out->ch_count) * out->bps;
507 }
508}
509
510/**
511 *
512 * @return number of samples output per channel
513 */
514static int resample(SwrContext *s, AudioData *out_param, int out_count,
515 const AudioData * in_param, int in_count){
517 int ret_sum=0;
518 int border=0;
519 int padless = ARCH_X86 && s->engine == SWR_ENGINE_SWR ? 7 : 0;
520
521 av_assert1(s->in_buffer.ch_count == in_param->ch_count);
522 av_assert1(s->in_buffer.planar == in_param->planar);
523 av_assert1(s->in_buffer.fmt == in_param->fmt);
524
525 tmp=out=*out_param;
526 in = *in_param;
527
528 border = s->resampler->invert_initial_buffer(s->resample, &s->in_buffer,
529 &in, in_count, &s->in_buffer_index, &s->in_buffer_count);
530 if (border == INT_MAX) {
531 return 0;
532 } else if (border < 0) {
533 return border;
534 } else if (border) {
535 buf_set(&in, &in, border);
536 in_count -= border;
537 s->resample_in_constraint = 0;
538 }
539
540 do{
541 int ret, size, consumed;
542 if(!s->resample_in_constraint && s->in_buffer_count){
543 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
544 ret= s->resampler->multiple_resample(s->resample, &out, out_count, &tmp, s->in_buffer_count, &consumed);
545 out_count -= ret;
546 ret_sum += ret;
547 buf_set(&out, &out, ret);
548 s->in_buffer_count -= consumed;
549 s->in_buffer_index += consumed;
550
551 if(!in_count)
552 break;
553 if(s->in_buffer_count <= border){
554 buf_set(&in, &in, -s->in_buffer_count);
555 in_count += s->in_buffer_count;
556 s->in_buffer_count=0;
557 s->in_buffer_index=0;
558 border = 0;
559 }
560 }
561
562 if((s->flushed || in_count > padless) && !s->in_buffer_count){
563 s->in_buffer_index=0;
564 ret= s->resampler->multiple_resample(s->resample, &out, out_count, &in, FFMAX(in_count-padless, 0), &consumed);
565 out_count -= ret;
566 ret_sum += ret;
567 buf_set(&out, &out, ret);
568 in_count -= consumed;
569 buf_set(&in, &in, consumed);
570 }
571
572 //TODO is this check sane considering the advanced copy avoidance below
573 size= s->in_buffer_index + s->in_buffer_count + in_count;
574 if( size > s->in_buffer.count
575 && s->in_buffer_count + in_count <= s->in_buffer_index){
576 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
577 copy(&s->in_buffer, &tmp, s->in_buffer_count);
578 s->in_buffer_index=0;
579 }else
580 if((ret=swri_realloc_audio(&s->in_buffer, size)) < 0)
581 return ret;
582
583 if(in_count){
584 int count= in_count;
585 if(s->in_buffer_count && s->in_buffer_count+2 < count && out_count) count= s->in_buffer_count+2;
586
587 buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
588 copy(&tmp, &in, /*in_*/count);
589 s->in_buffer_count += count;
590 in_count -= count;
591 border += count;
592 buf_set(&in, &in, count);
593 s->resample_in_constraint= 0;
594 if(s->in_buffer_count != count || in_count)
595 continue;
596 if (padless) {
597 padless = 0;
598 continue;
599 }
600 }
601 break;
602 }while(1);
603
604 s->resample_in_constraint= !!out_count;
605
606 return ret_sum;
607}
608
609static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_count,
610 AudioData *in , int in_count){
612 int ret/*, in_max*/;
613 AudioData preout_tmp, midbuf_tmp;
614
615 if(s->full_convert){
616 av_assert0(!s->resample);
617 swri_audio_convert(s->full_convert, out, in, in_count);
618 return out_count;
619 }
620
621// in_max= out_count*(int64_t)s->in_sample_rate / s->out_sample_rate + resample_filter_taps;
622// in_count= FFMIN(in_count, in_in + 2 - s->hist_buffer_count);
623
624 if((ret=swri_realloc_audio(&s->postin, in_count))<0)
625 return ret;
626 if(s->resample_first){
627 av_assert0(s->midbuf.ch_count == s->used_ch_layout.nb_channels);
628 if((ret=swri_realloc_audio(&s->midbuf, out_count))<0)
629 return ret;
630 }else{
631 av_assert0(s->midbuf.ch_count == s->out.ch_count);
632 if((ret=swri_realloc_audio(&s->midbuf, in_count))<0)
633 return ret;
634 }
635 if((ret=swri_realloc_audio(&s->preout, out_count))<0)
636 return ret;
637
638 postin= &s->postin;
639
640 midbuf_tmp= s->midbuf;
641 midbuf= &midbuf_tmp;
642 preout_tmp= s->preout;
643 preout= &preout_tmp;
644
645 if(s->int_sample_fmt == s-> in_sample_fmt && s->in.planar && !s->channel_map)
646 postin= in;
647
648 if(s->resample_first ? !s->resample : !s->rematrix)
649 midbuf= postin;
650
651 if(s->resample_first ? !s->rematrix : !s->resample)
652 preout= midbuf;
653
654 if(s->int_sample_fmt == s->out_sample_fmt && s->out.planar
655 && !(s->out_sample_fmt==AV_SAMPLE_FMT_S32P && (s->dither.output_sample_bits&31))){
656 if(preout==in){
657 out_count= FFMIN(out_count, in_count); //TODO check at the end if this is needed or redundant
658 av_assert0(s->in.planar); //we only support planar internally so it has to be, we support copying non planar though
659 copy(out, in, out_count);
660 return out_count;
661 }
662 else if(preout==postin) preout= midbuf= postin= out;
663 else if(preout==midbuf) preout= midbuf= out;
664 else preout= out;
665 }
666
667 if(in != postin){
668 swri_audio_convert(s->in_convert, postin, in, in_count);
669 }
670
671 if(s->resample_first){
672 if(postin != midbuf)
673 if ((out_count = resample(s, midbuf, out_count, postin, in_count)) < 0)
674 return out_count;
675 if(midbuf != preout)
676 swri_rematrix(s, preout, midbuf, out_count, preout==out);
677 }else{
678 if(postin != midbuf)
679 swri_rematrix(s, midbuf, postin, in_count, midbuf==out);
680 if(midbuf != preout)
681 if ((out_count = resample(s, preout, out_count, midbuf, in_count)) < 0)
682 return out_count;
683 }
684
685 if(preout != out && out_count){
686 AudioData *conv_src = preout;
687 if(s->dither.method){
688 int ch;
689 int dither_count= FFMAX(out_count, 1<<16);
690
691 if (preout == in) {
692 conv_src = &s->dither.temp;
693 if((ret=swri_realloc_audio(&s->dither.temp, dither_count))<0)
694 return ret;
695 }
696
697 if((ret=swri_realloc_audio(&s->dither.noise, dither_count))<0)
698 return ret;
699 if(ret)
700 for(ch=0; ch<s->dither.noise.ch_count; ch++)
701 if((ret=swri_get_dither(s, s->dither.noise.ch[ch], s->dither.noise.count, (12345678913579ULL*ch + 3141592) % 2718281828U, s->dither.noise.fmt))<0)
702 return ret;
703 av_assert0(s->dither.noise.ch_count == preout->ch_count);
704
705 if(s->dither.noise_pos + out_count > s->dither.noise.count)
706 s->dither.noise_pos = 0;
707
708 if (s->dither.method < SWR_DITHER_NS){
709 if (s->mix_2_1_simd) {
710 int len1= out_count&~15;
711 int off = len1 * preout->bps;
712
713 if(len1)
714 for(ch=0; ch<preout->ch_count; ch++)
715 s->mix_2_1_simd(conv_src->ch[ch], preout->ch[ch], s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos, &s->native_simd_one, 0, 0, len1);
716 if(out_count != len1)
717 for(ch=0; ch<preout->ch_count; ch++)
718 s->mix_2_1_f(conv_src->ch[ch] + off, preout->ch[ch] + off, s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos + off, &s->native_one, 0, 0, out_count - len1);
719 } else {
720 for(ch=0; ch<preout->ch_count; ch++)
721 s->mix_2_1_f(conv_src->ch[ch], preout->ch[ch], s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos, &s->native_one, 0, 0, out_count);
722 }
723 } else {
724 switch(s->int_sample_fmt) {
725 case AV_SAMPLE_FMT_S16P :swri_noise_shaping_int16(s, conv_src, preout, &s->dither.noise, out_count); break;
726 case AV_SAMPLE_FMT_S32P :swri_noise_shaping_int32(s, conv_src, preout, &s->dither.noise, out_count); break;
727 case AV_SAMPLE_FMT_FLTP :swri_noise_shaping_float(s, conv_src, preout, &s->dither.noise, out_count); break;
728 case AV_SAMPLE_FMT_DBLP :swri_noise_shaping_double(s,conv_src, preout, &s->dither.noise, out_count); break;
729 }
730 }
731 s->dither.noise_pos += out_count;
732 }
733//FIXME packed doesn't need more than 1 chan here!
734 swri_audio_convert(s->out_convert, out, conv_src, out_count);
735 }
736 return out_count;
737}
738
740 return !!s->in_buffer.ch_count;
741}
742
744 uint8_t * const *out_arg, int out_count,
745 const uint8_t * const *in_arg, int in_count)
746{
747 AudioData * in= &s->in;
748 AudioData *out= &s->out;
749
750 if (!swr_is_initialized(s)) {
751 av_log(s, AV_LOG_ERROR, "Context has not been initialized\n");
752 return AVERROR(EINVAL);
753 }
754#if defined(ASSERT_LEVEL) && ASSERT_LEVEL >1
755 int max_output = swr_get_out_samples(s, in_count);
756#endif
757
758 while(s->drop_output > 0){
759 int ret;
760 uint8_t *tmp_arg[SWR_CH_MAX];
761#define MAX_DROP_STEP 16384
762 if((ret=swri_realloc_audio(&s->drop_temp, FFMIN(s->drop_output, MAX_DROP_STEP)))<0)
763 return ret;
764
765 reversefill_audiodata(&s->drop_temp, tmp_arg);
766 s->drop_output *= -1; //FIXME find a less hackish solution
767 ret = swr_convert(s, tmp_arg, FFMIN(-s->drop_output, MAX_DROP_STEP), in_arg, in_count); //FIXME optimize but this is as good as never called so maybe it doesn't matter
768 s->drop_output *= -1;
769 in_count = 0;
770 if(ret>0) {
771 s->drop_output -= ret;
772 if (!s->drop_output && !out_arg)
773 return 0;
774 continue;
775 }
776
777 av_assert0(s->drop_output);
778 return 0;
779 }
780
781 if(!in_arg){
782 if(s->resample){
783 if (!s->flushed)
784 s->resampler->flush(s);
785 s->resample_in_constraint = 0;
786 s->flushed = 1;
787 }else if(!s->in_buffer_count){
788 return 0;
789 }
790 }else
791 fill_audiodata(in , (void*)in_arg);
792
793 fill_audiodata(out, out_arg);
794
795 if(s->resample){
796 int ret = swr_convert_internal(s, out, out_count, in, in_count);
797 if(ret>0 && !s->drop_output)
798 s->outpts += ret * (int64_t)s->in_sample_rate;
799
800 av_assert2(max_output < 0 || ret <= max_output);
801
802 return ret;
803 }else{
804 AudioData tmp= *in;
805 int ret2=0;
806 int ret, size;
807 size = FFMIN(out_count, s->in_buffer_count);
808 if(size){
809 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
811 if(ret<0)
812 return ret;
813 ret2= ret;
814 s->in_buffer_count -= ret;
815 s->in_buffer_index += ret;
816 buf_set(out, out, ret);
817 out_count -= ret;
818 if(!s->in_buffer_count)
819 s->in_buffer_index = 0;
820 }
821
822 if(in_count){
823 size= s->in_buffer_index + s->in_buffer_count + in_count - out_count;
824
825 if(in_count > out_count) { //FIXME move after swr_convert_internal
826 if( size > s->in_buffer.count
827 && s->in_buffer_count + in_count - out_count <= s->in_buffer_index){
828 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
829 copy(&s->in_buffer, &tmp, s->in_buffer_count);
830 s->in_buffer_index=0;
831 }else
832 if((ret=swri_realloc_audio(&s->in_buffer, size)) < 0)
833 return ret;
834 }
835
836 if(out_count){
837 size = FFMIN(in_count, out_count);
839 if(ret<0)
840 return ret;
841 buf_set(in, in, ret);
842 in_count -= ret;
843 ret2 += ret;
844 }
845 if(in_count){
846 buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
847 copy(&tmp, in, in_count);
848 s->in_buffer_count += in_count;
849 }
850 }
851 if(ret2>0 && !s->drop_output)
852 s->outpts += ret2 * (int64_t)s->in_sample_rate;
853 av_assert2(max_output < 0 || ret2 < 0 || ret2 <= max_output);
854 return ret2;
855 }
856}
857
858int swr_drop_output(struct SwrContext *s, int count){
859 const uint8_t *tmp_arg[SWR_CH_MAX];
860 s->drop_output += count;
861
862 if(s->drop_output <= 0)
863 return 0;
864
865 av_log(s, AV_LOG_VERBOSE, "discarding %d audio samples\n", count);
866 return swr_convert(s, NULL, s->drop_output, tmp_arg, 0);
867}
868
869int swr_inject_silence(struct SwrContext *s, int count){
870 int ret, i;
871 uint8_t *tmp_arg[SWR_CH_MAX];
872
873 if(count <= 0)
874 return 0;
875
876#define MAX_SILENCE_STEP 16384
877 while (count > MAX_SILENCE_STEP) {
878 if ((ret = swr_inject_silence(s, MAX_SILENCE_STEP)) < 0)
879 return ret;
880 count -= MAX_SILENCE_STEP;
881 }
882
883 if((ret=swri_realloc_audio(&s->silence, count))<0)
884 return ret;
885
886 {
887 int fill = s->silence.fmt == AV_SAMPLE_FMT_DSD ? 0x69 :
888 s->silence.bps == 1 ? 0x80 : 0;
889 if(s->silence.planar) for(i=0; i<s->silence.ch_count; i++) {
890 memset(s->silence.ch[i], fill, count*s->silence.bps);
891 } else
892 memset(s->silence.ch[0], fill, count*s->silence.bps*s->silence.ch_count);
893 }
894
895 reversefill_audiodata(&s->silence, tmp_arg);
896 av_log(s, AV_LOG_VERBOSE, "adding %d audio samples of silence\n", count);
897 ret = swr_convert(s, NULL, 0, (const uint8_t**)tmp_arg, count);
898 return ret;
899}
900
902 if (s->resampler && s->resample){
903 return s->resampler->get_delay(s, base);
904 }else{
905 return (s->in_buffer_count*base + (s->in_sample_rate>>1))/ s->in_sample_rate;
906 }
907}
908
909int swr_get_out_samples(struct SwrContext *s, int in_samples)
910{
911 int64_t out_samples;
912
913 if (in_samples < 0)
914 return AVERROR(EINVAL);
915
916 if (s->resampler && s->resample) {
917 if (!s->resampler->get_out_samples)
918 return AVERROR(ENOSYS);
919 out_samples = s->resampler->get_out_samples(s, in_samples);
920 } else {
921 out_samples = s->in_buffer_count + in_samples;
922 av_assert0(s->out_sample_rate == s->in_sample_rate);
923 }
924
925 if (out_samples > INT_MAX)
926 return AVERROR(EINVAL);
927
928 return out_samples;
929}
930
931int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensation_distance){
932 int ret;
933
934 if (!s || compensation_distance < 0)
935 return AVERROR(EINVAL);
936 if (!compensation_distance && sample_delta)
937 return AVERROR(EINVAL);
938 if (!s->resample) {
939 s->flags |= SWR_FLAG_RESAMPLE;
940 ret = swr_init(s);
941 if (ret < 0)
942 return ret;
943 }
944 if (!s->resampler->set_compensation){
945 return AVERROR(EINVAL);
946 }else{
947 return s->resampler->set_compensation(s->resample, sample_delta, compensation_distance);
948 }
949}
950
952 if(pts == INT64_MIN)
953 return s->outpts;
954
955 if (s->firstpts == AV_NOPTS_VALUE)
956 s->outpts = s->firstpts = pts;
957
958 if(s->min_compensation >= FLT_MAX) {
959 return (s->outpts = pts - swr_get_delay(s, s->in_sample_rate * (int64_t)s->out_sample_rate));
960 } else {
961 int64_t delta = pts - swr_get_delay(s, s->in_sample_rate * (int64_t)s->out_sample_rate) - s->outpts + s->drop_output*(int64_t)s->in_sample_rate;
962 double fdelta = delta /(double)(s->in_sample_rate * (int64_t)s->out_sample_rate);
963
964 if(fabs(fdelta) > s->min_compensation) {
965 if(s->outpts == s->firstpts || fabs(fdelta) > s->min_hard_compensation){
966 int ret;
967 if(delta > 0) ret = swr_inject_silence(s, delta / s->out_sample_rate);
968 else ret = swr_drop_output (s, -delta / s-> in_sample_rate);
969 if(ret<0){
970 av_log(s, AV_LOG_ERROR, "Failed to compensate for timestamp delta of %f\n", fdelta);
971 }
972 } else if(s->soft_compensation_duration && s->max_soft_compensation) {
973 int duration = s->out_sample_rate * s->soft_compensation_duration;
974 double max_soft_compensation = s->max_soft_compensation / (s->max_soft_compensation < 0 ? -s->in_sample_rate : 1);
976 av_log(s, AV_LOG_VERBOSE, "compensating audio timestamp drift:%f compensation:%d in:%d\n", fdelta, comp, duration);
978 }
979 }
980
981 return s->outpts;
982 }
983}
#define SWR_CH_MAX
Definition af_amerge.c:37
static FILE * out
static const uint8_t channel_map[8][8]
Audio format conversion routines.
AudioConvert * swri_audio_convert_alloc(enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, const int *ch_map, int flags)
Create an audio sample format converter context.
void swri_audio_convert_free(AudioConvert **ctx)
Free audio sample format converter context.
int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len)
Convert between audio sample formats.
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition avassert.h:68
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition avassert.h:58
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define ss(width, name, subs,...)
Definition cbs_vp9.c:202
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#define ARCH_X86
#define av_clipf
Definition common.h:145
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static __device__ float fabs(float a)
av_cold int swri_dither_init(SwrContext *s, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt)
Definition dither.c:80
int swri_get_dither(SwrContext *s, void *dst, int len, unsigned seed, enum AVSampleFormat noise_fmt)
Definition dither.c:27
static void comp(unsigned char *dst, ptrdiff_t dst_stride, unsigned char *src, ptrdiff_t src_stride, int add)
Definition eamad.c:79
static int64_t duration
Definition ffplay.c:330
#define fail
Definition test.h:479
void av_channel_layout_default(AVChannelLayout *ch_layout, int nb_channels)
Get the default channel layout for a given number of channels.
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
int av_channel_layout_describe(const AVChannelLayout *channel_layout, char *buf, size_t buf_size)
Get a human-readable string describing the channel layout properties.
int av_channel_layout_check(const AVChannelLayout *channel_layout)
Check whether a channel layout is valid, i.e.
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_VERBOSE
Detailed information.
Definition log.h:226
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
Check if the sample format is planar.
Definition samplefmt.c:115
int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt)
Return number of bytes per sample.
Definition samplefmt.c:109
enum AVSampleFormat av_get_planar_sample_fmt(enum AVSampleFormat sample_fmt)
Get the planar alternative form of the given sample format.
Definition samplefmt.c:87
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
Definition samplefmt.c:52
AVSampleFormat
Audio sample formats.
Definition samplefmt.h:55
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition samplefmt.h:66
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition samplefmt.h:64
@ AV_SAMPLE_FMT_DSD
DSD (Direct Stream Digital) bitstream, interleaved.
Definition samplefmt.h:77
@ AV_SAMPLE_FMT_NB
Number of sample formats. DO NOT USE if linking dynamically.
Definition samplefmt.h:79
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition samplefmt.h:65
@ AV_SAMPLE_FMT_NONE
Definition samplefmt.h:56
@ AV_SAMPLE_FMT_DBLP
double, planar
Definition samplefmt.h:67
@ AV_SAMPLE_FMT_S64P
signed 64 bits, planar
Definition samplefmt.h:69
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
av_cold struct SwrContext * swr_alloc(void)
Allocate SwrContext.
Definition options.c:148
int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map)
Set a customized input channel mapping.
Definition swresample.c:47
#define SWR_FLAG_RESAMPLE
Force resampling even if equal sample rate.
Definition swresample.h:143
int swr_drop_output(struct SwrContext *s, int count)
Drops the specified number of output samples.
Definition swresample.c:858
int swr_inject_silence(struct SwrContext *s, int count)
Injects the specified number of silence samples.
Definition swresample.c:869
int64_t swr_get_delay(struct SwrContext *s, int64_t base)
Gets the delay the next input sample will experience relative to the next output sample.
Definition swresample.c:901
int swr_alloc_set_opts2(struct SwrContext **ps, const AVChannelLayout *out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate, const AVChannelLayout *in_ch_layout, enum AVSampleFormat in_sample_fmt, int in_sample_rate, int log_offset, void *log_ctx)
Allocate SwrContext if needed and set/reset common parameters.
Definition swresample.c:54
av_cold void swr_free(SwrContext **ss)
Free the given SwrContext and set the pointer to NULL.
Definition swresample.c:137
int swr_get_out_samples(struct SwrContext *s, int in_samples)
Find an upper bound on the number of samples that the next swr_convert call will output,...
Definition swresample.c:909
av_cold void swr_close(SwrContext *s)
Closes the context so that swr_is_initialized() returns 0.
Definition swresample.c:152
int64_t swr_next_pts(struct SwrContext *s, int64_t pts)
Convert the next timestamp from input to output timestamps are in 1/(in_sample_rate * out_sample_rate...
Definition swresample.c:951
int swr_is_initialized(struct SwrContext *s)
Check whether an swr context has been initialized or not.
Definition swresample.c:739
int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensation_distance)
Activate resampling compensation ("soft" compensation).
Definition swresample.c:931
int attribute_align_arg swr_convert(struct SwrContext *s, uint8_t *const *out_arg, int out_count, const uint8_t *const *in_arg, int in_count)
Convert audio.
Definition swresample.c:743
av_cold int swr_init(struct SwrContext *s)
Initialize context after user parameters have been set.
Definition swresample.c:156
@ SWR_DITHER_NS
not part of API/ABI
Definition swresample.h:154
@ SWR_ENGINE_SWR
SW Resampler.
Definition swresample.h:167
@ SWR_ENGINE_SOXR
SoX Resampler.
Definition swresample.h:168
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition opt.c:938
int av_opt_set_chlayout(void *obj, const char *name, const AVChannelLayout *channel_layout, int search_flags)
Definition opt.c:1073
int a
#define ALIGN
Definition hashtable.c:32
#define av_cold
Definition attributes.h:117
common internal API header
#define attribute_align_arg
Definition internal.h:51
#define FFMIN(a, b)
Definition macros.h:49
#define FFMAX(a, b)
Definition macros.h:47
#define FFALIGN(x, a)
Definition macros.h:78
void * av_calloc(size_t nmemb, size_t size)
Definition mem.c:264
Memory handling functions.
AVOptions.
const char * name
Definition qsvenc.c:142
int swri_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy)
Definition rematrix.c:800
av_cold int swri_rematrix_init(SwrContext *s)
Definition rematrix.c:673
av_cold void swri_rematrix_free(SwrContext *s)
Definition rematrix.c:795
const struct Resampler swri_resampler
Definition resample.c:504
const struct Resampler swri_soxr_resampler
An AVChannelLayout holds information about the channel layout of audio data.
enum AVChannelOrder order
Channel order used in this layout.
int nb_channels
Number of channels in this layout.
uint8_t * data
samples buffer
int ch_count
number of channels
int planar
1 if planar audio, 0 otherwise
uint8_t * ch[SWR_CH_MAX]
samples buffer per channel
int bps
bytes per sample
enum AVSampleFormat fmt
sample format
The libswresample context.
AVChannelLayout user_out_chlayout
User set output channel layout.
AudioData in
input audio data
AVChannelLayout user_in_chlayout
User set input channel layout.
float max_soft_compensation
swr maximum soft compensation in seconds over soft_compensation_duration
int out_sample_rate
output sample rate
int in_buffer_index
cached buffer position
AudioData postin
post-input audio data: used for rematrix/resample
int in_sample_rate
input sample rate
AudioData midbuf
intermediate audio data (postin/preout)
void * log_ctx
parent logging context
AudioData preout
pre-output audio data: used for rematrix/resample
AVChannelLayout out_ch_layout
output channel layout
enum AVSampleFormat in_sample_fmt
input sample format
struct AudioConvert * in_convert
input conversion context
AVChannelLayout in_ch_layout
input channel layout
enum AVSampleFormat out_sample_fmt
output sample format
static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_count, AudioData *in, int in_count)
Definition swresample.c:609
static void copy(AudioData *out, AudioData *in, int count)
Definition swresample.c:458
#define MAX_DROP_STEP
static void buf_set(AudioData *out, AudioData *in, int count)
out may be equal in.
Definition swresample.c:499
static void reversefill_audiodata(AudioData *out, uint8_t *in_arg[SWR_CH_MAX])
Definition swresample.c:485
static void fill_audiodata(AudioData *out, uint8_t *const in_arg[SWR_CH_MAX])
Definition swresample.c:471
static int resample(SwrContext *s, AudioData *out_param, int out_count, const AudioData *in_param, int in_count)
Definition swresample.c:514
static void clear_context(SwrContext *s)
Definition swresample.c:111
int swri_check_chlayout(struct SwrContext *s, const AVChannelLayout *chl, const char *name)
Definition swresample.c:33
static void free_temp(AudioData *a)
Definition swresample.c:106
#define MAX_SILENCE_STEP
static void set_audiodata_fmt(AudioData *a, enum AVSampleFormat fmt)
Definition swresample.c:98
int swri_realloc_audio(AudioData *a, int count)
Definition swresample.c:426
#define RSC
void swri_noise_shaping_int16(SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioData *noises, int count)
void swri_noise_shaping_int32(SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioData *noises, int count)
void swri_noise_shaping_float(SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioData *noises, int count)
void swri_noise_shaping_double(SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioData *noises, int count)
#define av_free(p)
#define av_freep(p)
#define av_log(a,...)
static uint8_t tmp[40]
Definition aes_ctr.c:52
static int64_t pts
int size
float delta
uint8_t base
Definition vp3data.h:128