Mercurial > mplayer.hg
annotate libaf/af.h @ 14579:aacd81655870
The test to check for working pthreads fails if the system can support
pthreads without any gcc options (for instance, Darwin).
patch by Alexander Strange <astrange at ithinksw dot com>
author | diego |
---|---|
date | Sat, 22 Jan 2005 18:30:23 +0000 |
parents | 95bb94a930a3 |
children | 637fbaa8f56c |
rev | line source |
---|---|
12676 | 1 #ifndef __aop_h__ |
2 #define __aop_h__ | |
3 | |
8167 | 4 #include <stdio.h> |
5 | |
8180
4ba9aed295f2
Fixing segfault bug and addnig support for lrintf() in format conversion
anders
parents:
8167
diff
changeset
|
6 #include "af_mp.h" |
8167 | 7 #include "config.h" |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
8 #include "control.h" |
8167 | 9 #include "af_format.h" |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
10 |
7568 | 11 struct af_instance_s; |
12 | |
13 // Audio data chunk | |
14 typedef struct af_data_s | |
15 { | |
16 void* audio; // data buffer | |
17 int len; // buffer length | |
18 int rate; // sample rate | |
19 int nch; // number of channels | |
20 int format; // format | |
21 int bps; // bytes per sample | |
22 } af_data_t; | |
23 | |
24 // Fraction, used to calculate buffer lengths | |
25 typedef struct frac_s | |
26 { | |
27 int n; // Numerator | |
28 int d; // Denominator | |
29 } frac_t; | |
30 | |
14433
95bb94a930a3
always cancel down fractions (frac_t) to avoid overflows and playback
reimar
parents:
14292
diff
changeset
|
31 int af_gcd(register int a, register int b); |
95bb94a930a3
always cancel down fractions (frac_t) to avoid overflows and playback
reimar
parents:
14292
diff
changeset
|
32 void af_frac_cancel(frac_t *f); |
95bb94a930a3
always cancel down fractions (frac_t) to avoid overflows and playback
reimar
parents:
14292
diff
changeset
|
33 void af_frac_mul(frac_t *out, const frac_t *in); |
95bb94a930a3
always cancel down fractions (frac_t) to avoid overflows and playback
reimar
parents:
14292
diff
changeset
|
34 |
8167 | 35 // Flags used for defining the behavior of an audio filter |
7615 | 36 #define AF_FLAGS_REENTRANT 0x00000000 |
37 #define AF_FLAGS_NOT_REENTRANT 0x00000001 | |
38 | |
7568 | 39 /* Audio filter information not specific for current instance, but for |
40 a specific filter */ | |
41 typedef struct af_info_s | |
42 { | |
43 const char *info; | |
44 const char *name; | |
45 const char *author; | |
46 const char *comment; | |
7615 | 47 const int flags; |
7568 | 48 int (*open)(struct af_instance_s* vf); |
49 } af_info_t; | |
50 | |
51 // Linked list of audio filters | |
52 typedef struct af_instance_s | |
53 { | |
54 af_info_t* info; | |
55 int (*control)(struct af_instance_s* af, int cmd, void* arg); | |
56 void (*uninit)(struct af_instance_s* af); | |
57 af_data_t* (*play)(struct af_instance_s* af, af_data_t* data); | |
58 void* setup; // setup data for this specific instance and filter | |
59 af_data_t* data; // configuration for outgoing data stream | |
60 struct af_instance_s* next; | |
61 struct af_instance_s* prev; | |
7665
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
62 double delay; // Delay caused by the filter [ms] |
7568 | 63 frac_t mul; /* length multiplier: how much does this instance change |
64 the length of the buffer. */ | |
65 }af_instance_t; | |
66 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
67 // Initialization flags |
8167 | 68 extern int* af_cpu_speed; |
69 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
70 #define AF_INIT_AUTO 0x00000000 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
71 #define AF_INIT_SLOW 0x00000001 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
72 #define AF_INIT_FAST 0x00000002 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
73 #define AF_INIT_FORCE 0x00000003 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
74 #define AF_INIT_TYPE_MASK 0x00000003 |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
75 |
8867
558f0b1f45ee
New auto config for volume and resample and added support for float flag in configuration
anders
parents:
8674
diff
changeset
|
76 #define AF_INIT_INT 0x00000000 |
8868
398e3fb7c103
10l bug for float conversion control + feature fix in volume control
anders
parents:
8867
diff
changeset
|
77 #define AF_INIT_FLOAT 0x00000004 |
398e3fb7c103
10l bug for float conversion control + feature fix in volume control
anders
parents:
8867
diff
changeset
|
78 #define AF_INIT_FORMAT_MASK 0x00000004 |
8867
558f0b1f45ee
New auto config for volume and resample and added support for float flag in configuration
anders
parents:
8674
diff
changeset
|
79 |
8167 | 80 // Default init type |
81 #ifndef AF_INIT_TYPE | |
82 #if defined(HAVE_SSE) || defined(HAVE_3DNOW) | |
83 #define AF_INIT_TYPE (af_cpu_speed?*af_cpu_speed:AF_INIT_FAST) | |
84 #else | |
85 #define AF_INIT_TYPE (af_cpu_speed?*af_cpu_speed:AF_INIT_SLOW) | |
86 #endif | |
87 #endif | |
88 | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
89 // Configuration switches |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
90 typedef struct af_cfg_s{ |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
91 int force; // Initialization type |
8167 | 92 char** list; /* list of names of filters that are added to filter |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
93 list during first initialization of stream */ |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
94 }af_cfg_t; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
95 |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
96 // Current audio stream |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
97 typedef struct af_stream_s |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
98 { |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
99 // The first and last filter in the list |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
100 af_instance_t* first; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
101 af_instance_t* last; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
102 // Storage for input and output data formats |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
103 af_data_t input; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
104 af_data_t output; |
8167 | 105 // Configuration for this stream |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
106 af_cfg_t cfg; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
107 }af_stream_t; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
108 |
7568 | 109 /********************************************* |
110 // Return values | |
111 */ | |
112 | |
113 #define AF_DETACH 2 | |
114 #define AF_OK 1 | |
115 #define AF_TRUE 1 | |
116 #define AF_FALSE 0 | |
117 #define AF_UNKNOWN -1 | |
118 #define AF_ERROR -2 | |
8167 | 119 #define AF_FATAL -3 |
7568 | 120 |
121 | |
122 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
123 /********************************************* |
7568 | 124 // Export functions |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
125 */ |
7568 | 126 |
8167 | 127 /* Initialize the stream "s". This function creates a new filter list |
128 if necessary according to the values set in input and output. Input | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
129 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
|
130 formate of the preferred output respectively. The function is |
8969
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8957
diff
changeset
|
131 reentrant i.e. if called with an already initialized stream the |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8957
diff
changeset
|
132 stream will be reinitialized. If the binary parameter |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8957
diff
changeset
|
133 "force_output" is set, the output format will be converted to the |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8957
diff
changeset
|
134 format given in "s", otherwise the output fromat in the last filter |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8957
diff
changeset
|
135 will be copied "s". The return value is 0 if success and -1 if |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8957
diff
changeset
|
136 failure */ |
a892e5f051e1
Adding support for more logical libaf configuration
anders
parents:
8957
diff
changeset
|
137 int af_init(af_stream_t* s, int force_output); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
138 |
7568 | 139 // 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
|
140 void af_uninit(af_stream_t* s); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
141 |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
142 /* Add filter during execution. This function adds the filter "name" |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
143 to the stream s. The filter will be inserted somewhere nice in the |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
144 list of filters. The return value is a pointer to the new filter, |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
145 If the filter couldn't be added the return value is NULL. */ |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
146 af_instance_t* af_add(af_stream_t* s, char* name); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
147 |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
148 // Uninit and remove the filter "af" |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
149 void af_remove(af_stream_t* s, af_instance_t* af); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
150 |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
151 /* Find filter in the dynamic filter list using it's name This |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
152 function is used for finding already initialized filters */ |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
153 af_instance_t* af_get(af_stream_t* s, char* name); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
154 |
7568 | 155 // 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
|
156 af_data_t* af_play(af_stream_t* s, af_data_t* data); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
157 |
12668
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
8969
diff
changeset
|
158 // send control to all filters, starting with the last until |
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
8969
diff
changeset
|
159 // one accepts the command with AF_OK. |
14292
12239a0d5408
Make af_control_any_rev return the matching filter
reimar
parents:
13269
diff
changeset
|
160 // Returns the accepting filter or NULL if none was found. |
12239a0d5408
Make af_control_any_rev return the matching filter
reimar
parents:
13269
diff
changeset
|
161 af_instance_t *af_control_any_rev (af_stream_t* s, int cmd, void* arg); |
12668
ce6ab8cb8597
Send a command throught the filter chain until some item returns AF_OK. Patch by Reimar Doeffinger
alex
parents:
8969
diff
changeset
|
162 |
7568 | 163 /* Calculate how long the output from the filters will be given the |
7589 | 164 input length "len". The calculated length is >= the actual |
165 length */ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
166 int af_outputlen(af_stream_t* s, int len); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
167 |
7568 | 168 /* Calculate how long the input to the filters should be to produce a |
169 certain output length, i.e. the return value of this function is | |
7589 | 170 the input length required to produce the output length "len". The |
171 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
|
172 int af_inputlen(af_stream_t* s, int len); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
173 |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
174 /* Calculate how long the input IN to the filters should be to produce |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
175 a certain output length OUT but with the following three constraints: |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
176 1. IN <= max_insize, where max_insize is the maximum possible input |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
177 block length |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
178 2. OUT <= max_outsize, where max_outsize is the maximum possible |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
179 output block length |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
180 3. If possible OUT >= len. |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
181 Return -1 in case of error */ |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
182 int af_calc_insize_constrained(af_stream_t* s, int len, |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
183 int max_outsize,int max_insize); |
7568 | 184 |
7665
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
185 /* Calculate the total delay caused by the filters */ |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
186 double af_calc_delay(af_stream_t* s); |
7568 | 187 |
188 // Helper functions and macros used inside the audio filters | |
189 | |
190 /* Helper function called by the macro with the same name only to be | |
191 called from inside filters */ | |
192 int af_resize_local_buffer(af_instance_t* af, af_data_t* data); | |
193 | |
194 /* Helper function used to calculate the exact buffer length needed | |
7589 | 195 when buffers are resized. The returned length is >= than what is |
196 needed */ | |
197 int af_lencalc(frac_t mul, af_data_t* data); | |
7568 | 198 |
8607 | 199 /* Helper function used to convert to gain value from dB. Returns |
200 AF_OK if of and AF_ERROR if fail */ | |
201 int af_from_dB(int n, float* in, float* out, float k, float mi, float ma); | |
202 /* Helper function used to convert from gain value to dB. Returns | |
203 AF_OK if of and AF_ERROR if fail */ | |
204 int af_to_dB(int n, float* in, float* out, float k); | |
205 /* Helper function used to convert from ms to sample time*/ | |
8674
93212da0032e
10l memory leak + bug fixes in ms to sample time conversion
anders
parents:
8607
diff
changeset
|
206 int af_from_ms(int n, float* in, int* out, int rate, float mi, float ma); |
8607 | 207 /* Helper function used to convert from sample time to ms */ |
8674
93212da0032e
10l memory leak + bug fixes in ms to sample time conversion
anders
parents:
8607
diff
changeset
|
208 int af_to_ms(int n, int* in, float* out, int rate); |
8607 | 209 /* Helper function for testing the output format */ |
210 int af_test_output(struct af_instance_s* af, af_data_t* out); | |
211 | |
13269
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12676
diff
changeset
|
212 /** Print a list of all available audio filters */ |
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12676
diff
changeset
|
213 void af_help(void); |
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
12676
diff
changeset
|
214 |
7568 | 215 /* Memory reallocation macro: if a local buffer is used (i.e. if the |
216 filter doesn't operate on the incoming buffer this macro must be | |
217 called to ensure the buffer is big enough. */ | |
218 #define RESIZE_LOCAL_BUFFER(a,d)\ | |
7591 | 219 ((a->data->len < af_lencalc(a->mul,d))?af_resize_local_buffer(a,d):AF_OK) |
7568 | 220 |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
221 /* Some other useful macro definitions*/ |
7568 | 222 #ifndef min |
223 #define min(a,b)(((a)>(b))?(b):(a)) | |
224 #endif | |
225 | |
226 #ifndef max | |
227 #define max(a,b)(((a)>(b))?(a):(b)) | |
228 #endif | |
229 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
230 #ifndef clamp |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
231 #define clamp(a,min,max) (((a)>(max))?(max):(((a)<(min))?(min):(a))) |
7568 | 232 #endif |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
233 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
234 #ifndef sign |
8073 | 235 #define sign(a) (((a)>0)?(1):(-1)) |
236 #endif | |
237 | |
8167 | 238 #ifndef lrnd |
239 #define lrnd(a,b) ((b)((a)>=0.0?(a)+0.5:(a)-0.5)) | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
240 #endif |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
241 |
8167 | 242 /* Error messages */ |
243 | |
244 typedef struct af_msg_cfg_s | |
245 { | |
246 int level; /* Message level for debug and error messages max = 2 | |
247 min = -2 default = 0 */ | |
248 FILE* err; // Stream to print error messages to | |
249 FILE* msg; // Stream to print information messages to | |
250 }af_msg_cfg_t; | |
251 | |
252 extern af_msg_cfg_t af_msg_cfg; // Message | |
253 | |
254 #define AF_MSG_FATAL -3 // Fatal error exit immediately | |
255 #define AF_MSG_ERROR -2 // Error return gracefully | |
256 #define AF_MSG_WARN -1 // Print warning but do not exit (can be suppressed) | |
257 #define AF_MSG_INFO 0 // Important information | |
258 #define AF_MSG_VERBOSE 1 // Print this if verbose is enabled | |
259 #define AF_MSG_DEBUG0 2 // Print if very verbose | |
260 #define AF_MSG_DEBUG1 3 // Print if very very verbose | |
261 | |
262 /* Macro for printing error messages */ | |
263 #ifndef af_msg | |
264 #define af_msg(lev, args... ) \ | |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
8868
diff
changeset
|
265 (((lev)<AF_MSG_WARN)?(fprintf(af_msg_cfg.err?af_msg_cfg.err:stderr, ## args )): \ |
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
8868
diff
changeset
|
266 (((lev)<=af_msg_cfg.level)?(fprintf(af_msg_cfg.msg?af_msg_cfg.msg:stdout, ## args )):0)) |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
267 #endif |
8167 | 268 |
269 #endif /* __aop_h__ */ | |
270 | |
271 |