Mercurial > mplayer.hg
view mixer.h @ 12117:e1e5e2124dae
minor changes
rename b -> vb, so 'v' is the vlc, 'b' is simply a series of bytes and 'vb' is the length as vlc + the bytes
encode the fourcc & language code as v instead of vb, this is much simpler in practice, at least in lavf as the fourcc is an int there
author | michael |
---|---|
date | Sun, 04 Apr 2004 22:40:48 +0000 |
parents | 4e8f8efb6906 |
children | 9709ce101949 |
line wrap: on
line source
#ifndef __MPLAYER_MIXER #define __MPLAYER_MIXER extern char * mixer_device; extern char * mixer_channel; 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