09e45913aa1f116a68e85039a8059f93f13d6822
2 * Copyright (C) 2005-2007 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file filter.h filter-related structures and exported symbols from filter_chain.c */
10 * describes one running instance of a chain of filters
17 * the number of channels of the current stream
19 * Set by the decoding filter
21 unsigned int channels
;
25 * current samplerate in Hz
27 * Set by the decoding filter
29 unsigned int samplerate
;
33 * the list containing all filter nodes in this filter chain
35 struct list_head filters
;
39 * the input buffer of the filter chain
41 * This is set to point to the output buffer of the receiving application (the
42 * buffer used to read from stdin for para_filter; the output buffer of the
43 * current receiver for para_audiod)
49 * the output buffer of the filter chain
51 * Points to the output buffer of the last filter in the filter chain
57 * pointer to variable containing the number of bytes loaded in the input buffer
63 * pointer to variable containing the number of bytes loaded in the output buffer
66 /** Non-zero if this filter wont' produce any more output. */
68 /** Pointer to the error variable of the receiving application. */
70 /** Pointer to the eof flag of the writing application. */
72 /** the task associated with the filter chain */
77 * describes one running instance of a filter
83 * a pointer to the corresponding filter struct
85 struct filter
*filter
;
89 * the filter chain this filter node belongs to
91 struct filter_chain
*fc
;
95 * the position of the filter in the corresponding filter chain
97 * all filters that make up the filter chains are organized in a doubly
100 struct list_head node
;
104 * each filter may store any filter-specific information about the particular
105 * instance of the filter here.
115 * the size of the output buffer
121 * the number of bytes currently loaded in \a buf
127 * the list of registered callbacks
129 struct list_head callbacks
;
132 * a pointer to the configuration of this instance
138 * used to manage grab clients
140 * An application using paraslash's filter subsystem may register any number of
141 * callbacks for each filter_node. It is possible to attach a filter callback
142 * while the filter is running. This is used for stream grabbing in
143 * para_audiod: Whenever a client sends the 'grab' command, para_audiod adds a
144 * filter callback to the list of callbacks for the filter node specified in
147 struct filter_callback
{
151 * all callbacks are organized in a doubly linked list
153 struct list_head node
;
159 * May be initialized by the application before registering the callback. This
160 * pointer is not used by the filter subsystem. It is provided for use within
161 * the input/ouput/close callback functions.
169 * In not \p NULL, the filter subsystem calls this function whenever the filter
170 * consumed some or all of its input buffer. A pointer to the buffer of consumed
171 * data, its length and a pointer to the own \a filter_callback structure are passed
172 * to \a input_cb. The input callback is expected to return a negative value on errors.
174 int (*input_cb
)(char *buf
, size_t len
, struct filter_callback
*fc
);
178 * the output callback
180 * If not NULL, this is called whenever the filter produces output. A pointer
181 * to the output data, its length and a pointer to the own \a filter_callback
182 * structure are passed to \a output_cb. Like the input callback, the output
183 * callback is expected to return a negative value on errors.
185 int (*output_cb
)(char *buf
, size_t len
, struct filter_callback
*fc
);
189 * the callback close function
191 * This gets called whenever the input/ouput callback returned an error, or if
192 * the filter chain is going to be destroyed, e.g. because the end of the
193 * stream was encounterd. It is assumed to succeed.
195 void (*close
)(struct filter_callback
*fc
);
199 void close_filters(struct filter_chain
*fc
);
200 void filter_init(struct filter
*all_filters
);
201 int check_filter_arg(char *filter_arg
, void **conf
);
202 void filter_pre_select(__a_unused
struct sched
*s
, struct task
*t
);
205 * the structure associated with a paraslash filter
207 * Paraslash filters are "modules" which are used to transform an audio stream.
208 * struct filter contains pointers to functions that must be supplied by the
209 * filter code in order to be used by the driving application (currently
210 * para_audiod and para_filter).
212 * Note: As several instances of the same filter may be running at the same
213 * time, all these filter functions must be reentrant; no static non-constant
214 * variables may be used.
215 * \sa mp3dec.c, oggdec.c, wav.c, compress.c, filter_node
221 * the name of the filter
227 * pointer to the filter init routine
229 * This function is only called once at startup. It must initialize the
230 * other non-optional function pointers of \a f.
232 void (*init
)(struct filter
*f
);
236 * open one instance of this filter
238 * This should allocate the output buffer of the given filter node and do any
239 * other filter-specific preparations like initializing the private_data member
240 * of \a fn suitably. The open function is assumed to succeed.
242 void (*open
)(struct filter_node
*fn
);
246 * convert (filter) the given data
248 * Pointer to the converting function of the filter. It should convert the
249 * given input buffer \a inbuf which is of length \a len to the previoulsy
250 * reserved output buffer of \a fn. On success, it must return the number of
251 * bytes it consumed from \a inbuf. On errors, a negative number indicating the
252 * kind of the error must be returned.
254 * A zero return value just means that nothing was converted (probably because
255 * the input buffer was too small). This is not interpreted as an error.
257 ssize_t (*convert
)(char *inbuf
, size_t len
, struct filter_node
*fn
);
261 * close one instance of this filter
263 * Free all resources of associated with \a fn that were previously allocated
264 * by the open() function.
266 void (*close
)(struct filter_node
*fn
);
270 * print the help text for this filter and exit
272 * This is optional and it is not necessary to initialize this pointer if
273 * the filter does not have a help text.
275 void (*print_help
)(void);
279 * a pointer to the filter's command line parser
281 * If this optional function pointer is not NULL, any filter options are passed
282 * from the main propgram to this command line parser once at application
283 * startup. The command line parser should check its command line options given
284 * by \a argc and \a argv and abort on errors. On success, it should return a
285 * pointer to the filter-specific configuration data determined by \a argc and
288 void *(*parse_config
)(int argc
, char **argv
);
292 static inline void write_int16_host_endian(char *buf
, int val
)
294 #ifdef WORDS_BIGENDIAN
296 *(buf
+ 1) = val
& 0xff;
299 *(buf
+ 1) = val
>> 8;
305 extern struct filter filters
[];
306 #define DECLARE_EXTERN_FILTER_INIT(name) \
307 extern void name ## _init(struct filter *f)
309 #define FILTER_INIT(filter) { \
311 .init = filter ## _init, \
312 .parse_config = NULL, \
316 /* filters that are always present */
317 DECLARE_EXTERN_FILTER_INIT(wav
);
318 /* wav is always the first filter */
319 #define WAV_FILTER_NUM 0
320 DECLARE_EXTERN_FILTER_INIT(compress
);
322 /* next the optional filters */
324 DECLARE_EXTERN_FILTER_INIT(mp3dec
);
325 #define MP3DEC_FILTER FILTER_INIT(mp3dec)
327 #define MP3DEC_FILTER
331 DECLARE_EXTERN_FILTER_INIT(aacdec
);
332 #define AACDEC_FILTER FILTER_INIT(aacdec)
334 #define AACDEC_FILTER
337 #ifdef HAVE_OGGVORBIS
338 DECLARE_EXTERN_FILTER_INIT(oggdec
);
339 #define OGGDEC_FILTER FILTER_INIT(oggdec)
341 #define OGGDEC_FILTER
345 /** define an array of all available filters */
346 #define DEFINE_FILTER_ARRAY(filters) struct filter filters[] = { \
348 FILTER_INIT(compress) \