view Gui/mplayer/mixer.c @ 1823:a6c67352ccac

fix some bug.
author pontscho
date Sat, 01 Sep 2001 17:53:07 +0000
parents a04b2f92bd14
children
line wrap: on
line source


#include "play.h"
#include "../../mixer.h"

//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 );

float mixerGetVolume( void )
{
// mplShMem->Volume=(float)mixer_getbothvolume();
 return mplShMem->Volume;
}

void  mixerSetVolume( float v )
{
 mplShMem->Volume=v;
 mixer_setvolume( v,v );
}

void mixerIncVolume( void )
{
// mixer_incvolume();
 mixerGetVolume();
}

void mixerDecVolume( void )
{
// mixer_decvolume();
 mixerGetVolume();
}

void mixerMute( void )
{
}

void mixerSetBalance( float b )
{
//printf("%%%%%% mixerSetBalance(%5.3f)  \n",b);
 mplShMem->Balance=b;
}

float mixerGetBalance( void )
{
 return mplShMem->Balance;
}