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