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