2 * Copyright (C) 2011-2013 Michael Niedermayer (michaelni@gmx.at)
4 * This file is part of libswresample
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.
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.
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
21 #include "libavutil/opt.h"
22 #include "swresample_internal.h"
23 #include "audioconvert.h"
24 #include "libavutil/avassert.h"
25 #include "libavutil/channel_layout.h"
26 #include "libavutil/internal.h"
32 #include "libavutil/ffversion.h"
33 const char swr_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
35 unsigned swresample_version(void)
37 av_assert0(LIBSWRESAMPLE_VERSION_MICRO >= 100);
38 return LIBSWRESAMPLE_VERSION_INT;
41 const char *swresample_configuration(void)
43 return FFMPEG_CONFIGURATION;
46 const char *swresample_license(void)
48 #define LICENSE_PREFIX "libswresample license: "
49 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
52 int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map){
53 if(!s || s->in_convert) // s needs to be allocated but not initialized
54 return AVERROR(EINVAL);
55 s->channel_map = channel_map;
59 struct SwrContext *swr_alloc_set_opts(struct SwrContext *s,
60 int64_t out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate,
61 int64_t in_ch_layout, enum AVSampleFormat in_sample_fmt, int in_sample_rate,
62 int log_offset, void *log_ctx){
63 if(!s) s= swr_alloc();
66 s->log_level_offset= log_offset;
69 if (av_opt_set_int(s, "ocl", out_ch_layout, 0) < 0)
72 if (av_opt_set_int(s, "osf", out_sample_fmt, 0) < 0)
75 if (av_opt_set_int(s, "osr", out_sample_rate, 0) < 0)
78 if (av_opt_set_int(s, "icl", in_ch_layout, 0) < 0)
81 if (av_opt_set_int(s, "isf", in_sample_fmt, 0) < 0)
84 if (av_opt_set_int(s, "isr", in_sample_rate, 0) < 0)
87 if (av_opt_set_int(s, "tsf", AV_SAMPLE_FMT_NONE, 0) < 0)
90 if (av_opt_set_int(s, "ich", av_get_channel_layout_nb_channels(s-> user_in_ch_layout), 0) < 0)
93 if (av_opt_set_int(s, "och", av_get_channel_layout_nb_channels(s->user_out_ch_layout), 0) < 0)
96 av_opt_set_int(s, "uch", 0, 0);
99 av_log(s, AV_LOG_ERROR, "Failed to set option\n");
104 static void set_audiodata_fmt(AudioData *a, enum AVSampleFormat fmt){
106 a->bps = av_get_bytes_per_sample(fmt);
107 a->planar= av_sample_fmt_is_planar(fmt);
108 if (a->ch_count == 1)
112 static void free_temp(AudioData *a){
114 memset(a, 0, sizeof(*a));
117 static void clear_context(SwrContext *s){
118 s->in_buffer_index= 0;
119 s->in_buffer_count= 0;
120 s->resample_in_constraint= 0;
121 memset(s->in.ch, 0, sizeof(s->in.ch));
122 memset(s->out.ch, 0, sizeof(s->out.ch));
123 free_temp(&s->postin);
124 free_temp(&s->midbuf);
125 free_temp(&s->preout);
126 free_temp(&s->in_buffer);
127 free_temp(&s->silence);
128 free_temp(&s->drop_temp);
129 free_temp(&s->dither.noise);
130 free_temp(&s->dither.temp);
131 swri_audio_convert_free(&s-> in_convert);
132 swri_audio_convert_free(&s->out_convert);
133 swri_audio_convert_free(&s->full_convert);
134 swri_rematrix_free(s);
136 s->delayed_samples_fixup = 0;
140 av_cold void swr_free(SwrContext **ss){
145 s->resampler->free(&s->resample);
151 av_cold void swr_close(SwrContext *s){
155 av_cold int swr_init(struct SwrContext *s){
157 char l1[1024], l2[1024];
161 if(s-> in_sample_fmt >= AV_SAMPLE_FMT_NB){
162 av_log(s, AV_LOG_ERROR, "Requested input sample format %d is invalid\n", s->in_sample_fmt);
163 return AVERROR(EINVAL);
165 if(s->out_sample_fmt >= AV_SAMPLE_FMT_NB){
166 av_log(s, AV_LOG_ERROR, "Requested output sample format %d is invalid\n", s->out_sample_fmt);
167 return AVERROR(EINVAL);
170 s->out.ch_count = s-> user_out_ch_count;
171 s-> in.ch_count = s-> user_in_ch_count;
172 s->used_ch_count = s->user_used_ch_count;
174 s-> in_ch_layout = s-> user_in_ch_layout;
175 s->out_ch_layout = s->user_out_ch_layout;
177 s->int_sample_fmt= s->user_int_sample_fmt;
179 if(av_get_channel_layout_nb_channels(s-> in_ch_layout) > SWR_CH_MAX) {
180 av_log(s, AV_LOG_WARNING, "Input channel layout 0x%"PRIx64" is invalid or unsupported.\n", s-> in_ch_layout);
184 if(av_get_channel_layout_nb_channels(s->out_ch_layout) > SWR_CH_MAX) {
185 av_log(s, AV_LOG_WARNING, "Output channel layout 0x%"PRIx64" is invalid or unsupported.\n", s->out_ch_layout);
186 s->out_ch_layout = 0;
191 case SWR_ENGINE_SOXR: s->resampler = &swri_soxr_resampler; break;
193 case SWR_ENGINE_SWR : s->resampler = &swri_resampler; break;
195 av_log(s, AV_LOG_ERROR, "Requested resampling engine is unavailable\n");
196 return AVERROR(EINVAL);
199 if(!s->used_ch_count)
200 s->used_ch_count= s->in.ch_count;
202 if(s->used_ch_count && s-> in_ch_layout && s->used_ch_count != av_get_channel_layout_nb_channels(s-> in_ch_layout)){
203 av_log(s, AV_LOG_WARNING, "Input channel layout has a different number of channels than the number of used channels, ignoring layout\n");
207 if(!s-> in_ch_layout)
208 s-> in_ch_layout= av_get_default_channel_layout(s->used_ch_count);
209 if(!s->out_ch_layout)
210 s->out_ch_layout= av_get_default_channel_layout(s->out.ch_count);
212 s->rematrix= s->out_ch_layout !=s->in_ch_layout || s->rematrix_volume!=1.0 ||
215 if(s->int_sample_fmt == AV_SAMPLE_FMT_NONE){
216 if( av_get_bytes_per_sample(s-> in_sample_fmt) <= 2
217 && av_get_bytes_per_sample(s->out_sample_fmt) <= 2){
218 s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
219 }else if( av_get_bytes_per_sample(s-> in_sample_fmt) <= 2
221 && s->out_sample_rate==s->in_sample_rate
222 && !(s->flags & SWR_FLAG_RESAMPLE)){
223 s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
224 }else if( av_get_planar_sample_fmt(s-> in_sample_fmt) == AV_SAMPLE_FMT_S32P
225 && av_get_planar_sample_fmt(s->out_sample_fmt) == AV_SAMPLE_FMT_S32P
227 && s->engine != SWR_ENGINE_SOXR){
228 s->int_sample_fmt= AV_SAMPLE_FMT_S32P;
229 }else if(av_get_bytes_per_sample(s->in_sample_fmt) <= 4){
230 s->int_sample_fmt= AV_SAMPLE_FMT_FLTP;
232 s->int_sample_fmt= AV_SAMPLE_FMT_DBLP;
235 av_log(s, AV_LOG_DEBUG, "Using %s internally between filters\n", av_get_sample_fmt_name(s->int_sample_fmt));
237 if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P
238 &&s->int_sample_fmt != AV_SAMPLE_FMT_S32P
239 &&s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
240 &&s->int_sample_fmt != AV_SAMPLE_FMT_DBLP){
241 av_log(s, AV_LOG_ERROR, "Requested sample format %s is not supported internally, S16/S32/FLT/DBL is supported\n", av_get_sample_fmt_name(s->int_sample_fmt));
242 return AVERROR(EINVAL);
245 set_audiodata_fmt(&s-> in, s-> in_sample_fmt);
246 set_audiodata_fmt(&s->out, s->out_sample_fmt);
248 if (s->firstpts_in_samples != AV_NOPTS_VALUE) {
249 if (!s->async && s->min_compensation >= FLT_MAX/2)
252 s->outpts = s->firstpts_in_samples * s->out_sample_rate;
254 s->firstpts = AV_NOPTS_VALUE;
257 if (s->min_compensation >= FLT_MAX/2)
258 s->min_compensation = 0.001;
259 if (s->async > 1.0001) {
260 s->max_soft_compensation = s->async / (double) s->in_sample_rate;
264 if (s->out_sample_rate!=s->in_sample_rate || (s->flags & SWR_FLAG_RESAMPLE)){
265 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);
267 av_log(s, AV_LOG_ERROR, "Failed to initialize resampler\n");
268 return AVERROR(ENOMEM);
271 s->resampler->free(&s->resample);
272 if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P
273 && s->int_sample_fmt != AV_SAMPLE_FMT_S32P
274 && s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
275 && s->int_sample_fmt != AV_SAMPLE_FMT_DBLP
277 av_log(s, AV_LOG_ERROR, "Resampling only supported with internal s16/s32/flt/dbl\n");
278 ret = AVERROR(EINVAL);
282 #define RSC 1 //FIXME finetune
284 s-> in.ch_count= av_get_channel_layout_nb_channels(s-> in_ch_layout);
285 if(!s->used_ch_count)
286 s->used_ch_count= s->in.ch_count;
288 s->out.ch_count= av_get_channel_layout_nb_channels(s->out_ch_layout);
290 if(!s-> in.ch_count){
291 av_assert0(!s->in_ch_layout);
292 av_log(s, AV_LOG_ERROR, "Input channel count and layout are unset\n");
293 ret = AVERROR(EINVAL);
297 av_get_channel_layout_string(l1, sizeof(l1), s-> in.ch_count, s-> in_ch_layout);
298 av_get_channel_layout_string(l2, sizeof(l2), s->out.ch_count, s->out_ch_layout);
299 if (s->out_ch_layout && s->out.ch_count != av_get_channel_layout_nb_channels(s->out_ch_layout)) {
300 av_log(s, AV_LOG_ERROR, "Output channel layout %s mismatches specified channel count %d\n", l2, s->out.ch_count);
301 ret = AVERROR(EINVAL);
304 if (s->in_ch_layout && s->used_ch_count != av_get_channel_layout_nb_channels(s->in_ch_layout)) {
305 av_log(s, AV_LOG_ERROR, "Input channel layout %s mismatches specified channel count %d\n", l1, s->used_ch_count);
306 ret = AVERROR(EINVAL);
310 if ((!s->out_ch_layout || !s->in_ch_layout) && s->used_ch_count != s->out.ch_count && !s->rematrix_custom) {
311 av_log(s, AV_LOG_ERROR, "Rematrix is needed between %s and %s "
312 "but there is not enough information to do it\n", l1, l2);
313 ret = AVERROR(EINVAL);
317 av_assert0(s->used_ch_count);
318 av_assert0(s->out.ch_count);
319 s->resample_first= RSC*s->out.ch_count/s->in.ch_count - RSC < s->out_sample_rate/(float)s-> in_sample_rate - 1.0;
323 s->drop_temp= s->out;
325 if(!s->resample && !s->rematrix && !s->channel_map && !s->dither.method){
326 s->full_convert = swri_audio_convert_alloc(s->out_sample_fmt,
327 s-> in_sample_fmt, s-> in.ch_count, NULL, 0);
331 s->in_convert = swri_audio_convert_alloc(s->int_sample_fmt,
332 s-> in_sample_fmt, s->used_ch_count, s->channel_map, 0);
333 s->out_convert= swri_audio_convert_alloc(s->out_sample_fmt,
334 s->int_sample_fmt, s->out.ch_count, NULL, 0);
336 if (!s->in_convert || !s->out_convert) {
337 ret = AVERROR(ENOMEM);
347 s->midbuf.ch_count= s->used_ch_count;
349 s->in_buffer.ch_count= s->used_ch_count;
351 if(!s->resample_first){
352 s->midbuf.ch_count= s->out.ch_count;
354 s->in_buffer.ch_count = s->out.ch_count;
357 set_audiodata_fmt(&s->postin, s->int_sample_fmt);
358 set_audiodata_fmt(&s->midbuf, s->int_sample_fmt);
359 set_audiodata_fmt(&s->preout, s->int_sample_fmt);
362 set_audiodata_fmt(&s->in_buffer, s->int_sample_fmt);
365 if ((ret = swri_dither_init(s, s->out_sample_fmt, s->int_sample_fmt)) < 0)
368 if(s->rematrix || s->dither.method) {
369 ret = swri_rematrix_init(s);
381 int swri_realloc_audio(AudioData *a, int count){
385 if(count < 0 || count > INT_MAX/2/a->bps/a->ch_count)
386 return AVERROR(EINVAL);
388 if(a->count >= count)
393 countb= FFALIGN(count*a->bps, ALIGN);
397 av_assert0(a->ch_count);
399 a->data= av_mallocz_array(countb, a->ch_count);
401 return AVERROR(ENOMEM);
402 for(i=0; i<a->ch_count; i++){
403 a->ch[i]= a->data + i*(a->planar ? countb : a->bps);
404 if(a->planar) memcpy(a->ch[i], old.ch[i], a->count*a->bps);
406 if(!a->planar) memcpy(a->ch[0], old.ch[0], a->count*a->ch_count*a->bps);
413 static void copy(AudioData *out, AudioData *in,
415 av_assert0(out->planar == in->planar);
416 av_assert0(out->bps == in->bps);
417 av_assert0(out->ch_count == in->ch_count);
420 for(ch=0; ch<out->ch_count; ch++)
421 memcpy(out->ch[ch], in->ch[ch], count*out->bps);
423 memcpy(out->ch[0], in->ch[0], count*out->ch_count*out->bps);
426 static void fill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){
429 memset(out->ch, 0, sizeof(out->ch));
430 }else if(out->planar){
431 for(i=0; i<out->ch_count; i++)
432 out->ch[i]= in_arg[i];
434 for(i=0; i<out->ch_count; i++)
435 out->ch[i]= in_arg[0] + i*out->bps;
439 static void reversefill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){
442 for(i=0; i<out->ch_count; i++)
443 in_arg[i]= out->ch[i];
445 in_arg[0]= out->ch[0];
451 * out may be equal in.
453 static void buf_set(AudioData *out, AudioData *in, int count){
456 for(ch=0; ch<out->ch_count; ch++)
457 out->ch[ch]= in->ch[ch] + count*out->bps;
459 for(ch=out->ch_count-1; ch>=0; ch--)
460 out->ch[ch]= in->ch[0] + (ch + count*out->ch_count) * out->bps;
466 * @return number of samples output per channel
468 static int resample(SwrContext *s, AudioData *out_param, int out_count,
469 const AudioData * in_param, int in_count){
470 AudioData in, out, tmp;
473 int padless = ARCH_X86 && s->engine == SWR_ENGINE_SWR ? 7 : 0;
475 av_assert1(s->in_buffer.ch_count == in_param->ch_count);
476 av_assert1(s->in_buffer.planar == in_param->planar);
477 av_assert1(s->in_buffer.fmt == in_param->fmt);
482 border = s->resampler->invert_initial_buffer(s->resample, &s->in_buffer,
483 &in, in_count, &s->in_buffer_index, &s->in_buffer_count);
484 if (border == INT_MAX) {
486 } else if (border < 0) {
489 buf_set(&in, &in, border);
491 s->resample_in_constraint = 0;
495 int ret, size, consumed;
496 if(!s->resample_in_constraint && s->in_buffer_count){
497 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
498 ret= s->resampler->multiple_resample(s->resample, &out, out_count, &tmp, s->in_buffer_count, &consumed);
501 buf_set(&out, &out, ret);
502 s->in_buffer_count -= consumed;
503 s->in_buffer_index += consumed;
507 if(s->in_buffer_count <= border){
508 buf_set(&in, &in, -s->in_buffer_count);
509 in_count += s->in_buffer_count;
510 s->in_buffer_count=0;
511 s->in_buffer_index=0;
516 if((s->flushed || in_count > padless) && !s->in_buffer_count){
517 s->in_buffer_index=0;
518 ret= s->resampler->multiple_resample(s->resample, &out, out_count, &in, FFMAX(in_count-padless, 0), &consumed);
521 buf_set(&out, &out, ret);
522 in_count -= consumed;
523 buf_set(&in, &in, consumed);
526 //TODO is this check sane considering the advanced copy avoidance below
527 size= s->in_buffer_index + s->in_buffer_count + in_count;
528 if( size > s->in_buffer.count
529 && s->in_buffer_count + in_count <= s->in_buffer_index){
530 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
531 copy(&s->in_buffer, &tmp, s->in_buffer_count);
532 s->in_buffer_index=0;
534 if((ret=swri_realloc_audio(&s->in_buffer, size)) < 0)
539 if(s->in_buffer_count && s->in_buffer_count+2 < count && out_count) count= s->in_buffer_count+2;
541 buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
542 copy(&tmp, &in, /*in_*/count);
543 s->in_buffer_count += count;
546 buf_set(&in, &in, count);
547 s->resample_in_constraint= 0;
548 if(s->in_buffer_count != count || in_count)
558 s->resample_in_constraint= !!out_count;
563 static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_count,
564 AudioData *in , int in_count){
565 AudioData *postin, *midbuf, *preout;
567 AudioData preout_tmp, midbuf_tmp;
570 av_assert0(!s->resample);
571 swri_audio_convert(s->full_convert, out, in, in_count);
575 // in_max= out_count*(int64_t)s->in_sample_rate / s->out_sample_rate + resample_filter_taps;
576 // in_count= FFMIN(in_count, in_in + 2 - s->hist_buffer_count);
578 if((ret=swri_realloc_audio(&s->postin, in_count))<0)
580 if(s->resample_first){
581 av_assert0(s->midbuf.ch_count == s->used_ch_count);
582 if((ret=swri_realloc_audio(&s->midbuf, out_count))<0)
585 av_assert0(s->midbuf.ch_count == s->out.ch_count);
586 if((ret=swri_realloc_audio(&s->midbuf, in_count))<0)
589 if((ret=swri_realloc_audio(&s->preout, out_count))<0)
594 midbuf_tmp= s->midbuf;
596 preout_tmp= s->preout;
599 if(s->int_sample_fmt == s-> in_sample_fmt && s->in.planar && !s->channel_map)
602 if(s->resample_first ? !s->resample : !s->rematrix)
605 if(s->resample_first ? !s->rematrix : !s->resample)
608 if(s->int_sample_fmt == s->out_sample_fmt && s->out.planar
609 && !(s->out_sample_fmt==AV_SAMPLE_FMT_S32P && (s->dither.output_sample_bits&31))){
611 out_count= FFMIN(out_count, in_count); //TODO check at the end if this is needed or redundant
612 av_assert0(s->in.planar); //we only support planar internally so it has to be, we support copying non planar though
613 copy(out, in, out_count);
616 else if(preout==postin) preout= midbuf= postin= out;
617 else if(preout==midbuf) preout= midbuf= out;
622 swri_audio_convert(s->in_convert, postin, in, in_count);
625 if(s->resample_first){
627 out_count= resample(s, midbuf, out_count, postin, in_count);
629 swri_rematrix(s, preout, midbuf, out_count, preout==out);
632 swri_rematrix(s, midbuf, postin, in_count, midbuf==out);
634 out_count= resample(s, preout, out_count, midbuf, in_count);
637 if(preout != out && out_count){
638 AudioData *conv_src = preout;
639 if(s->dither.method){
641 int dither_count= FFMAX(out_count, 1<<16);
644 conv_src = &s->dither.temp;
645 if((ret=swri_realloc_audio(&s->dither.temp, dither_count))<0)
649 if((ret=swri_realloc_audio(&s->dither.noise, dither_count))<0)
652 for(ch=0; ch<s->dither.noise.ch_count; ch++)
653 if((ret=swri_get_dither(s, s->dither.noise.ch[ch], s->dither.noise.count, (12345678913579ULL*ch + 3141592) % 2718281828U, s->dither.noise.fmt))<0)
655 av_assert0(s->dither.noise.ch_count == preout->ch_count);
657 if(s->dither.noise_pos + out_count > s->dither.noise.count)
658 s->dither.noise_pos = 0;
660 if (s->dither.method < SWR_DITHER_NS){
661 if (s->mix_2_1_simd) {
662 int len1= out_count&~15;
663 int off = len1 * preout->bps;
666 for(ch=0; ch<preout->ch_count; ch++)
667 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);
668 if(out_count != len1)
669 for(ch=0; ch<preout->ch_count; ch++)
670 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 + len1, s->native_one, 0, 0, out_count - len1);
672 for(ch=0; ch<preout->ch_count; ch++)
673 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);
676 switch(s->int_sample_fmt) {
677 case AV_SAMPLE_FMT_S16P :swri_noise_shaping_int16(s, conv_src, preout, &s->dither.noise, out_count); break;
678 case AV_SAMPLE_FMT_S32P :swri_noise_shaping_int32(s, conv_src, preout, &s->dither.noise, out_count); break;
679 case AV_SAMPLE_FMT_FLTP :swri_noise_shaping_float(s, conv_src, preout, &s->dither.noise, out_count); break;
680 case AV_SAMPLE_FMT_DBLP :swri_noise_shaping_double(s,conv_src, preout, &s->dither.noise, out_count); break;
683 s->dither.noise_pos += out_count;
685 //FIXME packed doesn't need more than 1 chan here!
686 swri_audio_convert(s->out_convert, out, conv_src, out_count);
691 int swr_is_initialized(struct SwrContext *s) {
692 return !!s->in_buffer.ch_count;
695 int attribute_align_arg swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_count,
696 const uint8_t *in_arg [SWR_CH_MAX], int in_count){
697 AudioData * in= &s->in;
698 AudioData *out= &s->out;
699 int av_unused max_output;
701 if (!swr_is_initialized(s)) {
702 av_log(s, AV_LOG_ERROR, "Context has not been initialized\n");
703 return AVERROR(EINVAL);
705 #if defined(ASSERT_LEVEL) && ASSERT_LEVEL >1
706 max_output = swr_get_out_samples(s, in_count);
709 while(s->drop_output > 0){
711 uint8_t *tmp_arg[SWR_CH_MAX];
712 #define MAX_DROP_STEP 16384
713 if((ret=swri_realloc_audio(&s->drop_temp, FFMIN(s->drop_output, MAX_DROP_STEP)))<0)
716 reversefill_audiodata(&s->drop_temp, tmp_arg);
717 s->drop_output *= -1; //FIXME find a less hackish solution
718 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
719 s->drop_output *= -1;
722 s->drop_output -= ret;
723 if (!s->drop_output && !out_arg)
728 av_assert0(s->drop_output);
735 s->resampler->flush(s);
736 s->resample_in_constraint = 0;
738 }else if(!s->in_buffer_count){
742 fill_audiodata(in , (void*)in_arg);
744 fill_audiodata(out, out_arg);
747 int ret = swr_convert_internal(s, out, out_count, in, in_count);
748 if(ret>0 && !s->drop_output)
749 s->outpts += ret * (int64_t)s->in_sample_rate;
751 av_assert2(max_output < 0 || ret < 0 || ret <= max_output);
758 size = FFMIN(out_count, s->in_buffer_count);
760 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
761 ret= swr_convert_internal(s, out, size, &tmp, size);
765 s->in_buffer_count -= ret;
766 s->in_buffer_index += ret;
767 buf_set(out, out, ret);
769 if(!s->in_buffer_count)
770 s->in_buffer_index = 0;
774 size= s->in_buffer_index + s->in_buffer_count + in_count - out_count;
776 if(in_count > out_count) { //FIXME move after swr_convert_internal
777 if( size > s->in_buffer.count
778 && s->in_buffer_count + in_count - out_count <= s->in_buffer_index){
779 buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
780 copy(&s->in_buffer, &tmp, s->in_buffer_count);
781 s->in_buffer_index=0;
783 if((ret=swri_realloc_audio(&s->in_buffer, size)) < 0)
788 size = FFMIN(in_count, out_count);
789 ret= swr_convert_internal(s, out, size, in, size);
792 buf_set(in, in, ret);
797 buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
798 copy(&tmp, in, in_count);
799 s->in_buffer_count += in_count;
802 if(ret2>0 && !s->drop_output)
803 s->outpts += ret2 * (int64_t)s->in_sample_rate;
804 av_assert2(max_output < 0 || ret2 < 0 || ret2 <= max_output);
809 int swr_drop_output(struct SwrContext *s, int count){
810 const uint8_t *tmp_arg[SWR_CH_MAX];
811 s->drop_output += count;
813 if(s->drop_output <= 0)
816 av_log(s, AV_LOG_VERBOSE, "discarding %d audio samples\n", count);
817 return swr_convert(s, NULL, s->drop_output, tmp_arg, 0);
820 int swr_inject_silence(struct SwrContext *s, int count){
822 uint8_t *tmp_arg[SWR_CH_MAX];
827 #define MAX_SILENCE_STEP 16384
828 while (count > MAX_SILENCE_STEP) {
829 if ((ret = swr_inject_silence(s, MAX_SILENCE_STEP)) < 0)
831 count -= MAX_SILENCE_STEP;
834 if((ret=swri_realloc_audio(&s->silence, count))<0)
837 if(s->silence.planar) for(i=0; i<s->silence.ch_count; i++) {
838 memset(s->silence.ch[i], s->silence.bps==1 ? 0x80 : 0, count*s->silence.bps);
840 memset(s->silence.ch[0], s->silence.bps==1 ? 0x80 : 0, count*s->silence.bps*s->silence.ch_count);
842 reversefill_audiodata(&s->silence, tmp_arg);
843 av_log(s, AV_LOG_VERBOSE, "adding %d audio samples of silence\n", count);
844 ret = swr_convert(s, NULL, 0, (const uint8_t**)tmp_arg, count);
848 int64_t swr_get_delay(struct SwrContext *s, int64_t base){
849 if (s->resampler && s->resample){
850 return s->resampler->get_delay(s, base);
852 return (s->in_buffer_count*base + (s->in_sample_rate>>1))/ s->in_sample_rate;
856 int swr_get_out_samples(struct SwrContext *s, int in_samples)
861 return AVERROR(EINVAL);
863 if (s->resampler && s->resample) {
864 if (!s->resampler->get_out_samples)
865 return AVERROR(ENOSYS);
866 out_samples = s->resampler->get_out_samples(s, in_samples);
868 out_samples = s->in_buffer_count + in_samples;
869 av_assert0(s->out_sample_rate == s->in_sample_rate);
872 if (out_samples > INT_MAX)
873 return AVERROR(EINVAL);
878 int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensation_distance){
881 if (!s || compensation_distance < 0)
882 return AVERROR(EINVAL);
883 if (!compensation_distance && sample_delta)
884 return AVERROR(EINVAL);
886 s->flags |= SWR_FLAG_RESAMPLE;
891 if (!s->resampler->set_compensation){
892 return AVERROR(EINVAL);
894 return s->resampler->set_compensation(s->resample, sample_delta, compensation_distance);
898 int64_t swr_next_pts(struct SwrContext *s, int64_t pts){
902 if (s->firstpts == AV_NOPTS_VALUE)
903 s->outpts = s->firstpts = pts;
905 if(s->min_compensation >= FLT_MAX) {
906 return (s->outpts = pts - swr_get_delay(s, s->in_sample_rate * (int64_t)s->out_sample_rate));
908 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;
909 double fdelta = delta /(double)(s->in_sample_rate * (int64_t)s->out_sample_rate);
911 if(fabs(fdelta) > s->min_compensation) {
912 if(s->outpts == s->firstpts || fabs(fdelta) > s->min_hard_compensation){
914 if(delta > 0) ret = swr_inject_silence(s, delta / s->out_sample_rate);
915 else ret = swr_drop_output (s, -delta / s-> in_sample_rate);
917 av_log(s, AV_LOG_ERROR, "Failed to compensate for timestamp delta of %f\n", fdelta);
919 } else if(s->soft_compensation_duration && s->max_soft_compensation) {
920 int duration = s->out_sample_rate * s->soft_compensation_duration;
921 double max_soft_compensation = s->max_soft_compensation / (s->max_soft_compensation < 0 ? -s->in_sample_rate : 1);
922 int comp = av_clipf(fdelta, -max_soft_compensation, max_soft_compensation) * duration ;
923 av_log(s, AV_LOG_VERBOSE, "compensating audio timestamp drift:%f compensation:%d in:%d\n", fdelta, comp, duration);
924 swr_set_compensation(s, comp, duration);