mp_msg: avoid mangling other output with status line
[mplayer/glamo.git] / libaf / af.c
blobf8dde983e0c252fd46931127d9d65d4e9225ad23
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "config.h"
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include "osdep/strsep.h"
25 #include "af.h"
27 // Static list of filters
28 extern af_info_t af_info_dummy;
29 extern af_info_t af_info_delay;
30 extern af_info_t af_info_channels;
31 extern af_info_t af_info_format;
32 extern af_info_t af_info_resample;
33 extern af_info_t af_info_volume;
34 extern af_info_t af_info_equalizer;
35 extern af_info_t af_info_gate;
36 extern af_info_t af_info_comp;
37 extern af_info_t af_info_pan;
38 extern af_info_t af_info_surround;
39 extern af_info_t af_info_sub;
40 extern af_info_t af_info_export;
41 extern af_info_t af_info_volnorm;
42 extern af_info_t af_info_extrastereo;
43 extern af_info_t af_info_lavcac3enc;
44 extern af_info_t af_info_lavcresample;
45 extern af_info_t af_info_sweep;
46 extern af_info_t af_info_hrtf;
47 extern af_info_t af_info_ladspa;
48 extern af_info_t af_info_center;
49 extern af_info_t af_info_sinesuppress;
50 extern af_info_t af_info_karaoke;
51 extern af_info_t af_info_scaletempo;
52 extern af_info_t af_info_stats;
53 extern af_info_t af_info_bs2b;
55 static af_info_t* filter_list[]={
56 &af_info_dummy,
57 &af_info_delay,
58 &af_info_channels,
59 &af_info_format,
60 &af_info_resample,
61 &af_info_volume,
62 &af_info_equalizer,
63 &af_info_gate,
64 &af_info_comp,
65 &af_info_pan,
66 &af_info_surround,
67 &af_info_sub,
68 #ifdef HAVE_SYS_MMAN_H
69 &af_info_export,
70 #endif
71 &af_info_volnorm,
72 &af_info_extrastereo,
73 #ifdef CONFIG_LIBAVCODEC
74 &af_info_lavcac3enc,
75 &af_info_lavcresample,
76 #endif
77 &af_info_sweep,
78 &af_info_hrtf,
79 #ifdef CONFIG_LADSPA
80 &af_info_ladspa,
81 #endif
82 &af_info_center,
83 &af_info_sinesuppress,
84 &af_info_karaoke,
85 &af_info_scaletempo,
86 &af_info_stats,
87 #ifdef CONFIG_LIBBS2B
88 &af_info_bs2b,
89 #endif
90 NULL
93 // CPU speed
94 int* af_cpu_speed = NULL;
96 /* Find a filter in the static list of filters using it's name. This
97 function is used internally */
98 static af_info_t* af_find(char*name)
100 int i=0;
101 while(filter_list[i]){
102 if(!strcmp(filter_list[i]->name,name))
103 return filter_list[i];
104 i++;
106 mp_msg(MSGT_AFILTER, MSGL_ERR, "Couldn't find audio filter '%s'\n",name);
107 return NULL;
110 /* Find filter in the dynamic filter list using it's name This
111 function is used for finding already initialized filters */
112 af_instance_t* af_get(af_stream_t* s, char* name)
114 af_instance_t* af=s->first;
115 // Find the filter
116 while(af != NULL){
117 if(!strcmp(af->info->name,name))
118 return af;
119 af=af->next;
121 return NULL;
124 /*/ Function for creating a new filter of type name. The name may
125 contain the commandline parameters for the filter */
126 static af_instance_t* af_create(af_stream_t* s, const char* name_with_cmd)
128 char* name = strdup(name_with_cmd);
129 char* cmdline = name;
131 // Allocate space for the new filter and reset all pointers
132 af_instance_t* new=malloc(sizeof(af_instance_t));
133 if (!name || !new) {
134 mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Could not allocate memory\n");
135 goto err_out;
137 memset(new,0,sizeof(af_instance_t));
139 // Check for commandline parameters
140 strsep(&cmdline, "=");
142 // Find filter from name
143 if(NULL == (new->info=af_find(name)))
144 goto err_out;
146 /* Make sure that the filter is not already in the list if it is
147 non-reentrant */
148 if(new->info->flags & AF_FLAGS_NOT_REENTRANT){
149 if(af_get(s,name)){
150 mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] There can only be one instance of"
151 " the filter '%s' in each stream\n",name);
152 goto err_out;
156 mp_msg(MSGT_AFILTER, MSGL_V, "[libaf] Adding filter %s \n",name);
158 // Initialize the new filter
159 if(AF_OK == new->info->open(new) &&
160 AF_ERROR < new->control(new,AF_CONTROL_POST_CREATE,&s->cfg)){
161 if(cmdline){
162 if(AF_ERROR>=new->control(new,AF_CONTROL_COMMAND_LINE,cmdline))
163 goto err_out;
165 free(name);
166 return new;
169 err_out:
170 free(new);
171 mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Couldn't create or open audio filter '%s'\n",
172 name);
173 free(name);
174 return NULL;
177 /* Create and insert a new filter of type name before the filter in the
178 argument. This function can be called during runtime, the return
179 value is the new filter */
180 static af_instance_t* af_prepend(af_stream_t* s, af_instance_t* af, char* name)
182 // Create the new filter and make sure it is OK
183 af_instance_t* new=af_create(s,name);
184 if(!new)
185 return NULL;
186 // Update pointers
187 new->next=af;
188 if(af){
189 new->prev=af->prev;
190 af->prev=new;
192 else
193 s->last=new;
194 if(new->prev)
195 new->prev->next=new;
196 else
197 s->first=new;
198 return new;
201 /* Create and insert a new filter of type name after the filter in the
202 argument. This function can be called during runtime, the return
203 value is the new filter */
204 static af_instance_t* af_append(af_stream_t* s, af_instance_t* af, char* name)
206 // Create the new filter and make sure it is OK
207 af_instance_t* new=af_create(s,name);
208 if(!new)
209 return NULL;
210 // Update pointers
211 new->prev=af;
212 if(af){
213 new->next=af->next;
214 af->next=new;
216 else
217 s->first=new;
218 if(new->next)
219 new->next->prev=new;
220 else
221 s->last=new;
222 return new;
225 // Uninit and remove the filter "af"
226 void af_remove(af_stream_t* s, af_instance_t* af)
228 if(!af) return;
230 // Print friendly message
231 mp_msg(MSGT_AFILTER, MSGL_V, "[libaf] Removing filter %s \n",af->info->name);
233 // Notify filter before changing anything
234 af->control(af,AF_CONTROL_PRE_DESTROY,0);
236 // Detach pointers
237 if(af->prev)
238 af->prev->next=af->next;
239 else
240 s->first=af->next;
241 if(af->next)
242 af->next->prev=af->prev;
243 else
244 s->last=af->prev;
246 // Uninitialize af and free memory
247 af->uninit(af);
248 free(af);
251 /* Reinitializes all filters downstream from the filter given in the
252 argument the return value is AF_OK if success and AF_ERROR if
253 failure */
254 static int af_reinit(af_stream_t* s, af_instance_t* af)
257 af_data_t in; // Format of the input to current filter
258 int rv=0; // Return value
260 // Check if there are any filters left in the list
261 if(NULL == af){
262 if(!(af=af_append(s,s->first,"dummy")))
263 return AF_UNKNOWN;
264 else
265 return AF_ERROR;
268 // Check if this is the first filter
269 if(!af->prev)
270 memcpy(&in,&(s->input),sizeof(af_data_t));
271 else
272 memcpy(&in,af->prev->data,sizeof(af_data_t));
273 // Reset just in case...
274 in.audio=NULL;
275 in.len=0;
277 rv = af->control(af,AF_CONTROL_REINIT,&in);
278 switch(rv){
279 case AF_OK:
280 af = af->next;
281 break;
282 case AF_FALSE:{ // Configuration filter is needed
283 // Do auto insertion only if force is not specified
284 if((AF_INIT_TYPE_MASK & s->cfg.force) != AF_INIT_FORCE){
285 af_instance_t* new = NULL;
286 // Insert channels filter
287 if((af->prev?af->prev->data->nch:s->input.nch) != in.nch){
288 // Create channels filter
289 if(NULL == (new = af_prepend(s,af,"channels")))
290 return AF_ERROR;
291 // Set number of output channels
292 if(AF_OK != (rv = new->control(new,AF_CONTROL_CHANNELS,&in.nch)))
293 return rv;
294 // Initialize channels filter
295 if(!new->prev)
296 memcpy(&in,&(s->input),sizeof(af_data_t));
297 else
298 memcpy(&in,new->prev->data,sizeof(af_data_t));
299 if(AF_OK != (rv = new->control(new,AF_CONTROL_REINIT,&in)))
300 return rv;
302 // Insert format filter
303 if((af->prev?af->prev->data->format:s->input.format) != in.format){
304 // Create format filter
305 if(NULL == (new = af_prepend(s,af,"format")))
306 return AF_ERROR;
307 // Set output bits per sample
308 in.format |= af_bits2fmt(in.bps*8);
309 if(AF_OK != (rv = new->control(new,AF_CONTROL_FORMAT_FMT,&in.format)))
310 return rv;
311 // Initialize format filter
312 if(!new->prev)
313 memcpy(&in,&(s->input),sizeof(af_data_t));
314 else
315 memcpy(&in,new->prev->data,sizeof(af_data_t));
316 if(AF_OK != (rv = new->control(new,AF_CONTROL_REINIT,&in)))
317 return rv;
319 if(!new){ // Should _never_ happen
320 mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Unable to correct audio format. "
321 "This error should never uccur, please send bugreport.\n");
322 return AF_ERROR;
324 af=new->next;
326 else {
327 mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Automatic filter insertion disabled "
328 "but formats do not match. Giving up.\n");
329 return AF_ERROR;
331 break;
333 case AF_DETACH:{ // Filter is redundant and wants to be unloaded
334 // Do auto remove only if force is not specified
335 if((AF_INIT_TYPE_MASK & s->cfg.force) != AF_INIT_FORCE){
336 af_instance_t* aft=af->prev;
337 af_remove(s,af);
338 if(aft)
339 af=aft->next;
340 else
341 af=s->first; // Restart configuration
343 break;
345 default:
346 mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Reinitialization did not work, audio"
347 " filter '%s' returned error code %i\n",af->info->name,rv);
348 return AF_ERROR;
350 }while(af);
351 return AF_OK;
354 // Uninit and remove all filters
355 void af_uninit(af_stream_t* s)
357 while(s->first)
358 af_remove(s,s->first);
362 * Extend the filter chain so we get the required output format at the end.
363 * \return AF_ERROR on error, AF_OK if successful.
365 static int fixup_output_format(af_stream_t* s)
367 af_instance_t* af = NULL;
368 // Check number of output channels fix if not OK
369 // If needed always inserted last -> easy to screw up other filters
370 if(s->output.nch && s->last->data->nch!=s->output.nch){
371 if(!strcmp(s->last->info->name,"format"))
372 af = af_prepend(s,s->last,"channels");
373 else
374 af = af_append(s,s->last,"channels");
375 // Init the new filter
376 if(!af || (AF_OK != af->control(af,AF_CONTROL_CHANNELS,&(s->output.nch))))
377 return AF_ERROR;
378 if(AF_OK != af_reinit(s,af))
379 return AF_ERROR;
382 // Check output format fix if not OK
383 if(s->output.format != AF_FORMAT_UNKNOWN &&
384 s->last->data->format != s->output.format){
385 if(strcmp(s->last->info->name,"format"))
386 af = af_append(s,s->last,"format");
387 else
388 af = s->last;
389 // Init the new filter
390 s->output.format |= af_bits2fmt(s->output.bps*8);
391 if(!af || (AF_OK != af->control(af,AF_CONTROL_FORMAT_FMT,&(s->output.format))))
392 return AF_ERROR;
393 if(AF_OK != af_reinit(s,af))
394 return AF_ERROR;
397 // Re init again just in case
398 if(AF_OK != af_reinit(s,s->first))
399 return AF_ERROR;
401 if (s->output.format == AF_FORMAT_UNKNOWN)
402 s->output.format = s->last->data->format;
403 if (!s->output.nch) s->output.nch = s->last->data->nch;
404 if (!s->output.rate) s->output.rate = s->last->data->rate;
405 if((s->last->data->format != s->output.format) ||
406 (s->last->data->nch != s->output.nch) ||
407 (s->last->data->rate != s->output.rate)) {
408 return AF_ERROR;
410 return AF_OK;
413 /* Initialize the stream "s". This function creates a new filter list
414 if necessary according to the values set in input and output. Input
415 and output should contain the format of the current movie and the
416 formate of the preferred output respectively. The function is
417 reentrant i.e. if called with an already initialized stream the
418 stream will be reinitialized.
419 If one of the prefered output parameters is 0 the one that needs
420 no conversion is used (i.e. the output format in the last filter).
421 The return value is 0 if success and -1 if failure */
422 int af_init(af_stream_t* s)
424 int i=0;
426 // Sanity check
427 if(!s) return -1;
429 // Precaution in case caller is misbehaving
430 s->input.audio = s->output.audio = NULL;
431 s->input.len = s->output.len = 0;
433 // Figure out how fast the machine is
434 if(AF_INIT_AUTO == (AF_INIT_TYPE_MASK & s->cfg.force))
435 s->cfg.force = (s->cfg.force & ~AF_INIT_TYPE_MASK) | AF_INIT_TYPE;
437 // Check if this is the first call
438 if(!s->first){
439 // Add all filters in the list (if there are any)
440 if(!s->cfg.list){ // To make automatic format conversion work
441 if(!af_append(s,s->first,"dummy"))
442 return -1;
444 else{
445 while(s->cfg.list[i]){
446 if(!af_append(s,s->last,s->cfg.list[i++]))
447 return -1;
452 // Init filters
453 if(AF_OK != af_reinit(s,s->first))
454 return -1;
456 // make sure the chain is not empty and valid (e.g. because of AF_DETACH)
457 if (!s->first)
458 if (!af_append(s,s->first,"dummy") || AF_OK != af_reinit(s,s->first))
459 return -1;
461 // Check output format
462 if((AF_INIT_TYPE_MASK & s->cfg.force) != AF_INIT_FORCE){
463 af_instance_t* af = NULL; // New filter
464 // Check output frequency if not OK fix with resample
465 if(s->output.rate && s->last->data->rate!=s->output.rate){
466 // try to find a filter that can change samplrate
467 af = af_control_any_rev(s, AF_CONTROL_RESAMPLE_RATE | AF_CONTROL_SET,
468 &(s->output.rate));
469 if (!af) {
470 char *resampler = "resample";
471 #ifdef CONFIG_LIBAVCODEC
472 if ((AF_INIT_TYPE_MASK & s->cfg.force) == AF_INIT_SLOW)
473 resampler = "lavcresample";
474 #endif
475 if((AF_INIT_TYPE_MASK & s->cfg.force) == AF_INIT_SLOW){
476 if(!strcmp(s->first->info->name,"format"))
477 af = af_append(s,s->first,resampler);
478 else
479 af = af_prepend(s,s->first,resampler);
481 else{
482 if(!strcmp(s->last->info->name,"format"))
483 af = af_prepend(s,s->last,resampler);
484 else
485 af = af_append(s,s->last,resampler);
487 // Init the new filter
488 if(!af || (AF_OK != af->control(af,AF_CONTROL_RESAMPLE_RATE | AF_CONTROL_SET,
489 &(s->output.rate))))
490 return -1;
491 // Use lin int if the user wants fast
492 if ((AF_INIT_TYPE_MASK & s->cfg.force) == AF_INIT_FAST) {
493 char args[32];
494 sprintf(args, "%d", s->output.rate);
495 #ifdef CONFIG_LIBAVCODEC
496 if (strcmp(resampler, "lavcresample") == 0)
497 strcat(args, ":1");
498 else
499 #endif
500 strcat(args, ":0:0");
501 af->control(af, AF_CONTROL_COMMAND_LINE, args);
504 if(AF_OK != af_reinit(s,af))
505 return -1;
507 if (AF_OK != fixup_output_format(s)) {
508 // Something is stuffed audio out will not work
509 mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Unable to setup filter system can not"
510 " meet sound-card demands, please send bugreport. \n");
511 af_uninit(s);
512 return -1;
515 return 0;
518 /* Add filter during execution. This function adds the filter "name"
519 to the stream s. The filter will be inserted somewhere nice in the
520 list of filters. The return value is a pointer to the new filter,
521 If the filter couldn't be added the return value is NULL. */
522 af_instance_t* af_add(af_stream_t* s, char* name){
523 af_instance_t* new;
524 // Sanity check
525 if(!s || !s->first || !name)
526 return NULL;
527 // Insert the filter somwhere nice
528 if(!strcmp(s->first->info->name,"format"))
529 new = af_append(s, s->first, name);
530 else
531 new = af_prepend(s, s->first, name);
532 if(!new)
533 return NULL;
535 // Reinitalize the filter list
536 if(AF_OK != af_reinit(s, s->first) ||
537 AF_OK != fixup_output_format(s)){
538 free(new);
539 return NULL;
541 return new;
544 // Filter data chunk through the filters in the list
545 af_data_t* af_play(af_stream_t* s, af_data_t* data)
547 af_instance_t* af=s->first;
548 // Iterate through all filters
550 if (data->len <= 0) break;
551 data=af->play(af,data);
552 af=af->next;
553 }while(af && data);
554 return data;
557 /* Calculate the minimum output buffer size for given input data d
558 * when using the RESIZE_LOCAL_BUFFER macro. The +t+1 part ensures the
559 * value is >= len*mul rounded upwards to whole samples even if the
560 * double 'mul' is inexact. */
561 int af_lencalc(double mul, af_data_t* d)
563 int t = d->bps * d->nch;
564 return d->len * mul + t + 1;
567 // Calculate average ratio of filter output size to input size
568 double af_calc_filter_multiplier(af_stream_t* s)
570 af_instance_t* af=s->first;
571 double mul = 1;
572 // Iterate through all filters and calculate total multiplication factor
574 mul *= af->mul;
575 af=af->next;
576 }while(af);
578 return mul;
581 /* Calculate the total delay [bytes output] caused by the filters */
582 double af_calc_delay(af_stream_t* s)
584 af_instance_t* af=s->first;
585 register double delay = 0.0;
586 // Iterate through all filters
587 while(af){
588 delay += af->delay;
589 delay *= af->mul;
590 af=af->next;
592 return delay;
595 /* Helper function called by the macro with the same name this
596 function should not be called directly */
597 int af_resize_local_buffer(af_instance_t* af, af_data_t* data)
599 // Calculate new length
600 register int len = af_lencalc(af->mul,data);
601 mp_msg(MSGT_AFILTER, MSGL_V, "[libaf] Reallocating memory in module %s, "
602 "old len = %i, new len = %i\n",af->info->name,af->data->len,len);
603 // If there is a buffer free it
604 if(af->data->audio)
605 free(af->data->audio);
606 // Create new buffer and check that it is OK
607 af->data->audio = malloc(len);
608 if(!af->data->audio){
609 mp_msg(MSGT_AFILTER, MSGL_FATAL, "[libaf] Could not allocate memory \n");
610 return AF_ERROR;
612 af->data->len=len;
613 return AF_OK;
616 // documentation in af.h
617 af_instance_t *af_control_any_rev (af_stream_t* s, int cmd, void* arg) {
618 int res = AF_UNKNOWN;
619 af_instance_t* filt = s->last;
620 while (filt) {
621 res = filt->control(filt, cmd, arg);
622 if (res == AF_OK)
623 return filt;
624 filt = filt->prev;
626 return NULL;
629 void af_help (void) {
630 int i = 0;
631 mp_msg(MSGT_AFILTER, MSGL_INFO, "Available audio filters:\n");
632 while (filter_list[i]) {
633 if (filter_list[i]->comment && filter_list[i]->comment[0])
634 mp_msg(MSGT_AFILTER, MSGL_INFO, " %-15s: %s (%s)\n", filter_list[i]->name, filter_list[i]->info, filter_list[i]->comment);
635 else
636 mp_msg(MSGT_AFILTER, MSGL_INFO, " %-15s: %s\n", filter_list[i]->name, filter_list[i]->info);
637 i++;
641 void af_fix_parameters(af_data_t *data)
643 data->bps = af_fmt2bits(data->format)/8;