mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
ee2ed8567e
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4789 b3059339-0415-0410-9bf9-f77b7e298cf2
17 lines
402 B
C
17 lines
402 B
C
|
|
#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
|