Mercurial > mplayer.hg
annotate libaf/control.h @ 23804:10ac5a193118
Explanation for CPUID flag 'ibs'
author | zuxy |
---|---|
date | Thu, 19 Jul 2007 06:39:38 +0000 |
parents | 63d9b7032bf3 |
children | 8133163bd1dd |
rev | line source |
---|---|
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
1 #ifndef __af_control_h |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
2 #define __af_control_h |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
3 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
4 /********************************************* |
8607 | 5 // Control info struct. |
6 // | |
7 // This struct is the argument in a info call to a filter. | |
8 */ | |
9 | |
10 // Argument types | |
11 #define AF_CONTROL_TYPE_BOOL (0x0<<0) | |
12 #define AF_CONTROL_TYPE_CHAR (0x1<<0) | |
13 #define AF_CONTROL_TYPE_INT (0x2<<0) | |
14 #define AF_CONTROL_TYPE_FLOAT (0x3<<0) | |
15 #define AF_CONTROL_TYPE_STRUCT (0x4<<0) | |
16 #define AF_CONTROL_TYPE_SPECIAL (0x5<<0) // a pointer to a function for example | |
17 #define AF_CONTROL_TYPE_MASK (0x7<<0) | |
18 // Argument geometry | |
19 #define AF_CONTROL_GEOM_SCALAR (0x0<<3) | |
20 #define AF_CONTROL_GEOM_ARRAY (0x1<<3) | |
21 #define AF_CONTROL_GEOM_MATRIX (0x2<<3) | |
22 #define AF_CONTROL_GEOM_MASK (0x3<<3) | |
23 // Argument properties | |
24 #define AF_CONTROL_PROP_READ (0x0<<5) // The argument can be read | |
25 #define AF_CONTROL_PROP_WRITE (0x1<<5) // The argument can be written | |
26 #define AF_CONTROL_PROP_SAVE (0x2<<5) // Can be saved | |
27 #define AF_CONTROL_PROP_RUNTIME (0x4<<5) // Acessable during execution | |
28 #define AF_CONTROL_PROP_CHANNEL (0x8<<5) // Argument is set per channel | |
29 #define AF_CONTROL_PROP_MASK (0xF<<5) | |
30 | |
31 typedef struct af_control_info_s{ | |
32 int def; // Control enumrification | |
33 char* name; // Name of argument | |
34 char* info; // Description of what it does | |
35 int flags; // Flags as defined above | |
36 float max; // Max and min value | |
37 float min; // (only aplicable on float and int) | |
38 int xdim; // 1st dimension | |
39 int ydim; // 2nd dimension (=0 for everything except matrix) | |
40 size_t sz; // Size of argument in bytes | |
41 int ch; // Channel number (for future use) | |
42 void* arg; // Data (for future use) | |
43 }af_control_info_t; | |
44 | |
45 | |
46 /********************************************* | |
47 // Extended control used with arguments that operates on only one | |
48 // channel at the time | |
49 */ | |
50 typedef struct af_control_ext_s{ | |
51 void* arg; // Argument | |
52 int ch; // Chanel number | |
53 }af_control_ext_t; | |
54 | |
55 /********************************************* | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
56 // Control parameters |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
57 */ |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
58 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
59 /* The control system is divided into 3 levels |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
60 mandatory calls - all filters must answer to all of these |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
61 optional calls - are optional |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
62 filter specific calls - applies only to some filters |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
63 */ |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
64 |
8607 | 65 #define AF_CONTROL_MANDATORY 0x10000000 |
66 #define AF_CONTROL_OPTIONAL 0x20000000 | |
67 #define AF_CONTROL_FILTER_SPECIFIC 0x40000000 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
68 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
69 // MANDATORY CALLS |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
70 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
71 /* Reinitialize filter. The optional argument contains the new |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
72 configuration in form of a af_data_t struct. If the filter does not |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
73 support the new format the struct should be changed and AF_FALSE |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
74 should be returned. If the incoming and outgoing data streams are |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
75 identical the filter can return AF_DETACH. This will remove the |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
76 filter. */ |
8607 | 77 #define AF_CONTROL_REINIT 0x00000100 | AF_CONTROL_MANDATORY |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
78 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
79 // OPTIONAL CALLS |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
80 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
81 /* Called just after creation with the af_cfg for the stream in which |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
82 the filter resides as input parameter this call can be used by the |
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:
7745
diff
changeset
|
83 filter to initialize itself */ |
8607 | 84 #define AF_CONTROL_POST_CREATE 0x00000100 | AF_CONTROL_OPTIONAL |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
85 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
86 // Called just before destruction of a filter |
8607 | 87 #define AF_CONTROL_PRE_DESTROY 0x00000200 | AF_CONTROL_OPTIONAL |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
88 |
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:
7745
diff
changeset
|
89 /* Commandline parameters. If there were any 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:
7745
diff
changeset
|
90 for this specific filter, they will be given as a char* in the |
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:
7745
diff
changeset
|
91 argument */ |
8607 | 92 #define AF_CONTROL_COMMAND_LINE 0x00000300 | AF_CONTROL_OPTIONAL |
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:
7745
diff
changeset
|
93 |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
94 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
95 // FILTER SPECIFIC CALLS |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
96 |
8607 | 97 // Basic operations: These can be ored with any of the below calls |
98 // Set argument | |
99 #define AF_CONTROL_SET 0x00000000 | |
100 // Get argument | |
101 #define AF_CONTROL_GET 0x00000001 | |
102 // Get info about the control, i.e fill in everything except argument | |
103 #define AF_CONTROL_INFO 0x00000002 | |
104 | |
105 // Resample | |
106 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
107 // Set output rate in resample |
8607 | 108 #define AF_CONTROL_RESAMPLE_RATE 0x00000100 | AF_CONTROL_FILTER_SPECIFIC |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
109 |
8607 | 110 // Enable sloppy resampling |
111 #define AF_CONTROL_RESAMPLE_SLOPPY 0x00000200 | AF_CONTROL_FILTER_SPECIFIC | |
112 | |
113 // Set resampling accuracy | |
114 #define AF_CONTROL_RESAMPLE_ACCURACY 0x00000300 | AF_CONTROL_FILTER_SPECIFIC | |
115 | |
14335
8380694ba14f
af_bits2fmt and af_str2fmt_short, also removed the extra FORMAT_BPS control in format.c
alex
parents:
13550
diff
changeset
|
116 // Format |
8607 | 117 |
14335
8380694ba14f
af_bits2fmt and af_str2fmt_short, also removed the extra FORMAT_BPS control in format.c
alex
parents:
13550
diff
changeset
|
118 #define AF_CONTROL_FORMAT_FMT 0x00000400 | AF_CONTROL_FILTER_SPECIFIC |
8607 | 119 |
120 // Channels | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
121 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
122 // Set number of output channels in channels |
8607 | 123 #define AF_CONTROL_CHANNELS 0x00000600 | AF_CONTROL_FILTER_SPECIFIC |
124 | |
125 // Set number of channel routes | |
126 #define AF_CONTROL_CHANNELS_ROUTES 0x00000700 | AF_CONTROL_FILTER_SPECIFIC | |
127 | |
128 // Set channel routing pair, arg is int[2] and ch is used | |
129 #define AF_CONTROL_CHANNELS_ROUTING 0x00000800 | AF_CONTROL_FILTER_SPECIFIC | |
130 | |
131 // Set nuber of channel routing pairs, arg is int* | |
132 #define AF_CONTROL_CHANNELS_NR 0x00000900 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
133 |
8607 | 134 // Set make af_channels into a router |
135 #define AF_CONTROL_CHANNELS_ROUTER 0x00000A00 | AF_CONTROL_FILTER_SPECIFIC | |
136 | |
137 // Volume | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
138 |
8607 | 139 // Turn volume control on and off, arg is int* |
140 #define AF_CONTROL_VOLUME_ON_OFF 0x00000B00 | AF_CONTROL_FILTER_SPECIFIC | |
141 | |
142 // Turn soft clipping of the volume on and off, arg is binary | |
143 #define AF_CONTROL_VOLUME_SOFTCLIP 0x00000C00 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
144 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
145 // Set volume level, arg is a float* with the volume for all the channels |
8607 | 146 #define AF_CONTROL_VOLUME_LEVEL 0x00000D00 | AF_CONTROL_FILTER_SPECIFIC |
147 | |
148 // Probed power level for all channels, arg is a float* | |
149 #define AF_CONTROL_VOLUME_PROBE 0x00000E00 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
150 |
8607 | 151 // Maximum probed power level for all channels, arg is a float* |
152 #define AF_CONTROL_VOLUME_PROBE_MAX 0x00000F00 | AF_CONTROL_FILTER_SPECIFIC | |
153 | |
154 // Compressor/expander | |
155 | |
156 // Turn compressor/expander on and off | |
157 #define AF_CONTROL_COMP_ON_OFF 0x00001000 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
158 |
8607 | 159 // Compression/expansion threshold [dB] |
160 #define AF_CONTROL_COMP_THRESH 0x00001100 | AF_CONTROL_FILTER_SPECIFIC | |
161 | |
162 // Compression/expansion attack time [ms] | |
163 #define AF_CONTROL_COMP_ATTACK 0x00001200 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
164 |
8607 | 165 // Compression/expansion release time [ms] |
166 #define AF_CONTROL_COMP_RELEASE 0x00001300 | AF_CONTROL_FILTER_SPECIFIC | |
167 | |
168 // Compression/expansion gain level [dB] | |
169 #define AF_CONTROL_COMP_RATIO 0x00001400 | AF_CONTROL_FILTER_SPECIFIC | |
170 | |
171 // Noise gate | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
172 |
8607 | 173 // Turn noise gate on an off |
174 #define AF_CONTROL_GATE_ON_OFF 0x00001500 | AF_CONTROL_FILTER_SPECIFIC | |
175 | |
176 // Noise gate threshold [dB] | |
177 #define AF_CONTROL_GATE_THRESH 0x00001600 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
178 |
8607 | 179 // Noise gate attack time [ms] |
180 #define AF_CONTROL_GATE_ATTACK 0x00001700 | AF_CONTROL_FILTER_SPECIFIC | |
181 | |
182 // Noise gate release time [ms] | |
183 #define AF_CONTROL_GATE_RELEASE 0x00001800 | AF_CONTROL_FILTER_SPECIFIC | |
184 | |
185 // Noise gate release range level [dB] | |
186 #define AF_CONTROL_GATE_RANGE 0x00001900 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
187 |
8607 | 188 // Pan |
189 | |
190 // Pan levels, arg is a control_ext with a float* | |
191 #define AF_CONTROL_PAN_LEVEL 0x00001A00 | AF_CONTROL_FILTER_SPECIFIC | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
192 |
8607 | 193 // Number of outputs from pan, arg is int* |
194 #define AF_CONTROL_PAN_NOUT 0x00001B00 | AF_CONTROL_FILTER_SPECIFIC | |
195 | |
23551 | 196 // Balance, arg is float*; range -1 (left) to 1 (right), 0 center |
197 #define AF_CONTROL_PAN_BALANCE 0x00002500 | AF_CONTROL_FILTER_SPECIFIC | |
8073 | 198 |
8607 | 199 // Set equalizer gain, arg is a control_ext with a float* |
200 #define AF_CONTROL_EQUALIZER_GAIN 0x00001C00 | AF_CONTROL_FILTER_SPECIFIC | |
201 | |
202 | |
8832
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
203 // Delay length in ms, arg is a control_ext with a float* |
8607 | 204 #define AF_CONTROL_DELAY_LEN 0x00001D00 | AF_CONTROL_FILTER_SPECIFIC |
205 | |
8073 | 206 |
8832
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
207 // Subwoofer |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
208 |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
209 // Channel number which to insert the filtered data, arg in int* |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
210 #define AF_CONTROL_SUB_CH 0x00001E00 | AF_CONTROL_FILTER_SPECIFIC |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
211 |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
212 // Cutoff frequency [Hz] for lowpass filter, arg is float* |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
213 #define AF_CONTROL_SUB_FC 0x00001F00 | AF_CONTROL_FILTER_SPECIFIC |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
214 |
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8607
diff
changeset
|
215 |
10892
2167ac4c1d72
Adding filter for exporting audio data to visual effect applications
anders
parents:
8832
diff
changeset
|
216 // Export |
2167ac4c1d72
Adding filter for exporting audio data to visual effect applications
anders
parents:
8832
diff
changeset
|
217 #define AF_CONTROL_EXPORT_SZ 0x00002000 | AF_CONTROL_FILTER_SPECIFIC |
2167ac4c1d72
Adding filter for exporting audio data to visual effect applications
anders
parents:
8832
diff
changeset
|
218 |
13550
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
10892
diff
changeset
|
219 |
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
10892
diff
changeset
|
220 // ExtraStereo Multiplier |
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
10892
diff
changeset
|
221 #define AF_CONTROL_ES_MUL 0x00002100 | AF_CONTROL_FILTER_SPECIFIC |
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
10892
diff
changeset
|
222 |
14749
ab617c2e24d3
filter for adding a center channel, adding a high pass filter would be nice
alex
parents:
14335
diff
changeset
|
223 |
ab617c2e24d3
filter for adding a center channel, adding a high pass filter would be nice
alex
parents:
14335
diff
changeset
|
224 // Center |
ab617c2e24d3
filter for adding a center channel, adding a high pass filter would be nice
alex
parents:
14335
diff
changeset
|
225 |
ab617c2e24d3
filter for adding a center channel, adding a high pass filter would be nice
alex
parents:
14335
diff
changeset
|
226 // Channel number which to inster the filtered data, arg in int* |
ab617c2e24d3
filter for adding a center channel, adding a high pass filter would be nice
alex
parents:
14335
diff
changeset
|
227 #define AF_CONTROL_CENTER_CH 0x00002200 | AF_CONTROL_FILTER_SPECIFIC |
ab617c2e24d3
filter for adding a center channel, adding a high pass filter would be nice
alex
parents:
14335
diff
changeset
|
228 |
18082
0aa3fef68422
very simple filter which can remove a sine at a specified frequency, usefull to get rid of the 50/60hz noise on ultra crappy equipment
michael
parents:
14749
diff
changeset
|
229 |
18611
1c2f694d5232
Rename sinesupress to sinesuppress, including af_sinesupress.c file rename.
corey
parents:
18082
diff
changeset
|
230 // SineSuppress |
18082
0aa3fef68422
very simple filter which can remove a sine at a specified frequency, usefull to get rid of the 50/60hz noise on ultra crappy equipment
michael
parents:
14749
diff
changeset
|
231 #define AF_CONTROL_SS_FREQ 0x00002300 | AF_CONTROL_FILTER_SPECIFIC |
0aa3fef68422
very simple filter which can remove a sine at a specified frequency, usefull to get rid of the 50/60hz noise on ultra crappy equipment
michael
parents:
14749
diff
changeset
|
232 #define AF_CONTROL_SS_DECAY 0x00002400 | AF_CONTROL_FILTER_SPECIFIC |
0aa3fef68422
very simple filter which can remove a sine at a specified frequency, usefull to get rid of the 50/60hz noise on ultra crappy equipment
michael
parents:
14749
diff
changeset
|
233 |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
diff
changeset
|
234 #endif /*__af_control_h */ |