Mercurial > mplayer.hg
annotate mixer.h @ 5134:83b3dc5132a5
Fixed some bugs with fame, had to disable prebuffering with fame though
as sync drifts off. But fame is alot more stable than avcodec and so far
I've noticed a small quality increase with some videos (not all).
Will have to work some more on the sync stuff... This one should be
stable though..
author | mswitch |
---|---|
date | Sat, 16 Mar 2002 15:49:26 +0000 |
parents | d678ce495a75 |
children | da2dda48b7ec |
rev | line source |
---|---|
441 | 1 |
2 #ifndef __MPLAYER_MIXER | |
3 #define __MPLAYER_MIXER | |
4 | |
5 extern char * mixer_device; | |
6 | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
441
diff
changeset
|
7 extern void mixer_getvolume( float *l,float *r ); |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
441
diff
changeset
|
8 extern void mixer_setvolume( float l,float r ); |
441 | 9 extern void mixer_incvolume( void ); |
10 extern void mixer_decvolume( void ); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
441
diff
changeset
|
11 extern float mixer_getbothvolume( void ); |
441 | 12 |
13 //extern void mixer_setbothvolume( int v ); | |
14 #define mixer_setbothvolume( v ) mixer_setvolume( v,v ) | |
15 | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
441
diff
changeset
|
16 #endif |