mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
08b4af80fa
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6312 b3059339-0415-0410-9bf9-f77b7e298cf2
19 lines
448 B
C
19 lines
448 B
C
|
|
#ifndef __MPLAYER_MIXER
|
|
#define __MPLAYER_MIXER
|
|
|
|
extern char * mixer_device;
|
|
extern int muted;
|
|
|
|
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 );
|
|
void mixer_mute( void );
|
|
|
|
//extern void mixer_setbothvolume( int v );
|
|
#define mixer_setbothvolume( v ) mixer_setvolume( v,v )
|
|
|
|
#endif
|