comparison src/audacious/volumecontrol.h @ 3553:a140fadd741d trunk

software volumecontrol->flow manager API
author William Pitcock <nenolod@atheme.org>
date Tue, 18 Sep 2007 13:13:20 -0500
parents 7a2b667bab4b
children 2eee464379dc
comparison
equal deleted inserted replaced
3552:e840c5086a15 3553:a140fadd741d
18 * Audacious or using our public API to be a derived work. 18 * Audacious or using our public API to be a derived work.
19 */ 19 */
20 20
21 #include <glib.h> 21 #include <glib.h>
22 22
23 #include "flow.h"
24
23 #ifndef __VOLUMECONTROL_H__ 25 #ifndef __VOLUMECONTROL_H__
24 #define __VOLUMECONTROL_H__ 26 #define __VOLUMECONTROL_H__
25 27
26 void volumecontrol_pad_audio(gpointer data, gint length, AFormat fmt, 28 void volumecontrol_pad_audio(gpointer data, gint length, AFormat fmt,
27 gint channels); 29 gint channels);
28 void volumecontrol_get_volume_state(gint *l, gint *r); 30 void volumecontrol_get_volume_state(gint *l, gint *r);
29 void volumecontrol_set_volume_state(gint l, gint r); 31 void volumecontrol_set_volume_state(gint l, gint r);
32 void volumecontrol_flow(FlowContext *context);
30 33
31 #endif 34 #endif