]> git.sesse.net Git - ffmpeg/blob - libswresample/swresample.c
swr: skip soft compensation when its disabled.
[ffmpeg] / libswresample / swresample.c
1 /*
2  * Copyright (C) 2011 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/opt.h"
22 #include "swresample_internal.h"
23 #include "audioconvert.h"
24 #include "libavutil/avassert.h"
25 #include "libavutil/audioconvert.h"
26
27 #include <float.h>
28
29 #define  C30DB  M_SQRT2
30 #define  C15DB  1.189207115
31 #define C__0DB  1.0
32 #define C_15DB  0.840896415
33 #define C_30DB  M_SQRT1_2
34 #define C_45DB  0.594603558
35 #define C_60DB  0.5
36
37 #define ALIGN 32
38
39 //TODO split options array out?
40 #define OFFSET(x) offsetof(SwrContext,x)
41 #define PARAM AV_OPT_FLAG_AUDIO_PARAM
42
43 static const AVOption options[]={
44 {"ich"                  ,  "Input Channel Count"        , OFFSET( in.ch_count   ), AV_OPT_TYPE_INT  , {.dbl=2                     }, 0      , SWR_CH_MAX, PARAM},
45 {"in_channel_count"     ,  "Input Channel Count"        , OFFSET( in.ch_count   ), AV_OPT_TYPE_INT  , {.dbl=2                     }, 0      , SWR_CH_MAX, PARAM},
46 {"och"                  , "Output Channel Count"        , OFFSET(out.ch_count   ), AV_OPT_TYPE_INT  , {.dbl=2                     }, 0      , SWR_CH_MAX, PARAM},
47 {"out_channel_count"    , "Output Channel Count"        , OFFSET(out.ch_count   ), AV_OPT_TYPE_INT  , {.dbl=2                     }, 0      , SWR_CH_MAX, PARAM},
48 {"uch"                  ,   "Used Channel Count"        , OFFSET(used_ch_count  ), AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , SWR_CH_MAX, PARAM},
49 {"used_channel_count"   ,   "Used Channel Count"        , OFFSET(used_ch_count  ), AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , SWR_CH_MAX, PARAM},
50 {"isr"                  ,  "Input Sample Rate"          , OFFSET( in_sample_rate), AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , INT_MAX   , PARAM},
51 {"in_sample_rate"       ,  "Input Sample Rate"          , OFFSET( in_sample_rate), AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , INT_MAX   , PARAM},
52 {"osr"                  , "Output Sample Rate"          , OFFSET(out_sample_rate), AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , INT_MAX   , PARAM},
53 {"out_sample_rate"      , "Output Sample Rate"          , OFFSET(out_sample_rate), AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , INT_MAX   , PARAM},
54 {"isf"                  ,    "Input Sample Format"      , OFFSET( in_sample_fmt ), AV_OPT_TYPE_INT  , {.dbl=AV_SAMPLE_FMT_NONE    }, -1     , AV_SAMPLE_FMT_NB-1+256, PARAM},
55 {"in_sample_fmt"        ,    "Input Sample Format"      , OFFSET( in_sample_fmt ), AV_OPT_TYPE_INT  , {.dbl=AV_SAMPLE_FMT_NONE    }, -1     , AV_SAMPLE_FMT_NB-1+256, PARAM},
56 {"osf"                  ,   "Output Sample Format"      , OFFSET(out_sample_fmt ), AV_OPT_TYPE_INT  , {.dbl=AV_SAMPLE_FMT_NONE    }, -1     , AV_SAMPLE_FMT_NB-1+256, PARAM},
57 {"out_sample_fmt"       ,   "Output Sample Format"      , OFFSET(out_sample_fmt ), AV_OPT_TYPE_INT  , {.dbl=AV_SAMPLE_FMT_NONE    }, -1     , AV_SAMPLE_FMT_NB-1+256, PARAM},
58 {"tsf"                  , "Internal Sample Format"      , OFFSET(int_sample_fmt ), AV_OPT_TYPE_INT  , {.dbl=AV_SAMPLE_FMT_NONE    }, -1     , AV_SAMPLE_FMT_FLTP, PARAM},
59 {"internal_sample_fmt"  , "Internal Sample Format"      , OFFSET(int_sample_fmt ), AV_OPT_TYPE_INT  , {.dbl=AV_SAMPLE_FMT_NONE    }, -1     , AV_SAMPLE_FMT_FLTP, PARAM},
60 {"icl"                  ,   "Input Channel Layout"      , OFFSET( in_ch_layout  ), AV_OPT_TYPE_INT64, {.dbl=0                     }, 0      , INT64_MAX , PARAM, "channel_layout"},
61 {"in_channel_layout"    ,   "Input Channel Layout"      , OFFSET( in_ch_layout  ), AV_OPT_TYPE_INT64, {.dbl=0                     }, 0      , INT64_MAX , PARAM, "channel_layout"},
62 {"ocl"                  ,  "Output Channel Layout"      , OFFSET(out_ch_layout  ), AV_OPT_TYPE_INT64, {.dbl=0                     }, 0      , INT64_MAX , PARAM, "channel_layout"},
63 {"out_channel_layout"   ,  "Output Channel Layout"      , OFFSET(out_ch_layout  ), AV_OPT_TYPE_INT64, {.dbl=0                     }, 0      , INT64_MAX , PARAM, "channel_layout"},
64 {"clev"                 ,    "Center Mix Level"         , OFFSET(clev           ), AV_OPT_TYPE_FLOAT, {.dbl=C_30DB                }, -32    , 32        , PARAM},
65 {"center_mix_level"     ,    "Center Mix Level"         , OFFSET(clev           ), AV_OPT_TYPE_FLOAT, {.dbl=C_30DB                }, -32    , 32        , PARAM},
66 {"slev"                 , "Sourround Mix Level"         , OFFSET(slev           ), AV_OPT_TYPE_FLOAT, {.dbl=C_30DB                }, -32    , 32        , PARAM},
67 {"surround_mix_level"   , "Sourround Mix Level"         , OFFSET(slev           ), AV_OPT_TYPE_FLOAT, {.dbl=C_30DB                }, -32    , 32        , PARAM},
68 {"lfe_mix_level"        , "LFE Mix Level"               , OFFSET(lfe_mix_level  ), AV_OPT_TYPE_FLOAT, {.dbl=0                     }, -32    , 32        , PARAM},
69 {"rmvol"                , "Rematrix Volume"             , OFFSET(rematrix_volume), AV_OPT_TYPE_FLOAT, {.dbl=1.0                   }, -1000  , 1000      , PARAM},
70 {"rematrix_volume"      , "Rematrix Volume"             , OFFSET(rematrix_volume), AV_OPT_TYPE_FLOAT, {.dbl=1.0                   }, -1000  , 1000      , PARAM},
71 {"flags"                , NULL                          , OFFSET(flags          ), AV_OPT_TYPE_FLAGS, {.dbl=0                     }, 0      , UINT_MAX  , PARAM, "flags"},
72 {"swr_flags"            , NULL                          , OFFSET(flags          ), AV_OPT_TYPE_FLAGS, {.dbl=0                     }, 0      , UINT_MAX  , PARAM, "flags"},
73 {"res"                  , "Force Resampling"            , 0                      , AV_OPT_TYPE_CONST, {.dbl=SWR_FLAG_RESAMPLE     }, INT_MIN, INT_MAX   , PARAM, "flags"},
74 {"dither_scale"         , "Dither Scale"                , OFFSET(dither_scale   ), AV_OPT_TYPE_FLOAT, {.dbl=1                     }, 0      , INT_MAX   , PARAM},
75 {"dither_method"        , "Dither Method"               , OFFSET(dither_method  ), AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , SWR_DITHER_NB-1, PARAM, "dither_method"},
76 {"rectangular"          , "Rectangular Dither"          , 0                      , AV_OPT_TYPE_CONST, {.dbl=SWR_DITHER_RECTANGULAR}, INT_MIN, INT_MAX   , PARAM, "dither_method"},
77 {"triangular"           ,  "Triangular Dither"          , 0                      , AV_OPT_TYPE_CONST, {.dbl=SWR_DITHER_TRIANGULAR }, INT_MIN, INT_MAX   , PARAM, "dither_method"},
78 {"triangular_hp"        , "Triangular Dither With High Pass" , 0                 , AV_OPT_TYPE_CONST, {.dbl=SWR_DITHER_TRIANGULAR_HIGHPASS }, INT_MIN, INT_MAX, PARAM, "dither_method"},
79 {"filter_size"          , "Resampling Filter Size"      , OFFSET(filter_size)    , AV_OPT_TYPE_INT  , {.dbl=16                    }, 0      , INT_MAX   , PARAM },
80 {"phase_shift"          , "Resampling Phase Shift"      , OFFSET(phase_shift)    , AV_OPT_TYPE_INT  , {.dbl=10                    }, 0      , 30        , PARAM },
81 {"linear_interp"        , "Use Linear Interpolation"    , OFFSET(linear_interp)  , AV_OPT_TYPE_INT  , {.dbl=0                     }, 0      , 1         , PARAM },
82 {"cutoff"               , "Cutoff Frequency Ratio"      , OFFSET(cutoff)         , AV_OPT_TYPE_DOUBLE,{.dbl=0.8                   }, 0      , 1         , PARAM },
83 {"min_comp"             , "Minimum difference between timestamps and audio data (in seconds) below which no timestamp compensation of either kind is applied"
84                                                         , OFFSET(min_compensation),AV_OPT_TYPE_FLOAT ,{.dbl=FLT_MAX               }, 0      , FLT_MAX   , PARAM },
85 {"min_hard_comp"        , "Minimum difference between timestamps and audio data (in seconds) to trigger padding/trimming the data."
86                                                    , OFFSET(min_hard_compensation),AV_OPT_TYPE_FLOAT ,{.dbl=0.1                   }, 0      , INT_MAX   , PARAM },
87 {"comp_duration"        , "Duration (in seconds) over which data is stretched/squeezeed to make it match the timestamps."
88                                               , OFFSET(soft_compensation_duration),AV_OPT_TYPE_FLOAT ,{.dbl=1                     }, 0      , INT_MAX   , PARAM },
89 {"max_soft_comp"        , "Maximum factor by which data is stretched/squeezeed to make it match the timestamps."
90                                                    , OFFSET(max_soft_compensation),AV_OPT_TYPE_FLOAT ,{.dbl=0                     }, 0      , INT_MAX   , PARAM },
91
92 {0}
93 };
94
95 static const char* context_to_name(void* ptr) {
96     return "SWR";
97 }
98
99 static const AVClass av_class = {
100     .class_name                = "SwrContext",
101     .item_name                 = context_to_name,
102     .option                    = options,
103     .version                   = LIBAVUTIL_VERSION_INT,
104     .log_level_offset_offset   = OFFSET(log_level_offset),
105     .parent_log_context_offset = OFFSET(log_ctx),
106 };
107
108 unsigned swresample_version(void)
109 {
110     av_assert0(LIBSWRESAMPLE_VERSION_MICRO >= 100);
111     return LIBSWRESAMPLE_VERSION_INT;
112 }
113
114 const char *swresample_configuration(void)
115 {
116     return FFMPEG_CONFIGURATION;
117 }
118
119 const char *swresample_license(void)
120 {
121 #define LICENSE_PREFIX "libswresample license: "
122     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
123 }
124
125 int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map){
126     if(!s || s->in_convert) // s needs to be allocated but not initialized
127         return AVERROR(EINVAL);
128     s->channel_map = channel_map;
129     return 0;
130 }
131
132 const AVClass *swr_get_class(void)
133 {
134     return &av_class;
135 }
136
137 struct SwrContext *swr_alloc(void){
138     SwrContext *s= av_mallocz(sizeof(SwrContext));
139     if(s){
140         s->av_class= &av_class;
141         av_opt_set_defaults(s);
142     }
143     return s;
144 }
145
146 struct SwrContext *swr_alloc_set_opts(struct SwrContext *s,
147                                       int64_t out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate,
148                                       int64_t  in_ch_layout, enum AVSampleFormat  in_sample_fmt, int  in_sample_rate,
149                                       int log_offset, void *log_ctx){
150     if(!s) s= swr_alloc();
151     if(!s) return NULL;
152
153     s->log_level_offset= log_offset;
154     s->log_ctx= log_ctx;
155
156     av_opt_set_int(s, "ocl", out_ch_layout,   0);
157     av_opt_set_int(s, "osf", out_sample_fmt,  0);
158     av_opt_set_int(s, "osr", out_sample_rate, 0);
159     av_opt_set_int(s, "icl", in_ch_layout,    0);
160     av_opt_set_int(s, "isf", in_sample_fmt,   0);
161     av_opt_set_int(s, "isr", in_sample_rate,  0);
162     av_opt_set_int(s, "tsf", AV_SAMPLE_FMT_NONE,   0);
163     av_opt_set_int(s, "ich", av_get_channel_layout_nb_channels(s-> in_ch_layout), 0);
164     av_opt_set_int(s, "och", av_get_channel_layout_nb_channels(s->out_ch_layout), 0);
165     av_opt_set_int(s, "uch", 0, 0);
166     return s;
167 }
168
169 static void set_audiodata_fmt(AudioData *a, enum AVSampleFormat fmt){
170     a->fmt   = fmt;
171     a->bps   = av_get_bytes_per_sample(fmt);
172     a->planar= av_sample_fmt_is_planar(fmt);
173 }
174
175 static void free_temp(AudioData *a){
176     av_free(a->data);
177     memset(a, 0, sizeof(*a));
178 }
179
180 void swr_free(SwrContext **ss){
181     SwrContext *s= *ss;
182     if(s){
183         free_temp(&s->postin);
184         free_temp(&s->midbuf);
185         free_temp(&s->preout);
186         free_temp(&s->in_buffer);
187         free_temp(&s->dither);
188         swri_audio_convert_free(&s-> in_convert);
189         swri_audio_convert_free(&s->out_convert);
190         swri_audio_convert_free(&s->full_convert);
191         swri_resample_free(&s->resample);
192         swri_rematrix_free(s);
193     }
194
195     av_freep(ss);
196 }
197
198 int swr_init(struct SwrContext *s){
199     s->in_buffer_index= 0;
200     s->in_buffer_count= 0;
201     s->resample_in_constraint= 0;
202     free_temp(&s->postin);
203     free_temp(&s->midbuf);
204     free_temp(&s->preout);
205     free_temp(&s->in_buffer);
206     free_temp(&s->dither);
207     swri_audio_convert_free(&s-> in_convert);
208     swri_audio_convert_free(&s->out_convert);
209     swri_audio_convert_free(&s->full_convert);
210     swri_rematrix_free(s);
211
212     s->flushed = 0;
213
214     if(s-> in_sample_fmt >= AV_SAMPLE_FMT_NB){
215         av_log(s, AV_LOG_ERROR, "Requested input sample format %d is invalid\n", s->in_sample_fmt);
216         return AVERROR(EINVAL);
217     }
218     if(s->out_sample_fmt >= AV_SAMPLE_FMT_NB){
219         av_log(s, AV_LOG_ERROR, "Requested output sample format %d is invalid\n", s->out_sample_fmt);
220         return AVERROR(EINVAL);
221     }
222
223     if(s->int_sample_fmt == AV_SAMPLE_FMT_NONE){
224         if(av_get_planar_sample_fmt(s->in_sample_fmt) <= AV_SAMPLE_FMT_S16P){
225             s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
226         }else if(av_get_planar_sample_fmt(s->in_sample_fmt) <= AV_SAMPLE_FMT_FLTP){
227             s->int_sample_fmt= AV_SAMPLE_FMT_FLTP;
228         }else{
229             av_log(s, AV_LOG_DEBUG, "Using double precission mode\n");
230             s->int_sample_fmt= AV_SAMPLE_FMT_DBLP;
231         }
232     }
233
234     if(   s->int_sample_fmt != AV_SAMPLE_FMT_S16P
235         &&s->int_sample_fmt != AV_SAMPLE_FMT_S32P
236         &&s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
237         &&s->int_sample_fmt != AV_SAMPLE_FMT_DBLP){
238         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));
239         return AVERROR(EINVAL);
240     }
241
242     set_audiodata_fmt(&s-> in, s-> in_sample_fmt);
243     set_audiodata_fmt(&s->out, s->out_sample_fmt);
244
245     if (s->out_sample_rate!=s->in_sample_rate || (s->flags & SWR_FLAG_RESAMPLE)){
246         s->resample = swri_resample_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);
247     }else
248         swri_resample_free(&s->resample);
249     if(    s->int_sample_fmt != AV_SAMPLE_FMT_S16P
250         && s->int_sample_fmt != AV_SAMPLE_FMT_S32P
251         && s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
252         && s->int_sample_fmt != AV_SAMPLE_FMT_DBLP
253         && s->resample){
254         av_log(s, AV_LOG_ERROR, "Resampling only supported with internal s16/s32/flt/dbl\n");
255         return -1;
256     }
257
258     if(!s->used_ch_count)
259         s->used_ch_count= s->in.ch_count;
260
261     if(s->used_ch_count && s-> in_ch_layout && s->used_ch_count != av_get_channel_layout_nb_channels(s-> in_ch_layout)){
262         av_log(s, AV_LOG_WARNING, "Input channel layout has a different number of channels than the number of used channels, ignoring layout\n");
263         s-> in_ch_layout= 0;
264     }
265
266     if(!s-> in_ch_layout)
267         s-> in_ch_layout= av_get_default_channel_layout(s->used_ch_count);
268     if(!s->out_ch_layout)
269         s->out_ch_layout= av_get_default_channel_layout(s->out.ch_count);
270
271     s->rematrix= s->out_ch_layout  !=s->in_ch_layout || s->rematrix_volume!=1.0 ||
272                  s->rematrix_custom;
273
274 #define RSC 1 //FIXME finetune
275     if(!s-> in.ch_count)
276         s-> in.ch_count= av_get_channel_layout_nb_channels(s-> in_ch_layout);
277     if(!s->used_ch_count)
278         s->used_ch_count= s->in.ch_count;
279     if(!s->out.ch_count)
280         s->out.ch_count= av_get_channel_layout_nb_channels(s->out_ch_layout);
281
282     if(!s-> in.ch_count){
283         av_assert0(!s->in_ch_layout);
284         av_log(s, AV_LOG_ERROR, "Input channel count and layout are unset\n");
285         return -1;
286     }
287
288     if ((!s->out_ch_layout || !s->in_ch_layout) && s->used_ch_count != s->out.ch_count && !s->rematrix_custom) {
289         av_log(s, AV_LOG_ERROR, "Rematrix is needed but there is not enough information to do it\n");
290         return -1;
291     }
292
293 av_assert0(s->used_ch_count);
294 av_assert0(s->out.ch_count);
295     s->resample_first= RSC*s->out.ch_count/s->in.ch_count - RSC < s->out_sample_rate/(float)s-> in_sample_rate - 1.0;
296
297     s->in_buffer= s->in;
298
299     if(!s->resample && !s->rematrix && !s->channel_map && !s->dither_method){
300         s->full_convert = swri_audio_convert_alloc(s->out_sample_fmt,
301                                                    s-> in_sample_fmt, s-> in.ch_count, NULL, 0);
302         return 0;
303     }
304
305     s->in_convert = swri_audio_convert_alloc(s->int_sample_fmt,
306                                              s-> in_sample_fmt, s->used_ch_count, s->channel_map, 0);
307     s->out_convert= swri_audio_convert_alloc(s->out_sample_fmt,
308                                              s->int_sample_fmt, s->out.ch_count, NULL, 0);
309
310
311     s->postin= s->in;
312     s->preout= s->out;
313     s->midbuf= s->in;
314
315     if(s->channel_map){
316         s->postin.ch_count=
317         s->midbuf.ch_count= s->used_ch_count;
318         if(s->resample)
319             s->in_buffer.ch_count= s->used_ch_count;
320     }
321     if(!s->resample_first){
322         s->midbuf.ch_count= s->out.ch_count;
323         if(s->resample)
324             s->in_buffer.ch_count = s->out.ch_count;
325     }
326
327     set_audiodata_fmt(&s->postin, s->int_sample_fmt);
328     set_audiodata_fmt(&s->midbuf, s->int_sample_fmt);
329     set_audiodata_fmt(&s->preout, s->int_sample_fmt);
330
331     if(s->resample){
332         set_audiodata_fmt(&s->in_buffer, s->int_sample_fmt);
333     }
334
335     s->dither = s->preout;
336
337     if(s->rematrix || s->dither_method)
338         return swri_rematrix_init(s);
339
340     return 0;
341 }
342
343 static int realloc_audio(AudioData *a, int count){
344     int i, countb;
345     AudioData old;
346
347     if(a->count >= count)
348         return 0;
349
350     count*=2;
351
352     countb= FFALIGN(count*a->bps, ALIGN);
353     old= *a;
354
355     av_assert0(a->bps);
356     av_assert0(a->ch_count);
357
358     a->data= av_malloc(countb*a->ch_count);
359     if(!a->data)
360         return AVERROR(ENOMEM);
361     for(i=0; i<a->ch_count; i++){
362         a->ch[i]= a->data + i*(a->planar ? countb : a->bps);
363         if(a->planar) memcpy(a->ch[i], old.ch[i], a->count*a->bps);
364     }
365     if(!a->planar) memcpy(a->ch[0], old.ch[0], a->count*a->ch_count*a->bps);
366     av_free(old.data);
367     a->count= count;
368
369     return 1;
370 }
371
372 static void copy(AudioData *out, AudioData *in,
373                  int count){
374     av_assert0(out->planar == in->planar);
375     av_assert0(out->bps == in->bps);
376     av_assert0(out->ch_count == in->ch_count);
377     if(out->planar){
378         int ch;
379         for(ch=0; ch<out->ch_count; ch++)
380             memcpy(out->ch[ch], in->ch[ch], count*out->bps);
381     }else
382         memcpy(out->ch[0], in->ch[0], count*out->ch_count*out->bps);
383 }
384
385 static void fill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){
386     int i;
387     if(!in_arg){
388         memset(out->ch, 0, sizeof(out->ch));
389     }else if(out->planar){
390         for(i=0; i<out->ch_count; i++)
391             out->ch[i]= in_arg[i];
392     }else{
393         for(i=0; i<out->ch_count; i++)
394             out->ch[i]= in_arg[0] + i*out->bps;
395     }
396 }
397
398 static void reversefill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){
399     int i;
400     if(out->planar){
401         for(i=0; i<out->ch_count; i++)
402             in_arg[i]= out->ch[i];
403     }else{
404         in_arg[0]= out->ch[0];
405     }
406 }
407
408 /**
409  *
410  * out may be equal in.
411  */
412 static void buf_set(AudioData *out, AudioData *in, int count){
413     int ch;
414     if(in->planar){
415         for(ch=0; ch<out->ch_count; ch++)
416             out->ch[ch]= in->ch[ch] + count*out->bps;
417     }else{
418         for(ch=out->ch_count-1; ch>=0; ch--)
419             out->ch[ch]= in->ch[0] + (ch + count*out->ch_count) * out->bps;
420     }
421 }
422
423 /**
424  *
425  * @return number of samples output per channel
426  */
427 static int resample(SwrContext *s, AudioData *out_param, int out_count,
428                              const AudioData * in_param, int in_count){
429     AudioData in, out, tmp;
430     int ret_sum=0;
431     int border=0;
432
433     av_assert1(s->in_buffer.ch_count == in_param->ch_count);
434     av_assert1(s->in_buffer.planar   == in_param->planar);
435     av_assert1(s->in_buffer.fmt      == in_param->fmt);
436
437     tmp=out=*out_param;
438     in =  *in_param;
439
440     do{
441         int ret, size, consumed;
442         if(!s->resample_in_constraint && s->in_buffer_count){
443             buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
444             ret= swri_multiple_resample(s->resample, &out, out_count, &tmp, s->in_buffer_count, &consumed);
445             out_count -= ret;
446             ret_sum += ret;
447             buf_set(&out, &out, ret);
448             s->in_buffer_count -= consumed;
449             s->in_buffer_index += consumed;
450
451             if(!in_count)
452                 break;
453             if(s->in_buffer_count <= border){
454                 buf_set(&in, &in, -s->in_buffer_count);
455                 in_count += s->in_buffer_count;
456                 s->in_buffer_count=0;
457                 s->in_buffer_index=0;
458                 border = 0;
459             }
460         }
461
462         if(in_count && !s->in_buffer_count){
463             s->in_buffer_index=0;
464             ret= swri_multiple_resample(s->resample, &out, out_count, &in, in_count, &consumed);
465             out_count -= ret;
466             ret_sum += ret;
467             buf_set(&out, &out, ret);
468             in_count -= consumed;
469             buf_set(&in, &in, consumed);
470         }
471
472         //TODO is this check sane considering the advanced copy avoidance below
473         size= s->in_buffer_index + s->in_buffer_count + in_count;
474         if(   size > s->in_buffer.count
475            && s->in_buffer_count + in_count <= s->in_buffer_index){
476             buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
477             copy(&s->in_buffer, &tmp, s->in_buffer_count);
478             s->in_buffer_index=0;
479         }else
480             if((ret=realloc_audio(&s->in_buffer, size)) < 0)
481                 return ret;
482
483         if(in_count){
484             int count= in_count;
485             if(s->in_buffer_count && s->in_buffer_count+2 < count && out_count) count= s->in_buffer_count+2;
486
487             buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
488             copy(&tmp, &in, /*in_*/count);
489             s->in_buffer_count += count;
490             in_count -= count;
491             border += count;
492             buf_set(&in, &in, count);
493             s->resample_in_constraint= 0;
494             if(s->in_buffer_count != count || in_count)
495                 continue;
496         }
497         break;
498     }while(1);
499
500     s->resample_in_constraint= !!out_count;
501
502     return ret_sum;
503 }
504
505 static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_count,
506                                                       AudioData *in , int  in_count){
507     AudioData *postin, *midbuf, *preout;
508     int ret/*, in_max*/;
509     AudioData preout_tmp, midbuf_tmp;
510
511     if(s->full_convert){
512         av_assert0(!s->resample);
513         swri_audio_convert(s->full_convert, out, in, in_count);
514         return out_count;
515     }
516
517 //     in_max= out_count*(int64_t)s->in_sample_rate / s->out_sample_rate + resample_filter_taps;
518 //     in_count= FFMIN(in_count, in_in + 2 - s->hist_buffer_count);
519
520     if((ret=realloc_audio(&s->postin, in_count))<0)
521         return ret;
522     if(s->resample_first){
523         av_assert0(s->midbuf.ch_count == s->used_ch_count);
524         if((ret=realloc_audio(&s->midbuf, out_count))<0)
525             return ret;
526     }else{
527         av_assert0(s->midbuf.ch_count ==  s->out.ch_count);
528         if((ret=realloc_audio(&s->midbuf,  in_count))<0)
529             return ret;
530     }
531     if((ret=realloc_audio(&s->preout, out_count))<0)
532         return ret;
533
534     postin= &s->postin;
535
536     midbuf_tmp= s->midbuf;
537     midbuf= &midbuf_tmp;
538     preout_tmp= s->preout;
539     preout= &preout_tmp;
540
541     if(s->int_sample_fmt == s-> in_sample_fmt && s->in.planar)
542         postin= in;
543
544     if(s->resample_first ? !s->resample : !s->rematrix)
545         midbuf= postin;
546
547     if(s->resample_first ? !s->rematrix : !s->resample)
548         preout= midbuf;
549
550     if(s->int_sample_fmt == s->out_sample_fmt && s->out.planar){
551         if(preout==in){
552             out_count= FFMIN(out_count, in_count); //TODO check at the end if this is needed or redundant
553             av_assert0(s->in.planar); //we only support planar internally so it has to be, we support copying non planar though
554             copy(out, in, out_count);
555             return out_count;
556         }
557         else if(preout==postin) preout= midbuf= postin= out;
558         else if(preout==midbuf) preout= midbuf= out;
559         else                    preout= out;
560     }
561
562     if(in != postin){
563         swri_audio_convert(s->in_convert, postin, in, in_count);
564     }
565
566     if(s->resample_first){
567         if(postin != midbuf)
568             out_count= resample(s, midbuf, out_count, postin, in_count);
569         if(midbuf != preout)
570             swri_rematrix(s, preout, midbuf, out_count, preout==out);
571     }else{
572         if(postin != midbuf)
573             swri_rematrix(s, midbuf, postin, in_count, midbuf==out);
574         if(midbuf != preout)
575             out_count= resample(s, preout, out_count, midbuf, in_count);
576     }
577
578     if(preout != out && out_count){
579         if(s->dither_method){
580             int ch;
581             int dither_count= FFMAX(out_count, 1<<16);
582             av_assert0(preout != in);
583
584             if((ret=realloc_audio(&s->dither, dither_count))<0)
585                 return ret;
586             if(ret)
587                 for(ch=0; ch<s->dither.ch_count; ch++)
588                     swri_get_dither(s, s->dither.ch[ch], s->dither.count, 12345678913579<<ch, s->out_sample_fmt, s->int_sample_fmt);
589             av_assert0(s->dither.ch_count == preout->ch_count);
590
591             if(s->dither_pos + out_count > s->dither.count)
592                 s->dither_pos = 0;
593
594             for(ch=0; ch<preout->ch_count; ch++)
595                 s->mix_2_1_f(preout->ch[ch], preout->ch[ch], s->dither.ch[ch] + s->dither.bps * s->dither_pos, s->native_one, 0, 0, out_count);
596
597             s->dither_pos += out_count;
598         }
599 //FIXME packed doesnt need more than 1 chan here!
600         swri_audio_convert(s->out_convert, out, preout, out_count);
601     }
602     return out_count;
603 }
604
605 int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_count,
606                                 const uint8_t *in_arg [SWR_CH_MAX], int  in_count){
607     AudioData * in= &s->in;
608     AudioData *out= &s->out;
609
610     if(s->drop_output > 0){
611         int ret;
612         AudioData tmp = s->out;
613         uint8_t *tmp_arg[SWR_CH_MAX];
614         tmp.count = 0;
615         tmp.data  = NULL;
616         if((ret=realloc_audio(&tmp, s->drop_output))<0)
617             return ret;
618
619         reversefill_audiodata(&tmp, tmp_arg);
620         s->drop_output *= -1; //FIXME find a less hackish solution
621         ret = swr_convert(s, tmp_arg, -s->drop_output, in_arg, in_count); //FIXME optimize but this is as good as never called so maybe it doesnt matter
622         s->drop_output *= -1;
623         if(ret>0)
624             s->drop_output -= ret;
625
626         av_freep(&tmp.data);
627         if(s->drop_output || !out_arg)
628             return 0;
629     }
630
631     if(!in_arg){
632         if(s->in_buffer_count){
633             if (s->resample && !s->flushed) {
634                 AudioData *a= &s->in_buffer;
635                 int i, j, ret;
636                 if((ret=realloc_audio(a, s->in_buffer_index + 2*s->in_buffer_count)) < 0)
637                     return ret;
638                 av_assert0(a->planar);
639                 for(i=0; i<a->ch_count; i++){
640                     for(j=0; j<s->in_buffer_count; j++){
641                         memcpy(a->ch[i] + (s->in_buffer_index+s->in_buffer_count+j  )*a->bps,
642                             a->ch[i] + (s->in_buffer_index+s->in_buffer_count-j-1)*a->bps, a->bps);
643                     }
644                 }
645                 s->in_buffer_count += (s->in_buffer_count+1)/2;
646                 s->resample_in_constraint = 0;
647                 s->flushed = 1;
648             }
649         }else{
650             return 0;
651         }
652     }else
653         fill_audiodata(in ,  (void*)in_arg);
654
655     fill_audiodata(out, out_arg);
656
657     if(s->resample){
658         int ret = swr_convert_internal(s, out, out_count, in, in_count);
659         if(ret>0 && !s->drop_output)
660             s->outpts += ret * (int64_t)s->in_sample_rate;
661         return ret;
662     }else{
663         AudioData tmp= *in;
664         int ret2=0;
665         int ret, size;
666         size = FFMIN(out_count, s->in_buffer_count);
667         if(size){
668             buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
669             ret= swr_convert_internal(s, out, size, &tmp, size);
670             if(ret<0)
671                 return ret;
672             ret2= ret;
673             s->in_buffer_count -= ret;
674             s->in_buffer_index += ret;
675             buf_set(out, out, ret);
676             out_count -= ret;
677             if(!s->in_buffer_count)
678                 s->in_buffer_index = 0;
679         }
680
681         if(in_count){
682             size= s->in_buffer_index + s->in_buffer_count + in_count - out_count;
683
684             if(in_count > out_count) { //FIXME move after swr_convert_internal
685                 if(   size > s->in_buffer.count
686                 && s->in_buffer_count + in_count - out_count <= s->in_buffer_index){
687                     buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
688                     copy(&s->in_buffer, &tmp, s->in_buffer_count);
689                     s->in_buffer_index=0;
690                 }else
691                     if((ret=realloc_audio(&s->in_buffer, size)) < 0)
692                         return ret;
693             }
694
695             if(out_count){
696                 size = FFMIN(in_count, out_count);
697                 ret= swr_convert_internal(s, out, size, in, size);
698                 if(ret<0)
699                     return ret;
700                 buf_set(in, in, ret);
701                 in_count -= ret;
702                 ret2 += ret;
703             }
704             if(in_count){
705                 buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
706                 copy(&tmp, in, in_count);
707                 s->in_buffer_count += in_count;
708             }
709         }
710         if(ret2>0 && !s->drop_output)
711             s->outpts += ret2 * (int64_t)s->in_sample_rate;
712         return ret2;
713     }
714 }
715
716 int swr_drop_output(struct SwrContext *s, int count){
717     s->drop_output += count;
718
719     if(s->drop_output <= 0)
720         return 0;
721
722     av_log(s, AV_LOG_VERBOSE, "discarding %d audio samples\n", count);
723     return swr_convert(s, NULL, s->drop_output, NULL, 0);
724 }
725
726 int swr_inject_silence(struct SwrContext *s, int count){
727     int ret, i;
728     AudioData silence = s->out;
729     uint8_t *tmp_arg[SWR_CH_MAX];
730
731     if(count <= 0)
732         return 0;
733
734     silence.count = 0;
735     silence.data  = NULL;
736     if((ret=realloc_audio(&silence, count))<0)
737         return ret;
738
739     if(silence.planar) for(i=0; i<silence.ch_count; i++) {
740         memset(silence.ch[i], silence.bps==1 ? 0x80 : 0, count*silence.bps);
741     } else
742         memset(silence.ch[0], silence.bps==1 ? 0x80 : 0, count*silence.bps*silence.ch_count);
743
744     reversefill_audiodata(&silence, tmp_arg);
745     av_log(s, AV_LOG_VERBOSE, "adding %d audio samples of silence\n", count);
746     ret = swr_convert(s, NULL, 0, (const uint8_t**)tmp_arg, count);
747     av_freep(&silence.data);
748     return ret;
749 }
750
751 int64_t swr_next_pts(struct SwrContext *s, int64_t pts){
752     if(pts == INT64_MIN)
753         return s->outpts;
754     if(s->min_compensation >= FLT_MAX) {
755         return (s->outpts = pts - swr_get_delay(s, s->in_sample_rate * (int64_t)s->out_sample_rate));
756     } else {
757         int64_t delta = pts - swr_get_delay(s, s->in_sample_rate * (int64_t)s->out_sample_rate) - s->outpts;
758         double fdelta = delta /(double)(s->in_sample_rate * (int64_t)s->out_sample_rate);
759
760         if(fabs(fdelta) > s->min_compensation) {
761             if(!s->outpts || fabs(fdelta) > s->min_hard_compensation){
762                 if(delta > 0) swr_inject_silence(s,  delta / s->out_sample_rate);
763                 else          swr_drop_output   (s, -delta / s-> in_sample_rate);
764             } else if(s->soft_compensation_duration && s->max_soft_compensation) {
765                 int duration = s->out_sample_rate * s->soft_compensation_duration;
766                 int comp = av_clipf(fdelta, -s->max_soft_compensation, s->max_soft_compensation) * duration ;
767                 av_log(s, AV_LOG_VERBOSE, "compensating audio timestamp drift:%f compensation:%d in:%d\n", fdelta, comp, duration);
768                 swr_set_compensation(s, comp, duration);
769             }
770         }
771
772         return s->outpts;
773     }
774 }