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