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