view mixer.h @ 7593:95c38a7d5240

adds "libdv" to the "input modules" list in "configure", and takes out the note about "for mencoder" since it's actually for both. :) patch by Kees Cook <mplayer@outflux.net>
author arpi
date Fri, 04 Oct 2002 19:22:29 +0000
parents da2dda48b7ec
children 4e8f8efb6906
line wrap: on
line source


#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