view mixer.h @ 6245:aee789fa2d07

When compiling mga_vid_test.c, memcpy() is subject to an implicit declaration. The attached patch fixes it. by Tore Anderson <tore@linpro.no>
author jaf
date Fri, 31 May 2002 21:42:15 +0000
parents d678ce495a75
children da2dda48b7ec
line wrap: on
line source


#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