Mercurial > mplayer.hg
annotate libaf/af.c @ 14224:80763b21ea57
support for Real codecs on OS X
author | diego |
---|---|
date | Thu, 23 Dec 2004 13:44:50 +0000 |
parents | 5b5ebf93ec16 |
children | e607c3796e2b |
rev | line source |
---|---|
7568 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
5 #ifdef HAVE_MALLOC_H | |
6 #include <malloc.h> | |
7 #endif | |
8 | |
9 #include "af.h" | |
10908 | 10 #include "../config.h" |
7568 | 11 |
12 // Static list of filters | |
13 extern af_info_t af_info_dummy; | |
14 extern af_info_t af_info_delay; | |
15 extern af_info_t af_info_channels; | |
16 extern af_info_t af_info_format; | |
17 extern af_info_t af_info_resample; | |
7974
db1f16543379
enable volume filter and fix nonsense default volume (still not usable
rfelker
parents:
7745
diff
changeset
|
18 extern af_info_t af_info_volume; |
8073 | 19 extern af_info_t af_info_equalizer; |
8607 | 20 extern af_info_t af_info_gate; |
21 extern af_info_t af_info_comp; | |
22 extern af_info_t af_info_pan; | |
8678 | 23 extern af_info_t af_info_surround; |
8832
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8711
diff
changeset
|
24 extern af_info_t af_info_sub; |
10892
2167ac4c1d72
Adding filter for exporting audio data to visual effect applications
anders
parents:
8969
diff
changeset
|
25 extern af_info_t af_info_export; |
13550
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
13269
diff
changeset
|
26 extern af_info_t af_info_volnorm; |
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
13269
diff
changeset
|
27 extern af_info_t af_info_extrastereo; |
13713 | 28 extern af_info_t af_info_lavcresample; |
13721 | 29 extern af_info_t af_info_sweep; |
13996 | 30 extern af_info_t af_info_hrtf; |
14217
5b5ebf93ec16
Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins.
ivo
parents:
13996
diff
changeset
|
31 extern af_info_t af_info_ladspa; |
7568 | 32 |
10908 | 33 static af_info_t* filter_list[]={ |
34 &af_info_dummy, | |
35 &af_info_delay, | |
36 &af_info_channels, | |
37 &af_info_format, | |
38 &af_info_resample, | |
39 &af_info_volume, | |
40 &af_info_equalizer, | |
41 &af_info_gate, | |
42 &af_info_comp, | |
43 &af_info_pan, | |
44 &af_info_surround, | |
45 &af_info_sub, | |
46 #ifdef HAVE_SYS_MMAN_H | |
47 &af_info_export, | |
48 #endif | |
13550
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
13269
diff
changeset
|
49 &af_info_volnorm, |
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
13269
diff
changeset
|
50 &af_info_extrastereo, |
13713 | 51 #ifdef USE_LIBAVCODEC |
52 &af_info_lavcresample, | |
53 #endif | |
13721 | 54 &af_info_sweep, |
13996 | 55 &af_info_hrtf, |
14217
5b5ebf93ec16
Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins.
ivo
parents:
13996
diff
changeset
|
56 #ifdef HAVE_LADSPA |
5b5ebf93ec16
Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins.
ivo
parents:
13996
diff
changeset
|
57 &af_info_ladspa, |
5b5ebf93ec16
Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins.
ivo
parents:
13996
diff
changeset
|
58 #endif |
10908 | 59 NULL |
7568 | 60 }; |
61 | |
8167 | 62 // Message printing |
63 af_msg_cfg_t af_msg_cfg={0,NULL,NULL}; | |
64 | |
65 // CPU speed | |
66 int* af_cpu_speed = NULL; | |
67 | |
7568 | 68 /* Find a filter in the static list of filters using it's name. This |
69 function is used internally */ | |
70 af_info_t* af_find(char*name) | |
71 { | |
72 int i=0; | |
73 while(filter_list[i]){ | |
74 if(!strcmp(filter_list[i]->name,name)) | |
75 return filter_list[i]; | |
76 i++; | |
77 } | |
8167 | 78 af_msg(AF_MSG_ERROR,"Couldn't find audio filter '%s'\n",name); |
7568 | 79 return NULL; |
80 } | |
81 | |
7615 | 82 /* Find filter in the dynamic filter list using it's name This |
83 function is used for finding already initialized filters */ | |
84 af_instance_t* af_get(af_stream_t* s, char* name) | |
85 { | |
86 af_instance_t* af=s->first; | |
87 // Find the filter | |
88 while(af != NULL){ | |
89 if(!strcmp(af->info->name,name)) | |
90 return af; | |
91 af=af->next; | |
92 } | |
93 return NULL; | |
94 } | |
95 | |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
96 /*/ Function for creating a new filter of type name. The name may |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
97 contain the commandline parameters for the filter */ |
7615 | 98 af_instance_t* af_create(af_stream_t* s, char* name) |
7568 | 99 { |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
100 char* cmdline = name; |
7998
d48a06d07afb
Adding commandline options for filters and fixing stupid bug in cfg
anders
parents:
7993
diff
changeset
|
101 |
7568 | 102 // Allocate space for the new filter and reset all pointers |
103 af_instance_t* new=malloc(sizeof(af_instance_t)); | |
104 if(!new){ | |
8607 | 105 af_msg(AF_MSG_ERROR,"[libaf] Could not allocate memory\n"); |
7568 | 106 return NULL; |
107 } | |
108 memset(new,0,sizeof(af_instance_t)); | |
109 | |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
110 // Check for commandline parameters |
12668
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
111 strsep(&cmdline, "="); |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
112 |
7568 | 113 // Find filter from name |
7615 | 114 if(NULL == (new->info=af_find(name))) |
115 return NULL; | |
116 | |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
117 /* Make sure that the filter is not already in the list if it is |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
118 non-reentrant */ |
7615 | 119 if(new->info->flags & AF_FLAGS_NOT_REENTRANT){ |
120 if(af_get(s,name)){ | |
8607 | 121 af_msg(AF_MSG_ERROR,"[libaf] There can only be one instance of" |
122 " the filter '%s' in each stream\n",name); | |
7615 | 123 free(new); |
124 return NULL; | |
125 } | |
126 } | |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
127 |
8607 | 128 af_msg(AF_MSG_VERBOSE,"[libaf] Adding filter %s \n",name); |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
129 |
7568 | 130 // Initialize the new filter |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
131 if(AF_OK == new->info->open(new) && |
7993
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
132 AF_ERROR < new->control(new,AF_CONTROL_POST_CREATE,&s->cfg)){ |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
133 if(cmdline){ |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
134 if(AF_ERROR<new->control(new,AF_CONTROL_COMMAND_LINE,cmdline)) |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
135 return new; |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
136 } |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
137 else |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
138 return new; |
ea0680d87f3f
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents:
7974
diff
changeset
|
139 } |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
140 |
7568 | 141 free(new); |
8607 | 142 af_msg(AF_MSG_ERROR,"[libaf] Couldn't create or open audio filter '%s'\n", |
143 name); | |
7568 | 144 return NULL; |
145 } | |
146 | |
147 /* Create and insert a new filter of type name before the filter in the | |
148 argument. This function can be called during runtime, the return | |
149 value is the new filter */ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
150 af_instance_t* af_prepend(af_stream_t* s, af_instance_t* af, char* name) |
7568 | 151 { |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
152 // Create the new filter and make sure it is OK |
7615 | 153 af_instance_t* new=af_create(s,name); |
7568 | 154 if(!new) |
155 return NULL; | |
156 // Update pointers | |
157 new->next=af; | |
158 if(af){ | |
159 new->prev=af->prev; | |
160 af->prev=new; | |
161 } | |
162 else | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
163 s->last=new; |
7568 | 164 if(new->prev) |
165 new->prev->next=new; | |
166 else | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
167 s->first=new; |
7568 | 168 return new; |
169 } | |
170 | |
171 /* Create and insert a new filter of type name after the filter in the | |
172 argument. This function can be called during runtime, the return | |
173 value is the new filter */ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
174 af_instance_t* af_append(af_stream_t* s, af_instance_t* af, char* name) |
7568 | 175 { |
176 // Create the new filter and make sure it is OK | |
7615 | 177 af_instance_t* new=af_create(s,name); |
7568 | 178 if(!new) |
179 return NULL; | |
180 // Update pointers | |
181 new->prev=af; | |
182 if(af){ | |
183 new->next=af->next; | |
184 af->next=new; | |
185 } | |
186 else | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
187 s->first=new; |
7568 | 188 if(new->next) |
189 new->next->prev=new; | |
190 else | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
191 s->last=new; |
7568 | 192 return new; |
193 } | |
194 | |
195 // Uninit and remove the filter "af" | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
196 void af_remove(af_stream_t* s, af_instance_t* af) |
7568 | 197 { |
198 if(!af) return; | |
199 | |
8607 | 200 // Print friendly message |
201 af_msg(AF_MSG_VERBOSE,"[libaf] Removing filter %s \n",af->info->name); | |
202 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
203 // Notify filter before changing anything |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
204 af->control(af,AF_CONTROL_PRE_DESTROY,0); |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
205 |
7568 | 206 // Detach pointers |
207 if(af->prev) | |
208 af->prev->next=af->next; | |
209 else | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
210 s->first=af->next; |
7568 | 211 if(af->next) |
212 af->next->prev=af->prev; | |
213 else | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
214 s->last=af->prev; |
7568 | 215 |
216 // Uninitialize af and free memory | |
217 af->uninit(af); | |
218 free(af); | |
219 } | |
220 | |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
221 /* Reinitializes all filters downstream from the filter given in the |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
222 argument the return value is AF_OK if success and AF_ERROR if |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
223 failure */ |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
224 int af_reinit(af_stream_t* s, af_instance_t* af) |
7568 | 225 { |
226 if(!af) | |
227 return AF_ERROR; | |
228 | |
229 do{ | |
230 af_data_t in; // Format of the input to current filter | |
231 int rv=0; // Return value | |
232 | |
233 // Check if this is the first filter | |
234 if(!af->prev) | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
235 memcpy(&in,&(s->input),sizeof(af_data_t)); |
7568 | 236 else |
237 memcpy(&in,af->prev->data,sizeof(af_data_t)); | |
238 // Reset just in case... | |
239 in.audio=NULL; | |
240 in.len=0; | |
241 | |
242 rv = af->control(af,AF_CONTROL_REINIT,&in); | |
243 switch(rv){ | |
244 case AF_OK: | |
245 break; | |
246 case AF_FALSE:{ // Configuration filter is needed | |
8167 | 247 // Do auto insertion only if force is not specified |
248 if((AF_INIT_TYPE_MASK & s->cfg.force) != AF_INIT_FORCE){ | |
249 af_instance_t* new = NULL; | |
250 // Insert channels filter | |
251 if((af->prev?af->prev->data->nch:s->input.nch) != in.nch){ | |
252 // Create channels filter | |
253 if(NULL == (new = af_prepend(s,af,"channels"))) | |
254 return AF_ERROR; | |
255 // Set number of output channels | |
256 if(AF_OK != (rv = new->control(new,AF_CONTROL_CHANNELS,&in.nch))) | |
257 return rv; | |
258 // Initialize channels filter | |
259 if(!new->prev) | |
260 memcpy(&in,&(s->input),sizeof(af_data_t)); | |
261 else | |
262 memcpy(&in,new->prev->data,sizeof(af_data_t)); | |
263 if(AF_OK != (rv = new->control(new,AF_CONTROL_REINIT,&in))) | |
264 return rv; | |
265 } | |
266 // Insert format filter | |
267 if(((af->prev?af->prev->data->format:s->input.format) != in.format) || | |
268 ((af->prev?af->prev->data->bps:s->input.bps) != in.bps)){ | |
269 // Create format filter | |
270 if(NULL == (new = af_prepend(s,af,"format"))) | |
271 return AF_ERROR; | |
8607 | 272 // Set output bits per sample |
273 if(AF_OK != (rv = new->control(new,AF_CONTROL_FORMAT_BPS,&in.bps)) || | |
274 AF_OK != (rv = new->control(new,AF_CONTROL_FORMAT_FMT,&in.format))) | |
8167 | 275 return rv; |
276 // Initialize format filter | |
277 if(!new->prev) | |
278 memcpy(&in,&(s->input),sizeof(af_data_t)); | |
279 else | |
280 memcpy(&in,new->prev->data,sizeof(af_data_t)); | |
281 if(AF_OK != (rv = new->control(new,AF_CONTROL_REINIT,&in))) | |
282 return rv; | |
283 } | |
8607 | 284 if(!new){ // Should _never_ happen |
285 af_msg(AF_MSG_ERROR,"[libaf] Unable to correct audio format. " | |
286 "This error should never uccur, please send bugreport.\n"); | |
7568 | 287 return AF_ERROR; |
8607 | 288 } |
8167 | 289 af=new; |
7568 | 290 } |
291 break; | |
292 } | |
293 case AF_DETACH:{ // Filter is redundant and wants to be unloaded | |
8167 | 294 // Do auto remove only if force is not specified |
295 if((AF_INIT_TYPE_MASK & s->cfg.force) != AF_INIT_FORCE){ | |
296 af_instance_t* aft=af->prev; | |
297 af_remove(s,af); | |
298 if(aft) | |
299 af=aft; | |
300 else | |
301 af=s->first; // Restart configuration | |
302 } | |
7568 | 303 break; |
304 } | |
305 default: | |
8607 | 306 af_msg(AF_MSG_ERROR,"[libaf] Reinitialization did not work, audio" |
307 " filter '%s' returned error code %i\n",af->info->name,rv); | |
7568 | 308 return AF_ERROR; |
309 } | |
8607 | 310 // Check if there are any filters left in the list |
311 if(NULL == af){ | |
8711
906f7a2dc085
sig 11 fix in reinit and resample + spelling error fixes
anders
parents:
8678
diff
changeset
|
312 if(!(af=af_append(s,s->first,"dummy"))) |
8607 | 313 return -1; |
314 } | |
315 else | |
316 af=af->next; | |
7568 | 317 }while(af); |
318 return AF_OK; | |
319 } | |
320 | |
321 // Uninit and remove all filters | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
322 void af_uninit(af_stream_t* s) |
7568 | 323 { |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
324 while(s->first) |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
325 af_remove(s,s->first); |
7568 | 326 } |
327 | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
328 /* Initialize the stream "s". This function creates a new filter list |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
329 if necessary according to the values set in input and output. Input |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
330 and output should contain the format of the current movie and the |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
331 formate of the preferred output respectively. The function is |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
332 reentrant i.e. if called with an already initialized stream the |
8969
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
333 stream will be reinitialized. If the binary parameter |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
334 "force_output" is set, the output format will be converted to the |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
335 format given in "s", otherwise the output fromat in the last filter |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
336 will be copied "s". The return value is 0 if success and -1 if |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
337 failure */ |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
338 int af_init(af_stream_t* s, int force_output) |
7568 | 339 { |
340 int i=0; | |
341 | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
342 // Sanity check |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
343 if(!s) return -1; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
344 |
7568 | 345 // Precaution in case caller is misbehaving |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
346 s->input.audio = s->output.audio = NULL; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
347 s->input.len = s->output.len = 0; |
7568 | 348 |
349 // Figure out how fast the machine is | |
8167 | 350 if(AF_INIT_AUTO == (AF_INIT_TYPE_MASK & s->cfg.force)) |
351 s->cfg.force = (s->cfg.force & ~AF_INIT_TYPE_MASK) | AF_INIT_TYPE; | |
7568 | 352 |
353 // Check if this is the first call | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
354 if(!s->first){ |
7568 | 355 // Add all filters in the list (if there are any) |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
356 if(!s->cfg.list){ // To make automatic format conversion work |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
357 if(!af_append(s,s->first,"dummy")) |
7568 | 358 return -1; |
359 } | |
360 else{ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
361 while(s->cfg.list[i]){ |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
362 if(!af_append(s,s->last,s->cfg.list[i++])) |
7568 | 363 return -1; |
364 } | |
365 } | |
366 } | |
8607 | 367 |
7568 | 368 // Init filters |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
369 if(AF_OK != af_reinit(s,s->first)) |
7568 | 370 return -1; |
371 | |
8969
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
372 // If force_output isn't set do not compensate for output format |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
373 if(!force_output){ |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
374 memcpy(&s->output, s->last->data, sizeof(af_data_t)); |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
375 return 0; |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
376 } |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8832
diff
changeset
|
377 |
7568 | 378 // Check output format |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
379 if((AF_INIT_TYPE_MASK & s->cfg.force) != AF_INIT_FORCE){ |
7568 | 380 af_instance_t* af = NULL; // New filter |
381 // Check output frequency if not OK fix with resample | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
382 if(s->last->data->rate!=s->output.rate){ |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
383 if(NULL==(af=af_get(s,"resample"))){ |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
384 if((AF_INIT_TYPE_MASK & s->cfg.force) == AF_INIT_SLOW){ |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
385 if(!strcmp(s->first->info->name,"format")) |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
386 af = af_append(s,s->first,"resample"); |
7568 | 387 else |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
388 af = af_prepend(s,s->first,"resample"); |
7568 | 389 } |
390 else{ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
391 if(!strcmp(s->last->info->name,"format")) |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
392 af = af_prepend(s,s->last,"resample"); |
7568 | 393 else |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
394 af = af_append(s,s->last,"resample"); |
7568 | 395 } |
396 } | |
397 // Init the new filter | |
8607 | 398 if(!af || (AF_OK != af->control(af,AF_CONTROL_RESAMPLE_RATE, |
399 &(s->output.rate)))) | |
7568 | 400 return -1; |
11859
b8bee4f4b8bb
if the user wants fast, use fast code! otherwise the user has to put
rfelker
parents:
10908
diff
changeset
|
401 // Use lin int if the user wants fast |
b8bee4f4b8bb
if the user wants fast, use fast code! otherwise the user has to put
rfelker
parents:
10908
diff
changeset
|
402 if ((AF_INIT_TYPE_MASK & s->cfg.force) == AF_INIT_FAST) { |
b8bee4f4b8bb
if the user wants fast, use fast code! otherwise the user has to put
rfelker
parents:
10908
diff
changeset
|
403 char args[32]; |
b8bee4f4b8bb
if the user wants fast, use fast code! otherwise the user has to put
rfelker
parents:
10908
diff
changeset
|
404 sprintf(args, "%d:0:0", s->output.rate); |
b8bee4f4b8bb
if the user wants fast, use fast code! otherwise the user has to put
rfelker
parents:
10908
diff
changeset
|
405 af->control(af, AF_CONTROL_COMMAND_LINE, args); |
b8bee4f4b8bb
if the user wants fast, use fast code! otherwise the user has to put
rfelker
parents:
10908
diff
changeset
|
406 } |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
407 if(AF_OK != af_reinit(s,af)) |
7568 | 408 return -1; |
409 } | |
410 | |
411 // Check number of output channels fix if not OK | |
412 // If needed always inserted last -> easy to screw up other filters | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
413 if(s->last->data->nch!=s->output.nch){ |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
414 if(!strcmp(s->last->info->name,"format")) |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
415 af = af_prepend(s,s->last,"channels"); |
7568 | 416 else |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
417 af = af_append(s,s->last,"channels"); |
7568 | 418 // Init the new filter |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
419 if(!af || (AF_OK != af->control(af,AF_CONTROL_CHANNELS,&(s->output.nch)))) |
7568 | 420 return -1; |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
421 if(AF_OK != af_reinit(s,af)) |
7568 | 422 return -1; |
423 } | |
424 | |
425 // Check output format fix if not OK | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
426 if((s->last->data->format != s->output.format) || |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
427 (s->last->data->bps != s->output.bps)){ |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
428 if(strcmp(s->last->info->name,"format")) |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
429 af = af_append(s,s->last,"format"); |
7568 | 430 else |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
431 af = s->last; |
7568 | 432 // Init the new filter |
8607 | 433 if(!af ||(AF_OK != af->control(af,AF_CONTROL_FORMAT_BPS,&(s->output.bps))) |
434 || (AF_OK != af->control(af,AF_CONTROL_FORMAT_FMT,&(s->output.format)))) | |
7568 | 435 return -1; |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
436 if(AF_OK != af_reinit(s,af)) |
7568 | 437 return -1; |
438 } | |
439 | |
440 // Re init again just in case | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
441 if(AF_OK != af_reinit(s,s->first)) |
7568 | 442 return -1; |
443 | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
444 if((s->last->data->format != s->output.format) || |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
445 (s->last->data->bps != s->output.bps) || |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
446 (s->last->data->nch != s->output.nch) || |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
447 (s->last->data->rate != s->output.rate)) { |
7568 | 448 // Something is stuffed audio out will not work |
8607 | 449 af_msg(AF_MSG_ERROR,"[libaf] Unable to setup filter system can not" |
450 " meet sound-card demands, please send bugreport. \n"); | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
451 af_uninit(s); |
7568 | 452 return -1; |
453 } | |
454 } | |
455 return 0; | |
456 } | |
457 | |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
458 /* Add filter during execution. This function adds the filter "name" |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
459 to the stream s. The filter will be inserted somewhere nice in the |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
460 list of filters. The return value is a pointer to the new filter, |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
461 If the filter couldn't be added the return value is NULL. */ |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
462 af_instance_t* af_add(af_stream_t* s, char* name){ |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
463 af_instance_t* new; |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
464 // Sanity check |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
465 if(!s || !s->first || !name) |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
466 return NULL; |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
467 // Insert the filter somwhere nice |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
468 if(!strcmp(s->first->info->name,"format")) |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
469 new = af_append(s, s->first, name); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
470 else |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
471 new = af_prepend(s, s->first, name); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
472 if(!new) |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
473 return NULL; |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
474 |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
475 // Reinitalize the filter list |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
476 if(AF_OK != af_reinit(s, s->first)){ |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
477 free(new); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
478 return NULL; |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
479 } |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
480 return new; |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
481 } |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7617
diff
changeset
|
482 |
7568 | 483 // Filter data chunk through the filters in the list |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
484 af_data_t* af_play(af_stream_t* s, af_data_t* data) |
7568 | 485 { |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
486 af_instance_t* af=s->first; |
7568 | 487 // Iterate through all filters |
488 do{ | |
489 data=af->play(af,data); | |
490 af=af->next; | |
491 }while(af); | |
492 return data; | |
493 } | |
494 | |
495 /* Helper function used to calculate the exact buffer length needed | |
7589 | 496 when buffers are resized. The returned length is >= than what is |
497 needed */ | |
498 inline int af_lencalc(frac_t mul, af_data_t* d){ | |
499 register int t = d->bps*d->nch; | |
7590 | 500 return t*(((d->len/t)*mul.n)/mul.d + 1); |
7568 | 501 } |
502 | |
503 /* Calculate how long the output from the filters will be given the | |
7589 | 504 input length "len". The calculated length is >= the actual |
505 length. */ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
506 int af_outputlen(af_stream_t* s, int len) |
7568 | 507 { |
7589 | 508 int t = s->input.bps*s->input.nch; |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
509 af_instance_t* af=s->first; |
7589 | 510 register frac_t mul = {1,1}; |
7568 | 511 // Iterate through all filters |
512 do{ | |
513 mul.n *= af->mul.n; | |
514 mul.d *= af->mul.d; | |
515 af=af->next; | |
516 }while(af); | |
7589 | 517 return t * (((len/t)*mul.n + 1)/mul.d); |
7568 | 518 } |
519 | |
520 /* Calculate how long the input to the filters should be to produce a | |
521 certain output length, i.e. the return value of this function is | |
7589 | 522 the input length required to produce the output length "len". The |
523 calculated length is <= the actual length */ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
524 int af_inputlen(af_stream_t* s, int len) |
7568 | 525 { |
7589 | 526 int t = s->input.bps*s->input.nch; |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
527 af_instance_t* af=s->first; |
7589 | 528 register frac_t mul = {1,1}; |
7568 | 529 // Iterate through all filters |
530 do{ | |
7589 | 531 mul.n *= af->mul.n; |
532 mul.d *= af->mul.d; | |
7568 | 533 af=af->next; |
534 }while(af); | |
7589 | 535 return t * (((len/t) * mul.d - 1)/mul.n); |
7568 | 536 } |
537 | |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
538 /* Calculate how long the input IN to the filters should be to produce |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
539 a certain output length OUT but with the following three constraints: |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
540 1. IN <= max_insize, where max_insize is the maximum possible input |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
541 block length |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
542 2. OUT <= max_outsize, where max_outsize is the maximum possible |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
543 output block length |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
544 3. If possible OUT >= len. |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
545 Return -1 in case of error */ |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
546 int af_calc_insize_constrained(af_stream_t* s, int len, |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
547 int max_outsize,int max_insize) |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
548 { |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
549 int t = s->input.bps*s->input.nch; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
550 int in = 0; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
551 int out = 0; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
552 af_instance_t* af=s->first; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
553 register frac_t mul = {1,1}; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
554 // Iterate through all filters and calculate total multiplication factor |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
555 do{ |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
556 mul.n *= af->mul.n; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
557 mul.d *= af->mul.d; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
558 af=af->next; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
559 }while(af); |
8607 | 560 // Sanity check |
561 if(!mul.n || !mul.d) | |
562 return -1; | |
563 | |
7603
c89106306f5a
af_calc_insize_constrained() rounding changes, works better for me this way
arpi
parents:
7599
diff
changeset
|
564 in = t * (((len/t) * mul.d - 1)/mul.n); |
c89106306f5a
af_calc_insize_constrained() rounding changes, works better for me this way
arpi
parents:
7599
diff
changeset
|
565 |
c89106306f5a
af_calc_insize_constrained() rounding changes, works better for me this way
arpi
parents:
7599
diff
changeset
|
566 if(in>max_insize) in=t*(max_insize/t); |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
567 |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
568 // Try to meet constraint nr 3. |
7612 | 569 while((out=t * (((in/t+1)*mul.n - 1)/mul.d)) <= max_outsize && in<=max_insize){ |
7603
c89106306f5a
af_calc_insize_constrained() rounding changes, works better for me this way
arpi
parents:
7599
diff
changeset
|
570 if( (t * (((in/t)*mul.n))/mul.d) >= len) return in; |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
571 in+=t; |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
572 } |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
573 |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
574 // Could no meet constraint nr 3. |
7603
c89106306f5a
af_calc_insize_constrained() rounding changes, works better for me this way
arpi
parents:
7599
diff
changeset
|
575 while(out > max_outsize || in > max_insize){ |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
576 in-=t; |
7603
c89106306f5a
af_calc_insize_constrained() rounding changes, works better for me this way
arpi
parents:
7599
diff
changeset
|
577 if(in<t) return -1; // Input parameters are probably incorrect |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
578 out = t * (((in/t)*mul.n + 1)/mul.d); |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
579 } |
7603
c89106306f5a
af_calc_insize_constrained() rounding changes, works better for me this way
arpi
parents:
7599
diff
changeset
|
580 return in; |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
581 } |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7590
diff
changeset
|
582 |
7665
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
583 /* Calculate the total delay [ms] caused by the filters */ |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
584 double af_calc_delay(af_stream_t* s) |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
585 { |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
586 af_instance_t* af=s->first; |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
587 register double delay = 0.0; |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
588 // Iterate through all filters |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
589 while(af){ |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
590 delay += af->delay; |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
591 af=af->next; |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
592 } |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
593 return delay; |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
594 } |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
595 |
7568 | 596 /* Helper function called by the macro with the same name this |
597 function should not be called directly */ | |
598 inline int af_resize_local_buffer(af_instance_t* af, af_data_t* data) | |
599 { | |
600 // Calculate new length | |
7589 | 601 register int len = af_lencalc(af->mul,data); |
8607 | 602 af_msg(AF_MSG_VERBOSE,"[libaf] Reallocating memory in module %s, " |
603 "old len = %i, new len = %i\n",af->info->name,af->data->len,len); | |
7568 | 604 // If there is a buffer free it |
605 if(af->data->audio) | |
606 free(af->data->audio); | |
607 // Create new buffer and check that it is OK | |
608 af->data->audio = malloc(len); | |
609 if(!af->data->audio){ | |
8607 | 610 af_msg(AF_MSG_FATAL,"[libaf] Could not allocate memory \n"); |
7568 | 611 return AF_ERROR; |
612 } | |
613 af->data->len=len; | |
614 return AF_OK; | |
615 } | |
12668
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
616 |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
617 // send control to all filters, starting with the last until |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
618 // one responds with AF_OK |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
619 int af_control_any_rev (af_stream_t* s, int cmd, void* arg) { |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
620 int res = AF_UNKNOWN; |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
621 af_instance_t* filt = s->last; |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
622 while (filt && res != AF_OK) { |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
623 res = filt->control(filt, cmd, arg); |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
624 filt = filt->prev; |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
625 } |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
626 return (res == AF_OK); |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
627 } |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
11859
diff
changeset
|
628 |
13269
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12668
diff
changeset
|
629 void af_help (void) { |
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12668
diff
changeset
|
630 int i = 0; |
13566
2cfb32a737aa
make af_help conform better to the the afm/vfm/etc equivalents
alex
parents:
13550
diff
changeset
|
631 af_msg(AF_MSG_INFO, "Available audio filters:\n"); |
13269
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12668
diff
changeset
|
632 while (filter_list[i]) { |
13566
2cfb32a737aa
make af_help conform better to the the afm/vfm/etc equivalents
alex
parents:
13550
diff
changeset
|
633 if (filter_list[i]->comment && filter_list[i]->comment[0]) |
2cfb32a737aa
make af_help conform better to the the afm/vfm/etc equivalents
alex
parents:
13550
diff
changeset
|
634 af_msg(AF_MSG_INFO, " %-15s: %s (%s)\n", filter_list[i]->name, filter_list[i]->info, filter_list[i]->comment); |
2cfb32a737aa
make af_help conform better to the the afm/vfm/etc equivalents
alex
parents:
13550
diff
changeset
|
635 else |
2cfb32a737aa
make af_help conform better to the the afm/vfm/etc equivalents
alex
parents:
13550
diff
changeset
|
636 af_msg(AF_MSG_INFO, " %-15s: %s\n", filter_list[i]->name, filter_list[i]->info); |
13269
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12668
diff
changeset
|
637 i++; |
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12668
diff
changeset
|
638 } |
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12668
diff
changeset
|
639 } |
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12668
diff
changeset
|
640 |