Mercurial > mplayer.hg
annotate libaf/af_channels.c @ 14001:7032d122c733
The GUI shouldn't handle key events at two places.
author | al |
---|---|
date | Sun, 21 Nov 2004 10:53:27 +0000 |
parents | e7309a3b65f6 |
children | 95bb94a930a3 |
rev | line source |
---|---|
7568 | 1 /* Audio filter that adds and removes channels, according to the |
2 command line parameter channels. It is stupid and can only add | |
3 silence or copy channels not mix or filter. | |
4 */ | |
5 #include <stdio.h> | |
6 #include <stdlib.h> | |
7 #include <string.h> | |
7570 | 8 #include <unistd.h> |
7975 | 9 #include <inttypes.h> |
7568 | 10 |
11 #include "af.h" | |
12 | |
8607 | 13 #define FR 0 |
14 #define TO 1 | |
15 | |
16 typedef struct af_channels_s{ | |
17 int route[AF_NCH][2]; | |
18 int nr; | |
19 int router; | |
20 }af_channels_t; | |
21 | |
7568 | 22 // Local function for copying data |
8711
906f7a2dc085
sig 11 fix in reinit and resample + spelling error fixes
anders
parents:
8607
diff
changeset
|
23 static void copy(void* in, void* out, int ins, int inos,int outs, int outos, int len, int bps) |
7568 | 24 { |
25 switch(bps){ | |
26 case 1:{ | |
27 int8_t* tin = (int8_t*)in; | |
28 int8_t* tout = (int8_t*)out; | |
29 tin += inos; | |
30 tout += outos; | |
31 len = len/ins; | |
32 while(len--){ | |
33 *tout=*tin; | |
34 tin +=ins; | |
35 tout+=outs; | |
36 } | |
37 break; | |
38 } | |
39 case 2:{ | |
40 int16_t* tin = (int16_t*)in; | |
41 int16_t* tout = (int16_t*)out; | |
42 tin += inos; | |
43 tout += outos; | |
44 len = len/(2*ins); | |
45 while(len--){ | |
46 *tout=*tin; | |
47 tin +=ins; | |
48 tout+=outs; | |
49 } | |
50 break; | |
51 } | |
12913 | 52 case 3:{ |
53 int8_t* tin = (int8_t*)in; | |
54 int8_t* tout = (int8_t*)out; | |
55 tin += 3 * inos; | |
56 tout += 3 * outos; | |
57 len = len / ( 3 * ins); | |
58 while (len--) { | |
59 tout[0] = tin[0]; | |
60 tout[1] = tin[1]; | |
61 tout[2] = tin[2]; | |
62 tin += 3 * ins; | |
63 tout += 3 * outs; | |
64 } | |
65 break; | |
66 } | |
7568 | 67 case 4:{ |
68 int32_t* tin = (int32_t*)in; | |
69 int32_t* tout = (int32_t*)out; | |
70 tin += inos; | |
71 tout += outos; | |
72 len = len/(4*ins); | |
73 while(len--){ | |
74 *tout=*tin; | |
75 tin +=ins; | |
76 tout+=outs; | |
77 } | |
78 break; | |
79 } | |
80 case 8:{ | |
81 int64_t* tin = (int64_t*)in; | |
82 int64_t* tout = (int64_t*)out; | |
83 tin += inos; | |
84 tout += outos; | |
85 len = len/(8*ins); | |
86 while(len--){ | |
87 *tout=*tin; | |
88 tin +=ins; | |
89 tout+=outs; | |
90 } | |
91 break; | |
92 } | |
93 default: | |
8607 | 94 af_msg(AF_MSG_ERROR,"[channels] Unsupported number of bytes/sample: %i" |
95 " please report this error on the MPlayer mailing list. \n",bps); | |
7568 | 96 } |
97 } | |
98 | |
8607 | 99 // Make sure the routes are sane |
100 static int check_routes(af_channels_t* s, int nin, int nout) | |
101 { | |
102 int i; | |
103 if((s->nr < 1) || (s->nr > AF_NCH)){ | |
8711
906f7a2dc085
sig 11 fix in reinit and resample + spelling error fixes
anders
parents:
8607
diff
changeset
|
104 af_msg(AF_MSG_ERROR,"[channels] The number of routing pairs must be" |
8607 | 105 " between 1 and %i. Current value is %i\n",AF_NCH,s->nr); |
106 return AF_ERROR; | |
107 } | |
108 | |
109 for(i=0;i<s->nr;i++){ | |
110 if((s->route[i][FR] >= nin) || (s->route[i][TO] >= nout)){ | |
111 af_msg(AF_MSG_ERROR,"[channels] Invalid routing in pair nr. %i.\n", i); | |
112 return AF_ERROR; | |
113 } | |
114 } | |
115 return AF_OK; | |
116 } | |
117 | |
7568 | 118 // Initialization and runtime control |
119 static int control(struct af_instance_s* af, int cmd, void* arg) | |
120 { | |
8607 | 121 af_channels_t* s = af->setup; |
7568 | 122 switch(cmd){ |
123 case AF_CONTROL_REINIT: | |
8607 | 124 |
125 // Set default channel assignment | |
126 if(!s->router){ | |
127 int i; | |
128 // Make sure this filter isn't redundant | |
129 if(af->data->nch == ((af_data_t*)arg)->nch) | |
130 return AF_DETACH; | |
131 | |
132 // If mono: fake stereo | |
133 if(((af_data_t*)arg)->nch == 1){ | |
134 s->nr = min(af->data->nch,2); | |
135 for(i=0;i<s->nr;i++){ | |
136 s->route[i][FR] = 0; | |
137 s->route[i][TO] = i; | |
138 } | |
139 } | |
140 else{ | |
141 s->nr = min(af->data->nch, ((af_data_t*)arg)->nch); | |
142 for(i=0;i<s->nr;i++){ | |
143 s->route[i][FR] = i; | |
144 s->route[i][TO] = i; | |
145 } | |
146 } | |
147 } | |
7568 | 148 |
149 af->data->rate = ((af_data_t*)arg)->rate; | |
150 af->data->format = ((af_data_t*)arg)->format; | |
151 af->data->bps = ((af_data_t*)arg)->bps; | |
152 af->mul.n = af->data->nch; | |
153 af->mul.d = ((af_data_t*)arg)->nch; | |
8607 | 154 return check_routes(s,((af_data_t*)arg)->nch,af->data->nch); |
7998
d48a06d07afb
Adding commandline options for filters and fixing stupid bug in cfg
anders
parents:
7975
diff
changeset
|
155 case AF_CONTROL_COMMAND_LINE:{ |
d48a06d07afb
Adding commandline options for filters and fixing stupid bug in cfg
anders
parents:
7975
diff
changeset
|
156 int nch = 0; |
8607 | 157 int n = 0; |
158 // Check number of channels and number of routing pairs | |
159 sscanf(arg, "%i:%i%n", &nch, &s->nr, &n); | |
160 | |
161 // If router scan commandline for routing pairs | |
162 if(s->nr){ | |
163 char* cp = &((char*)arg)[n]; | |
164 int ch = 0; | |
165 // Sanity check | |
166 if((s->nr < 1) || (s->nr > AF_NCH)){ | |
8711
906f7a2dc085
sig 11 fix in reinit and resample + spelling error fixes
anders
parents:
8607
diff
changeset
|
167 af_msg(AF_MSG_ERROR,"[channels] The number of routing pairs must be" |
8607 | 168 " between 1 and %i. Current value is %i\n",AF_NCH,s->nr); |
169 } | |
170 s->router = 1; | |
171 // Scan for pairs on commandline | |
172 while((*cp == ':') && (ch < s->nr)){ | |
173 sscanf(cp, ":%i:%i%n" ,&s->route[ch][FR], &s->route[ch][TO], &n); | |
8711
906f7a2dc085
sig 11 fix in reinit and resample + spelling error fixes
anders
parents:
8607
diff
changeset
|
174 af_msg(AF_MSG_VERBOSE,"[channels] Routing from channel %i to" |
8607 | 175 " channel %i\n",s->route[ch][FR],s->route[ch][TO]); |
176 cp = &cp[n]; | |
177 ch++; | |
178 } | |
179 } | |
180 | |
181 if(AF_OK != af->control(af,AF_CONTROL_CHANNELS | AF_CONTROL_SET ,&nch)) | |
182 return AF_ERROR; | |
183 return AF_OK; | |
184 } | |
185 case AF_CONTROL_CHANNELS | AF_CONTROL_SET: | |
7568 | 186 // Reinit must be called after this function has been called |
187 | |
188 // Sanity check | |
12008 | 189 if(((int*)arg)[0] <= 0 || ((int*)arg)[0] > AF_NCH){ |
8607 | 190 af_msg(AF_MSG_ERROR,"[channels] The number of output channels must be" |
191 " between 1 and %i. Current value is %i\n",AF_NCH,((int*)arg)[0]); | |
7568 | 192 return AF_ERROR; |
193 } | |
194 | |
195 af->data->nch=((int*)arg)[0]; | |
8607 | 196 if(!s->router) |
197 af_msg(AF_MSG_VERBOSE,"[channels] Changing number of channels" | |
198 " to %i\n",af->data->nch); | |
199 return AF_OK; | |
200 case AF_CONTROL_CHANNELS | AF_CONTROL_GET: | |
201 *(int*)arg = af->data->nch; | |
202 return AF_OK; | |
203 case AF_CONTROL_CHANNELS_ROUTING | AF_CONTROL_SET:{ | |
204 int ch = ((af_control_ext_t*)arg)->ch; | |
205 int* route = ((af_control_ext_t*)arg)->arg; | |
206 s->route[ch][FR] = route[FR]; | |
207 s->route[ch][TO] = route[TO]; | |
208 return AF_OK; | |
209 } | |
210 case AF_CONTROL_CHANNELS_ROUTING | AF_CONTROL_GET:{ | |
211 int ch = ((af_control_ext_t*)arg)->ch; | |
212 int* route = ((af_control_ext_t*)arg)->arg; | |
213 route[FR] = s->route[ch][FR]; | |
214 route[TO] = s->route[ch][TO]; | |
215 return AF_OK; | |
216 } | |
217 case AF_CONTROL_CHANNELS_NR | AF_CONTROL_SET: | |
218 s->nr = *(int*)arg; | |
219 return AF_OK; | |
220 case AF_CONTROL_CHANNELS_NR | AF_CONTROL_GET: | |
221 *(int*)arg = s->nr; | |
222 return AF_OK; | |
223 case AF_CONTROL_CHANNELS_ROUTER | AF_CONTROL_SET: | |
224 s->router = *(int*)arg; | |
225 return AF_OK; | |
226 case AF_CONTROL_CHANNELS_ROUTER | AF_CONTROL_GET: | |
227 *(int*)arg = s->router; | |
7568 | 228 return AF_OK; |
229 } | |
230 return AF_UNKNOWN; | |
231 } | |
232 | |
233 // Deallocate memory | |
234 static void uninit(struct af_instance_s* af) | |
235 { | |
8607 | 236 if(af->setup) |
237 free(af->setup); | |
7568 | 238 if(af->data) |
239 free(af->data); | |
240 } | |
241 | |
242 // Filter data through filter | |
243 static af_data_t* play(struct af_instance_s* af, af_data_t* data) | |
244 { | |
8607 | 245 af_data_t* c = data; // Current working data |
246 af_data_t* l = af->data; // Local data | |
247 af_channels_t* s = af->setup; | |
248 int i; | |
249 | |
7568 | 250 if(AF_OK != RESIZE_LOCAL_BUFFER(af,data)) |
251 return NULL; | |
252 | |
8607 | 253 // Reset unused channels |
254 memset(l->audio,0,(c->len*af->mul.n)/af->mul.d); | |
7568 | 255 |
8607 | 256 if(AF_OK == check_routes(s,c->nch,l->nch)) |
257 for(i=0;i<s->nr;i++) | |
258 copy(c->audio,l->audio,c->nch,s->route[i][FR], | |
259 l->nch,s->route[i][TO],c->len,c->bps); | |
7568 | 260 |
261 // Set output data | |
262 c->audio = l->audio; | |
7590 | 263 c->len = (c->len*af->mul.n)/af->mul.d; |
7568 | 264 c->nch = l->nch; |
265 | |
266 return c; | |
267 } | |
268 | |
269 // Allocate memory and set function pointers | |
270 static int open(af_instance_t* af){ | |
271 af->control=control; | |
272 af->uninit=uninit; | |
273 af->play=play; | |
274 af->mul.n=1; | |
275 af->mul.d=1; | |
276 af->data=calloc(1,sizeof(af_data_t)); | |
8607 | 277 af->setup=calloc(1,sizeof(af_channels_t)); |
278 if((af->data == NULL) || (af->setup == NULL)) | |
7568 | 279 return AF_ERROR; |
280 return AF_OK; | |
281 } | |
282 | |
283 // Description of this filter | |
284 af_info_t af_info_channels = { | |
285 "Insert or remove channels", | |
286 "channels", | |
287 "Anders", | |
288 "", | |
7615 | 289 AF_FLAGS_REENTRANT, |
7568 | 290 open |
291 }; |