talloc.c: Update to match current upstream ("likely" macro definitions)
[mplayer.git] / libaf / af_resample.c
blob57e2d393211a5235f197cdb27edd44645ac5c24a
1 /*=============================================================================
2 //
3 // This software has been released under the terms of the GNU General Public
4 // license. See http://www.gnu.org/copyleft/gpl.html for details.
5 //
6 // Copyright 2002 Anders Johansson ajh@atri.curtin.edu.au
7 //
8 //=============================================================================
9 */
11 /* This audio filter changes the sample rate. */
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <inttypes.h>
16 #include "libavutil/common.h"
17 #include "af.h"
18 #include "dsp.h"
20 /* Below definition selects the length of each poly phase component.
21 Valid definitions are L8 and L16, where the number denotes the
22 length of the filter. This definition affects the computational
23 complexity (see play()), the performance (see filter.h) and the
24 memory usage. The filterlength is choosen to 8 if the machine is
25 slow and to 16 if the machine is fast and has MMX.
28 #if !defined(HAVE_MMX) // This machine is slow
29 #define L8
30 #else
31 #define L16
32 #endif
34 #include "af_resample.h"
36 // Filtering types
37 #define RSMP_LIN (0<<0) // Linear interpolation
38 #define RSMP_INT (1<<0) // 16 bit integer
39 #define RSMP_FLOAT (2<<0) // 32 bit floating point
40 #define RSMP_MASK (3<<0)
42 // Defines for sloppy or exact resampling
43 #define FREQ_SLOPPY (0<<2)
44 #define FREQ_EXACT (1<<2)
45 #define FREQ_MASK (1<<2)
47 // Accuracy for linear interpolation
48 #define STEPACCURACY 32
50 // local data
51 typedef struct af_resample_s
53 void* w; // Current filter weights
54 void** xq; // Circular buffers
55 uint32_t xi; // Index for circular buffers
56 uint32_t wi; // Index for w
57 uint32_t i; // Number of new samples to put in x queue
58 uint32_t dn; // Down sampling factor
59 uint32_t up; // Up sampling factor
60 uint64_t step; // Step size for linear interpolation
61 uint64_t pt; // Pointer remainder for linear interpolation
62 int setup; // Setup parameters cmdline or through postcreate
63 } af_resample_t;
65 // Fast linear interpolation resample with modest audio quality
66 static int linint(af_data_t* c,af_data_t* l, af_resample_t* s)
68 uint32_t len = 0; // Number of input samples
69 uint32_t nch = l->nch; // Words pre transfer
70 uint64_t step = s->step;
71 int16_t* in16 = ((int16_t*)c->audio);
72 int16_t* out16 = ((int16_t*)l->audio);
73 int32_t* in32 = ((int32_t*)c->audio);
74 int32_t* out32 = ((int32_t*)l->audio);
75 uint64_t end = ((((uint64_t)c->len)/2LL)<<STEPACCURACY);
76 uint64_t pt = s->pt;
77 uint16_t tmp;
79 switch (nch){
80 case 1:
81 while(pt < end){
82 out16[len++]=in16[pt>>STEPACCURACY];
83 pt+=step;
85 s->pt=pt & ((1LL<<STEPACCURACY)-1);
86 break;
87 case 2:
88 end/=2;
89 while(pt < end){
90 out32[len++]=in32[pt>>STEPACCURACY];
91 pt+=step;
93 len=(len<<1);
94 s->pt=pt & ((1LL<<STEPACCURACY)-1);
95 break;
96 default:
97 end /=nch;
98 while(pt < end){
99 tmp=nch;
100 do {
101 tmp--;
102 out16[len+tmp]=in16[tmp+(pt>>STEPACCURACY)*nch];
103 } while (tmp);
104 len+=nch;
105 pt+=step;
107 s->pt=pt & ((1LL<<STEPACCURACY)-1);
109 return len;
112 /* Determine resampling type and format */
113 static int set_types(struct af_instance_s* af, af_data_t* data)
115 af_resample_t* s = af->setup;
116 int rv = AF_OK;
117 float rd = 0;
119 // Make sure this filter isn't redundant
120 if((af->data->rate == data->rate) || (af->data->rate == 0))
121 return AF_DETACH;
122 /* If sloppy and small resampling difference (2%) */
123 rd = abs((float)af->data->rate - (float)data->rate)/(float)data->rate;
124 if((((s->setup & FREQ_MASK) == FREQ_SLOPPY) && (rd < 0.02) &&
125 (data->format != (AF_FORMAT_FLOAT_NE))) ||
126 ((s->setup & RSMP_MASK) == RSMP_LIN)){
127 s->setup = (s->setup & ~RSMP_MASK) | RSMP_LIN;
128 af->data->format = AF_FORMAT_S16_NE;
129 af->data->bps = 2;
130 af_msg(AF_MSG_VERBOSE,"[resample] Using linear interpolation. \n");
132 else{
133 /* If the input format is float or if float is explicitly selected
134 use float, otherwise use int */
135 if((data->format == (AF_FORMAT_FLOAT_NE)) ||
136 ((s->setup & RSMP_MASK) == RSMP_FLOAT)){
137 s->setup = (s->setup & ~RSMP_MASK) | RSMP_FLOAT;
138 af->data->format = AF_FORMAT_FLOAT_NE;
139 af->data->bps = 4;
141 else{
142 s->setup = (s->setup & ~RSMP_MASK) | RSMP_INT;
143 af->data->format = AF_FORMAT_S16_NE;
144 af->data->bps = 2;
146 af_msg(AF_MSG_VERBOSE,"[resample] Using %s processing and %s frequecy"
147 " conversion.\n",
148 ((s->setup & RSMP_MASK) == RSMP_FLOAT)?"floating point":"integer",
149 ((s->setup & FREQ_MASK) == FREQ_SLOPPY)?"inexact":"exact");
152 if(af->data->format != data->format || af->data->bps != data->bps)
153 rv = AF_FALSE;
154 data->format = af->data->format;
155 data->bps = af->data->bps;
156 af->data->nch = data->nch;
157 return rv;
160 // Initialization and runtime control
161 static int control(struct af_instance_s* af, int cmd, void* arg)
163 switch(cmd){
164 case AF_CONTROL_REINIT:{
165 af_resample_t* s = (af_resample_t*)af->setup;
166 af_data_t* n = (af_data_t*)arg; // New configureation
167 int i,d = 0;
168 int rv = AF_OK;
170 // Free space for circular bufers
171 if(s->xq){
172 for(i=1;i<af->data->nch;i++)
173 if(s->xq[i])
174 free(s->xq[i]);
175 free(s->xq);
176 s->xq = NULL;
179 if(AF_DETACH == (rv = set_types(af,n)))
180 return AF_DETACH;
182 // If linear interpolation
183 if((s->setup & RSMP_MASK) == RSMP_LIN){
184 s->pt=0LL;
185 s->step=((uint64_t)n->rate<<STEPACCURACY)/(uint64_t)af->data->rate+1LL;
186 af_msg(AF_MSG_DEBUG0,"[resample] Linear interpolation step: 0x%016"PRIX64".\n",
187 s->step);
188 af->mul = (double)af->data->rate / n->rate;
189 return rv;
192 // Calculate up and down sampling factors
193 d=ff_gcd(af->data->rate,n->rate);
195 // If sloppy resampling is enabled limit the upsampling factor
196 if(((s->setup & FREQ_MASK) == FREQ_SLOPPY) && (af->data->rate/d > 5000)){
197 int up=af->data->rate/2;
198 int dn=n->rate/2;
199 int m=2;
200 while(af->data->rate/(d*m) > 5000){
201 d=ff_gcd(up,dn);
202 up/=2; dn/=2; m*=2;
204 d*=m;
207 // Create space for circular bufers
208 s->xq = malloc(n->nch*sizeof(void*));
209 for(i=0;i<n->nch;i++)
210 s->xq[i] = malloc(2*L*af->data->bps);
211 s->xi = 0;
213 // Check if the the design needs to be redone
214 if(s->up != af->data->rate/d || s->dn != n->rate/d){
215 float* w;
216 float* wt;
217 float fc;
218 int j;
219 s->up = af->data->rate/d;
220 s->dn = n->rate/d;
221 s->wi = 0;
222 s->i = 0;
224 // Calculate cuttof frequency for filter
225 fc = 1/(float)(max(s->up,s->dn));
226 // Allocate space for polyphase filter bank and protptype filter
227 w = malloc(sizeof(float) * s->up *L);
228 if(NULL != s->w)
229 free(s->w);
230 s->w = malloc(L*s->up*af->data->bps);
232 // Design prototype filter type using Kaiser window with beta = 10
233 if(NULL == w || NULL == s->w ||
234 -1 == af_filter_design_fir(s->up*L, w, &fc, LP|KAISER , 10.0)){
235 af_msg(AF_MSG_ERROR,"[resample] Unable to design prototype filter.\n");
236 return AF_ERROR;
238 // Copy data from prototype to polyphase filter
239 wt=w;
240 for(j=0;j<L;j++){//Columns
241 for(i=0;i<s->up;i++){//Rows
242 if((s->setup & RSMP_MASK) == RSMP_INT){
243 float t=(float)s->up*32767.0*(*wt);
244 ((int16_t*)s->w)[i*L+j] = (int16_t)((t>=0.0)?(t+0.5):(t-0.5));
246 else
247 ((float*)s->w)[i*L+j] = (float)s->up*(*wt);
248 wt++;
251 free(w);
252 af_msg(AF_MSG_VERBOSE,"[resample] New filter designed up: %i "
253 "down: %i\n", s->up, s->dn);
256 // Set multiplier and delay
257 af->delay = 0; // not set correctly, but shouldn't be too large anyway
258 af->mul = (double)s->up / s->dn;
259 return rv;
261 case AF_CONTROL_COMMAND_LINE:{
262 af_resample_t* s = (af_resample_t*)af->setup;
263 int rate=0;
264 int type=RSMP_INT;
265 int sloppy=1;
266 sscanf((char*)arg,"%i:%i:%i", &rate, &sloppy, &type);
267 s->setup = (sloppy?FREQ_SLOPPY:FREQ_EXACT) |
268 (clamp(type,RSMP_LIN,RSMP_FLOAT));
269 return af->control(af,AF_CONTROL_RESAMPLE_RATE | AF_CONTROL_SET, &rate);
271 case AF_CONTROL_POST_CREATE:
272 if((((af_cfg_t*)arg)->force & AF_INIT_FORMAT_MASK) == AF_INIT_FLOAT)
273 ((af_resample_t*)af->setup)->setup = RSMP_FLOAT;
274 return AF_OK;
275 case AF_CONTROL_RESAMPLE_RATE | AF_CONTROL_SET:
276 // Reinit must be called after this function has been called
278 // Sanity check
279 if(((int*)arg)[0] < 8000 || ((int*)arg)[0] > 192000){
280 af_msg(AF_MSG_ERROR,"[resample] The output sample frequency "
281 "must be between 8kHz and 192kHz. Current value is %i \n",
282 ((int*)arg)[0]);
283 return AF_ERROR;
286 af->data->rate=((int*)arg)[0];
287 af_msg(AF_MSG_VERBOSE,"[resample] Changing sample rate "
288 "to %iHz\n",af->data->rate);
289 return AF_OK;
291 return AF_UNKNOWN;
294 // Deallocate memory
295 static void uninit(struct af_instance_s* af)
297 if(af->data)
298 free(af->data->audio);
299 free(af->data);
302 // Filter data through filter
303 static af_data_t* play(struct af_instance_s* af, af_data_t* data)
305 int len = 0; // Length of output data
306 af_data_t* c = data; // Current working data
307 af_data_t* l = af->data; // Local data
308 af_resample_t* s = (af_resample_t*)af->setup;
310 if(AF_OK != RESIZE_LOCAL_BUFFER(af,data))
311 return NULL;
313 // Run resampling
314 switch(s->setup & RSMP_MASK){
315 case(RSMP_INT):
316 # define FORMAT_I 1
317 if(s->up>s->dn){
318 # define UP
319 # include "af_resample.h"
320 # undef UP
322 else{
323 # define DN
324 # include "af_resample.h"
325 # undef DN
327 break;
328 case(RSMP_FLOAT):
329 # undef FORMAT_I
330 # define FORMAT_F 1
331 if(s->up>s->dn){
332 # define UP
333 # include "af_resample.h"
334 # undef UP
336 else{
337 # define DN
338 # include "af_resample.h"
339 # undef DN
341 break;
342 case(RSMP_LIN):
343 len = linint(c, l, s);
344 break;
347 // Set output data
348 c->audio = l->audio;
349 c->len = len*l->bps;
350 c->rate = l->rate;
352 return c;
355 // Allocate memory and set function pointers
356 static int af_open(af_instance_t* af){
357 af->control=control;
358 af->uninit=uninit;
359 af->play=play;
360 af->mul=1;
361 af->data=calloc(1,sizeof(af_data_t));
362 af->setup=calloc(1,sizeof(af_resample_t));
363 if(af->data == NULL || af->setup == NULL)
364 return AF_ERROR;
365 ((af_resample_t*)af->setup)->setup = RSMP_INT | FREQ_SLOPPY;
366 return AF_OK;
369 // Description of this plugin
370 af_info_t af_info_resample = {
371 "Sample frequency conversion",
372 "resample",
373 "Anders",
375 AF_FLAGS_REENTRANT,
376 af_open