Mercurial > mplayer.hg
view mixer.h @ 7787:05e518badc1b
doc fixes part 1 (more will come when i find the time to read the rest)
if anything is not ok, please let me know
documentation.html:
* OGG -> OGG/OGM (both file formats are supported)
* somewhat better wording (no real change of meaning)
* update of the current xf86 version from 4.2.0 to 4.2.1
* mga_vid is not old
* partial sync of the options with the manpage (someone with deeper knwoledge
should check them and finish the sync)
* added 2 links about quoting and correct writing of mails to the mailinglists
formats.html:
* fixing typo interleaved -> non-interleaved (at least i think it's a typo
please someone check it)
* non-interleaved AVIs should be played with -ni
* OGG -> OGG/OGM
author | attila |
---|---|
date | Fri, 18 Oct 2002 17:57:05 +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