view mixer.h @ 4334:3fb147d59ca6

Readded the content-type checking, in case of the no HTTP body are sent we can still try with the content-type.
author bertrand
date Thu, 24 Jan 2002 09:29:52 +0000
parents b36fb1ae4b53
children d678ce495a75
line wrap: on
line source


#ifndef __MPLAYER_MIXER
#define __MPLAYER_MIXER

#define DEV_MIXER "/dev/mixer"

extern int    mixer_usemaster;
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