mirror of https://github.com/mpv-player/mpv
14 lines
306 B
C
14 lines
306 B
C
|
|
#ifndef _MIXER_H
|
|
#define _MIXER_H
|
|
|
|
extern float mixerGetVolume( void );
|
|
extern void mixerSetVolume( float v );
|
|
extern void mixerIncVolume( void );
|
|
extern void mixerDecVolume( void );
|
|
extern void mixerMute( void );
|
|
extern void mixerSetBalance( float b );
|
|
extern float mixerGetBalance( void );
|
|
|
|
#endif
|