Mercurial > mplayer.hg
annotate libaf/af.h @ 8629:c7e11273d195
langauage list at --help fixed
author | arpi |
---|---|
date | Sat, 28 Dec 2002 23:52:22 +0000 |
parents | d6f40a06867b |
children | 93212da0032e |
rev | line source |
---|---|
8167 | 1 #include <stdio.h> |
2 | |
8180
4ba9aed295f2
Fixing segfault bug and addnig support for lrintf() in format conversion
anders
parents:
8167
diff
changeset
|
3 #include "af_mp.h" |
8167 | 4 #include "config.h" |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
5 #include "control.h" |
8167 | 6 #include "af_format.h" |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
7 |
7568 | 8 #ifndef __aop_h__ |
9 #define __aop_h__ | |
10 | |
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 | |
8167 | 31 // Flags used for defining the behavior of an audio filter |
7615 | 32 #define AF_FLAGS_REENTRANT 0x00000000 |
33 #define AF_FLAGS_NOT_REENTRANT 0x00000001 | |
34 | |
7568 | 35 /* Audio filter information not specific for current instance, but for |
36 a specific filter */ | |
37 typedef struct af_info_s | |
38 { | |
39 const char *info; | |
40 const char *name; | |
41 const char *author; | |
42 const char *comment; | |
7615 | 43 const int flags; |
7568 | 44 int (*open)(struct af_instance_s* vf); |
45 } af_info_t; | |
46 | |
47 // Linked list of audio filters | |
48 typedef struct af_instance_s | |
49 { | |
50 af_info_t* info; | |
51 int (*control)(struct af_instance_s* af, int cmd, void* arg); | |
52 void (*uninit)(struct af_instance_s* af); | |
53 af_data_t* (*play)(struct af_instance_s* af, af_data_t* data); | |
54 void* setup; // setup data for this specific instance and filter | |
55 af_data_t* data; // configuration for outgoing data stream | |
56 struct af_instance_s* next; | |
57 struct af_instance_s* prev; | |
7665
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
58 double delay; // Delay caused by the filter [ms] |
7568 | 59 frac_t mul; /* length multiplier: how much does this instance change |
60 the length of the buffer. */ | |
61 }af_instance_t; | |
62 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
63 // Initialization flags |
8167 | 64 extern int* af_cpu_speed; |
65 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
66 #define AF_INIT_AUTO 0x00000000 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
67 #define AF_INIT_SLOW 0x00000001 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
68 #define AF_INIT_FAST 0x00000002 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
69 #define AF_INIT_FORCE 0x00000003 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
70 #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
|
71 |
8167 | 72 // Default init type |
73 #ifndef AF_INIT_TYPE | |
74 #if defined(HAVE_SSE) || defined(HAVE_3DNOW) | |
75 #define AF_INIT_TYPE (af_cpu_speed?*af_cpu_speed:AF_INIT_FAST) | |
76 #else | |
77 #define AF_INIT_TYPE (af_cpu_speed?*af_cpu_speed:AF_INIT_SLOW) | |
78 #endif | |
79 #endif | |
80 | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
81 // Configuration switches |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
82 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
|
83 int force; // Initialization type |
8167 | 84 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
|
85 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
|
86 }af_cfg_t; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
87 |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
88 // Current audio stream |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
89 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
|
90 { |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
91 // 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
|
92 af_instance_t* first; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
93 af_instance_t* last; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
94 // 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
|
95 af_data_t input; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
96 af_data_t output; |
8167 | 97 // 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
|
98 af_cfg_t cfg; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
99 }af_stream_t; |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
100 |
7568 | 101 /********************************************* |
102 // Return values | |
103 */ | |
104 | |
105 #define AF_DETACH 2 | |
106 #define AF_OK 1 | |
107 #define AF_TRUE 1 | |
108 #define AF_FALSE 0 | |
109 #define AF_UNKNOWN -1 | |
110 #define AF_ERROR -2 | |
8167 | 111 #define AF_FATAL -3 |
7568 | 112 |
113 | |
114 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
115 /********************************************* |
7568 | 116 // Export functions |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
117 */ |
7568 | 118 |
8167 | 119 /* Initialize the stream "s". This function creates a new filter list |
120 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
|
121 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
|
122 formate of the preferred output respectively. The function is |
8167 | 123 reentrant i.e. if called wit an already initialized stream the |
124 stream will be reinitialized. The return value is 0 if success and | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
125 -1 if failure */ |
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
126 int af_init(af_stream_t* s); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
127 |
7568 | 128 // 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
|
129 void af_uninit(af_stream_t* s); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
130 |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
131 /* Add filter during execution. This function adds the filter "name" |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
132 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
|
133 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
|
134 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
|
135 af_instance_t* af_add(af_stream_t* s, char* name); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
136 |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
137 // Uninit and remove the filter "af" |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
138 void af_remove(af_stream_t* s, af_instance_t* af); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
139 |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
140 /* 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
|
141 function is used for finding already initialized filters */ |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
142 af_instance_t* af_get(af_stream_t* s, char* name); |
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
143 |
7568 | 144 // 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
|
145 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
|
146 |
7568 | 147 /* Calculate how long the output from the filters will be given the |
7589 | 148 input length "len". The calculated length is >= the actual |
149 length */ | |
7571
8819fdf88b5d
Adding support for multiple audio streams and removing annoying message from resample and format
anders
parents:
7568
diff
changeset
|
150 int af_outputlen(af_stream_t* s, int len); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
151 |
7568 | 152 /* Calculate how long the input to the filters should be to produce a |
153 certain output length, i.e. the return value of this function is | |
7589 | 154 the input length required to produce the output length "len". The |
155 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
|
156 int af_inputlen(af_stream_t* s, int len); |
7649
90e16aa8ae5f
Adding functionality for adding filters during execution
anders
parents:
7615
diff
changeset
|
157 |
7598
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
158 /* 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
|
159 a certain output length OUT but with the following three constraints: |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
160 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
|
161 block length |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
162 2. OUT <= max_outsize, where max_outsize is the maximum possible |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
163 output block length |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
164 3. If possible OUT >= len. |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
165 Return -1 in case of error */ |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
166 int af_calc_insize_constrained(af_stream_t* s, int len, |
48f8c731efb5
Adding function for estimating required buffer length
anders
parents:
7591
diff
changeset
|
167 int max_outsize,int max_insize); |
7568 | 168 |
7665
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
169 /* Calculate the total delay caused by the filters */ |
fbd5445cc853
Adding function for calculating the delay caused by the filters
anders
parents:
7649
diff
changeset
|
170 double af_calc_delay(af_stream_t* s); |
7568 | 171 |
172 // Helper functions and macros used inside the audio filters | |
173 | |
174 /* Helper function called by the macro with the same name only to be | |
175 called from inside filters */ | |
176 int af_resize_local_buffer(af_instance_t* af, af_data_t* data); | |
177 | |
178 /* Helper function used to calculate the exact buffer length needed | |
7589 | 179 when buffers are resized. The returned length is >= than what is |
180 needed */ | |
181 int af_lencalc(frac_t mul, af_data_t* data); | |
7568 | 182 |
8607 | 183 /* Helper function used to convert to gain value from dB. Returns |
184 AF_OK if of and AF_ERROR if fail */ | |
185 int af_from_dB(int n, float* in, float* out, float k, float mi, float ma); | |
186 /* Helper function used to convert from gain value to dB. Returns | |
187 AF_OK if of and AF_ERROR if fail */ | |
188 int af_to_dB(int n, float* in, float* out, float k); | |
189 /* Helper function used to convert from ms to sample time*/ | |
190 int af_from_ms(int n, float* in, float* out, int rate, float mi, float ma); | |
191 /* Helper function used to convert from sample time to ms */ | |
192 int af_to_ms(int n, float* in, float* out, int rate); | |
193 /* Helper function for testing the output format */ | |
194 int af_test_output(struct af_instance_s* af, af_data_t* out); | |
195 | |
7568 | 196 /* Memory reallocation macro: if a local buffer is used (i.e. if the |
197 filter doesn't operate on the incoming buffer this macro must be | |
198 called to ensure the buffer is big enough. */ | |
199 #define RESIZE_LOCAL_BUFFER(a,d)\ | |
7591 | 200 ((a->data->len < af_lencalc(a->mul,d))?af_resize_local_buffer(a,d):AF_OK) |
7568 | 201 |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
202 /* Some other useful macro definitions*/ |
7568 | 203 #ifndef min |
204 #define min(a,b)(((a)>(b))?(b):(a)) | |
205 #endif | |
206 | |
207 #ifndef max | |
208 #define max(a,b)(((a)>(b))?(a):(b)) | |
209 #endif | |
210 | |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
211 #ifndef clamp |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
212 #define clamp(a,min,max) (((a)>(max))?(max):(((a)<(min))?(min):(a))) |
7568 | 213 #endif |
7745
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
214 |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
215 #ifndef sign |
8073 | 216 #define sign(a) (((a)>0)?(1):(-1)) |
217 #endif | |
218 | |
8167 | 219 #ifndef lrnd |
220 #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
|
221 #endif |
1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
anders
parents:
7665
diff
changeset
|
222 |
8167 | 223 /* Error messages */ |
224 | |
225 typedef struct af_msg_cfg_s | |
226 { | |
227 int level; /* Message level for debug and error messages max = 2 | |
228 min = -2 default = 0 */ | |
229 FILE* err; // Stream to print error messages to | |
230 FILE* msg; // Stream to print information messages to | |
231 }af_msg_cfg_t; | |
232 | |
233 extern af_msg_cfg_t af_msg_cfg; // Message | |
234 | |
235 #define AF_MSG_FATAL -3 // Fatal error exit immediately | |
236 #define AF_MSG_ERROR -2 // Error return gracefully | |
237 #define AF_MSG_WARN -1 // Print warning but do not exit (can be suppressed) | |
238 #define AF_MSG_INFO 0 // Important information | |
239 #define AF_MSG_VERBOSE 1 // Print this if verbose is enabled | |
240 #define AF_MSG_DEBUG0 2 // Print if very verbose | |
241 #define AF_MSG_DEBUG1 3 // Print if very very verbose | |
242 | |
243 /* Macro for printing error messages */ | |
244 #ifndef af_msg | |
245 #define af_msg(lev, args... ) \ | |
246 ((lev<AF_MSG_WARN)?(fprintf(af_msg_cfg.err?af_msg_cfg.err:stderr, ## args )): \ | |
247 ((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
|
248 #endif |
8167 | 249 |
250 #endif /* __aop_h__ */ | |
251 | |
252 |