summaryrefslogtreecommitdiffstats
path: root/mixer.h
blob: 92a59ffc92d0dd1a11987f759815295a15659c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#ifndef __MPLAYER_MIXER
#define __MPLAYER_MIXER

extern char * mixer_device;

extern void mixer_getvolume( float *l,float *r );
extern void mixer_setvolume( float l,float r );
extern void mixer_incvolume( void );
extern void mixer_decvolume( void );
extern float mixer_getbothvolume( void );

//extern void mixer_setbothvolume( int v );
#define mixer_setbothvolume( v ) mixer_setvolume( v,v )

#endif