mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
e2f2ca1cbb
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13934 b3059339-0415-0410-9bf9-f77b7e298cf2
31 lines
747 B
C
31 lines
747 B
C
#ifndef __MPLAYER_MIXER
|
|
#define __MPLAYER_MIXER
|
|
|
|
#include "libaf/af.h"
|
|
#include "libao2/audio_out.h"
|
|
|
|
extern char * mixer_device;
|
|
extern char * mixer_channel;
|
|
extern int soft_vol;
|
|
extern float soft_vol_max;
|
|
|
|
typedef struct mixer_s {
|
|
ao_functions_t *audio_out;
|
|
af_stream_t *afilter;
|
|
int volstep;
|
|
int muted;
|
|
float last_l, last_r;
|
|
} mixer_t;
|
|
|
|
void mixer_getvolume(mixer_t *mixer, float *l, float *r);
|
|
void mixer_setvolume(mixer_t *mixer, float l, float r);
|
|
void mixer_incvolume(mixer_t *mixer);
|
|
void mixer_decvolume(mixer_t *mixer);
|
|
void mixer_getbothvolume(mixer_t *mixer, float *b);
|
|
void mixer_mute(mixer_t *mixer);
|
|
|
|
//extern void mixer_setbothvolume( int v );
|
|
#define mixer_setbothvolume(m, v) mixer_setvolume(m, v, v)
|
|
|
|
#endif
|