annotate resample2.c @ 4701:5fa551fb7640 libavcodec

optimize bessel function instead of trusting gcc to do trivial optimizations (as gcc doesnt ...)
author michael
date Thu, 22 Mar 2007 00:52:49 +0000
parents e210bbc7dd19
children a8794f26ea98
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
1 /*
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
2 * audio resampling
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
3 * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3347
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3347
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3347
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3347
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3347
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
15 * Lesser General Public License for more details.
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
16 *
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3347
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3036
0b546eab515d Update licensing information: The FSF changed postal address.
diego
parents: 2967
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
20 *
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
21 */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
22
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
23 /**
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
24 * @file resample2.c
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
25 * audio resampling
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
26 * @author Michael Niedermayer <michaelni@gmx.at>
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
27 */
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
28
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
29 #include "avcodec.h"
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
30 #include "common.h"
2114
7f88c429ad65 ugly missing lrintf workaround by ("Steven M. Schultz" <sms at 2bsd dot com>)
michael
parents: 2109
diff changeset
31 #include "dsputil.h"
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
32
4697
8e460c6a85a7 make high precision mode accessible at compile time
michael
parents: 4696
diff changeset
33 #ifndef CONFIG_RESAMPLE_HP
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
34 #define FILTER_SHIFT 15
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
35
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
36 #define FELEM int16_t
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
37 #define FELEM2 int32_t
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
38 #define FELEM_MAX INT16_MAX
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
39 #define FELEM_MIN INT16_MIN
4700
e210bbc7dd19 select more sensible default windows (= attenuation beyond the dynamic range of your input is silly if it negatively affects other parameters)
michael
parents: 4699
diff changeset
40 #define WINDOW_TYPE 9
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
41 #else
4696
cb715346074a increase bits for non default highprecision mode
michael
parents: 4695
diff changeset
42 #define FILTER_SHIFT 30
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
43
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
44 #define FELEM int32_t
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
45 #define FELEM2 int64_t
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
46 #define FELEM_MAX INT32_MAX
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
47 #define FELEM_MIN INT32_MIN
4700
e210bbc7dd19 select more sensible default windows (= attenuation beyond the dynamic range of your input is silly if it negatively affects other parameters)
michael
parents: 4699
diff changeset
48 #define WINDOW_TYPE 12
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
49 #endif
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
50
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
51
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
52 typedef struct AVResampleContext{
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
53 FELEM *filter_bank;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
54 int filter_length;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
55 int ideal_dst_incr;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
56 int dst_incr;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
57 int index;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
58 int frac;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
59 int src_incr;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
60 int compensation_distance;
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
61 int phase_shift;
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
62 int phase_mask;
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
63 int linear;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
64 }AVResampleContext;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
65
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
66 /**
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
67 * 0th order modified bessel function of the first kind.
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
68 */
3347
82277c821113 Add const to (mostly) char* and make some functions static, which aren't used
diego
parents: 3036
diff changeset
69 static double bessel(double x){
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
70 double v=1;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
71 double t=1;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
72 int i;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
73
4701
5fa551fb7640 optimize bessel function instead of trusting gcc to do trivial optimizations (as gcc doesnt ...)
michael
parents: 4700
diff changeset
74 x= x*x/4;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
75 for(i=1; i<50; i++){
4701
5fa551fb7640 optimize bessel function instead of trusting gcc to do trivial optimizations (as gcc doesnt ...)
michael
parents: 4700
diff changeset
76 t *= x/(i*i);
5fa551fb7640 optimize bessel function instead of trusting gcc to do trivial optimizations (as gcc doesnt ...)
michael
parents: 4700
diff changeset
77 v += t;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
78 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
79 return v;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
80 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
81
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
82 /**
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
83 * builds a polyphase filterbank.
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
84 * @param factor resampling factor
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
85 * @param scale wanted sum of coefficients for each filter
4699
4040ca52670a make kaiser windows with other beta than 16 available
michael
parents: 4697
diff changeset
86 * @param type 0->cubic, 1->blackman nuttall windowed sinc, 2..16->kaiser windowed sinc beta=2..16
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
87 */
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
88 void av_build_filter(FELEM *filter, double factor, int tap_count, int phase_count, int scale, int type){
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
89 int ph, i, v;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
90 double x, y, w, tab[tap_count];
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
91 const int center= (tap_count-1)/2;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
92
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
93 /* if upsampling, only need to interpolate, no filter */
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
94 if (factor > 1.0)
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
95 factor = 1.0;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
96
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
97 for(ph=0;ph<phase_count;ph++) {
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
98 double norm = 0;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
99 for(i=0;i<tap_count;i++) {
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
100 x = M_PI * ((double)(i - center) - (double)ph / phase_count) * factor;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
101 if (x == 0) y = 1.0;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
102 else y = sin(x) / x;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
103 switch(type){
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
104 case 0:{
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
105 const float d= -0.5; //first order derivative = -0.5
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
106 x = fabs(((double)(i - center) - (double)ph / phase_count) * factor);
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
107 if(x<1.0) y= 1 - 3*x*x + 2*x*x*x + d*( -x*x + x*x*x);
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
108 else y= d*(-4 + 8*x - 5*x*x + x*x*x);
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
109 break;}
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
110 case 1:
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
111 w = 2.0*x / (factor*tap_count) + M_PI;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
112 y *= 0.3635819 - 0.4891775 * cos(w) + 0.1365995 * cos(2*w) - 0.0106411 * cos(3*w);
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
113 break;
4699
4040ca52670a make kaiser windows with other beta than 16 available
michael
parents: 4697
diff changeset
114 default:
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
115 w = 2.0*x / (factor*tap_count*M_PI);
4699
4040ca52670a make kaiser windows with other beta than 16 available
michael
parents: 4697
diff changeset
116 y *= bessel(type*sqrt(FFMAX(1-w*w, 0)));
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
117 break;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
118 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
119
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
120 tab[i] = y;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
121 norm += y;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
122 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
123
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
124 /* normalize so that an uniform color remains the same */
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
125 for(i=0;i<tap_count;i++) {
4694
f5fa13dfd3c8 remove dithering of filter coefficients, improves precision by 1-2 bits and
michael
parents: 4594
diff changeset
126 v = av_clip(lrintf(tab[i] * scale / norm), FELEM_MIN, FELEM_MAX);
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
127 filter[ph * tap_count + i] = v;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
128 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
129 }
4695
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
130 #if 0
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
131 {
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
132 #define LEN 1024
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
133 int j,k;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
134 double sine[LEN + tap_count];
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
135 double filtered[LEN];
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
136 double maxff=-2, minff=2, maxsf=-2, minsf=2;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
137 for(i=0; i<LEN; i++){
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
138 double ss=0, sf=0, ff=0;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
139 for(j=0; j<LEN+tap_count; j++)
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
140 sine[j]= cos(i*j*M_PI/LEN);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
141 for(j=0; j<LEN; j++){
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
142 double sum=0;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
143 ph=0;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
144 for(k=0; k<tap_count; k++)
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
145 sum += filter[ph * tap_count + k] * sine[k+j];
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
146 filtered[j]= sum / (1<<FILTER_SHIFT);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
147 ss+= sine[j + center] * sine[j + center];
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
148 ff+= filtered[j] * filtered[j];
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
149 sf+= sine[j + center] * filtered[j];
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
150 }
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
151 ss= sqrt(2*ss/LEN);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
152 ff= sqrt(2*ff/LEN);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
153 sf= 2*sf/LEN;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
154 maxff= FFMAX(maxff, ff);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
155 minff= FFMIN(minff, ff);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
156 maxsf= FFMAX(maxsf, sf);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
157 minsf= FFMIN(minsf, sf);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
158 if(i%11==0){
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
159 av_log(NULL, AV_LOG_ERROR, "i:%4d ss:%f ff:%f-%f sf:%f-%f\n", i, ss, maxff, minff, maxsf, minsf);
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
160 minff=minsf= 2;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
161 maxff=maxsf= -2;
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
162 }
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
163 }
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
164 }
8155dd60b50b code for testing the accuracy of the resampler
michael
parents: 4694
diff changeset
165 #endif
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
166 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
167
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
168 /**
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
169 * initalizes a audio resampler.
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
170 * note, if either rate is not a integer then simply scale both rates up so they are
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
171 */
2308
de38526a1f3f user selectble cutoff frequency
michael
parents: 2307
diff changeset
172 AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_size, int phase_shift, int linear, double cutoff){
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
173 AVResampleContext *c= av_mallocz(sizeof(AVResampleContext));
2308
de38526a1f3f user selectble cutoff frequency
michael
parents: 2307
diff changeset
174 double factor= FFMIN(out_rate * cutoff / in_rate, 1.0);
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
175 int phase_count= 1<<phase_shift;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
176
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
177 c->phase_shift= phase_shift;
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
178 c->phase_mask= phase_count-1;
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
179 c->linear= linear;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
180
2835
d4c4b84e0fac minor fixes for invalid audio data patch by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents: 2426
diff changeset
181 c->filter_length= FFMAX((int)ceil(filter_size/factor), 1);
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
182 c->filter_bank= av_mallocz(c->filter_length*(phase_count+1)*sizeof(FELEM));
4700
e210bbc7dd19 select more sensible default windows (= attenuation beyond the dynamic range of your input is silly if it negatively affects other parameters)
michael
parents: 4699
diff changeset
183 av_build_filter(c->filter_bank, factor, c->filter_length, phase_count, 1<<FILTER_SHIFT, WINDOW_TYPE);
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
184 memcpy(&c->filter_bank[c->filter_length*phase_count+1], c->filter_bank, (c->filter_length-1)*sizeof(FELEM));
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
185 c->filter_bank[c->filter_length*phase_count]= c->filter_bank[c->filter_length - 1];
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
186
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
187 c->src_incr= out_rate;
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
188 c->ideal_dst_incr= c->dst_incr= in_rate * phase_count;
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
189 c->index= -phase_count*((c->filter_length-1)/2);
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
190
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
191 return c;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
192 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
193
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
194 void av_resample_close(AVResampleContext *c){
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
195 av_freep(&c->filter_bank);
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
196 av_freep(&c);
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
197 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
198
2346
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
199 /**
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
200 * Compensates samplerate/timestamp drift. The compensation is done by changing
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
201 * the resampler parameters, so no audible clicks or similar distortions ocur
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
202 * @param compensation_distance distance in output samples over which the compensation should be performed
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
203 * @param sample_delta number of output samples which should be output less
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
204 *
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
205 * example: av_resample_compensate(c, 10, 500)
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
206 * here instead of 510 samples only 500 samples would be output
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
207 *
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
208 * note, due to rounding the actual compensation might be slightly different,
2346
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
209 * especially if the compensation_distance is large and the in_rate used during init is small
424e6b29de74 av_resample_compensate() doxy
michael
parents: 2308
diff changeset
210 */
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
211 void av_resample_compensate(AVResampleContext *c, int sample_delta, int compensation_distance){
2083
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
212 // sample_delta += (c->ideal_dst_incr - c->dst_incr)*(int64_t)c->compensation_distance / c->ideal_dst_incr;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
213 c->compensation_distance= compensation_distance;
2083
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
214 c->dst_incr = c->ideal_dst_incr - c->ideal_dst_incr * (int64_t)sample_delta / compensation_distance;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
215 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
216
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
217 /**
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
218 * resamples.
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
219 * @param src an array of unconsumed samples
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
220 * @param consumed the number of samples of src which have been consumed are returned here
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
221 * @param src_size the number of unconsumed samples available
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
222 * @param dst_size the amount of space in samples available in dst
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
223 * @param update_ctx if this is 0 then the context wont be modified, that way several channels can be resampled with the same context
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
224 * @return the number of samples written in dst or -1 if an error occured
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
225 */
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
226 int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
227 int dst_index, i;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
228 int index= c->index;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
229 int frac= c->frac;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
230 int dst_incr_frac= c->dst_incr % c->src_incr;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
231 int dst_incr= c->dst_incr / c->src_incr;
2277
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
232 int compensation_distance= c->compensation_distance;
2405
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
233
2403
6d53608cf2cf special case for filter_length==1
michael
parents: 2346
diff changeset
234 if(compensation_distance == 0 && c->filter_length == 1 && c->phase_shift==0){
2405
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
235 int64_t index2= ((int64_t)index)<<32;
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
236 int64_t incr= (1LL<<32) * c->dst_incr / c->src_incr;
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
237 dst_size= FFMIN(dst_size, (src_size-1-index) * (int64_t)c->src_incr / c->dst_incr);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
238
2403
6d53608cf2cf special case for filter_length==1
michael
parents: 2346
diff changeset
239 for(dst_index=0; dst_index < dst_size; dst_index++){
2405
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
240 dst[dst_index] = src[index2>>32];
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
241 index2 += incr;
2403
6d53608cf2cf special case for filter_length==1
michael
parents: 2346
diff changeset
242 }
2405
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
243 frac += dst_index * dst_incr_frac;
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
244 index += dst_index * dst_incr;
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
245 index += frac / c->src_incr;
21c5ef8a4ff7 faster and slightly less accurate nearest neighbor resampler
michael
parents: 2403
diff changeset
246 frac %= c->src_incr;
2403
6d53608cf2cf special case for filter_length==1
michael
parents: 2346
diff changeset
247 }else{
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
248 for(dst_index=0; dst_index < dst_size; dst_index++){
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
249 FELEM *filter= c->filter_bank + c->filter_length*(index & c->phase_mask);
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
250 int sample_index= index >> c->phase_shift;
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
251 FELEM2 val=0;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
252
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
253 if(sample_index < 0){
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
254 for(i=0; i<c->filter_length; i++)
4001
34fdffe98bd0 Rename ABS macro to FFABS.
diego
parents: 3947
diff changeset
255 val += src[FFABS(sample_index + i) % src_size] * filter[i];
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
256 }else if(sample_index + c->filter_length > src_size){
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
257 break;
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
258 }else if(c->linear){
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
259 int64_t v=0;
2305
9568c8880d96 optimization
michael
parents: 2304
diff changeset
260 int sub_phase= (frac<<8) / c->src_incr;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
261 for(i=0; i<c->filter_length; i++){
2305
9568c8880d96 optimization
michael
parents: 2304
diff changeset
262 int64_t coeff= filter[i]*(256 - sub_phase) + filter[i + c->filter_length]*sub_phase;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
263 v += src[sample_index + i] * coeff;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
264 }
2305
9568c8880d96 optimization
michael
parents: 2304
diff changeset
265 val= v>>8;
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
266 }else{
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
267 for(i=0; i<c->filter_length; i++){
2304
09b2ef0ac97d make filter size, int32/int16 and a few other things selectable at compiletime
michael
parents: 2303
diff changeset
268 val += src[sample_index + i] * (FELEM2)filter[i];
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
269 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
270 }
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
271
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
272 val = (val + (1<<(FILTER_SHIFT-1)))>>FILTER_SHIFT;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
273 dst[dst_index] = (unsigned)(val + 32768) > 65535 ? (val>>31) ^ 32767 : val;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
274
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
275 frac += dst_incr_frac;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
276 index += dst_incr;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
277 if(frac >= c->src_incr){
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
278 frac -= c->src_incr;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
279 index++;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
280 }
2277
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
281
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
282 if(dst_index + 1 == compensation_distance){
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
283 compensation_distance= 0;
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
284 dst_incr_frac= c->ideal_dst_incr % c->src_incr;
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
285 dst_incr= c->ideal_dst_incr / c->src_incr;
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
286 }
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
287 }
2403
6d53608cf2cf special case for filter_length==1
michael
parents: 2346
diff changeset
288 }
2306
072fc321fbe6 make most resample filter parameters selectable at runtime
michael
parents: 2305
diff changeset
289 *consumed= FFMAX(index, 0) >> c->phase_shift;
2307
df3e4a8e6aac 100l (dont reset the sample position at the block end)
michael
parents: 2306
diff changeset
290 if(index>=0) index &= c->phase_mask;
2109
84637c6ca74e various resampling fixes
michael
parents: 2083
diff changeset
291
2277
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
292 if(compensation_distance){
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
293 compensation_distance -= dst_index;
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
294 assert(compensation_distance > 0);
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
295 }
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
296 if(update_ctx){
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
297 c->frac= frac;
2109
84637c6ca74e various resampling fixes
michael
parents: 2083
diff changeset
298 c->index= index;
2277
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
299 c->dst_incr= dst_incr_frac + c->src_incr*dst_incr;
b88e05b9b445 dont just resample half of the data sometimes
michael
parents: 2171
diff changeset
300 c->compensation_distance= compensation_distance;
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
301 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
302 #if 0
2083
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
303 if(update_ctx && !c->compensation_distance){
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
304 #undef rand
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
305 av_resample_compensate(c, rand() % (8000*2) - 8000, 8000*2);
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
306 av_log(NULL, AV_LOG_DEBUG, "%d %d %d\n", c->dst_incr, c->ideal_dst_incr, c->compensation_distance);
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
307 }
76cdbe832239 avoid useless normalization and 10l fix
michael
parents: 2082
diff changeset
308 #endif
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2835
diff changeset
309
2082
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
310 return dst_index;
3dc9bbe1b152 polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
diff changeset
311 }