Mercurial > mplayer.hg
annotate mixer.h @ 6030:fab518e0cbb8
sometime source files have other frame rates than for vcd's and svcd's, so
you have to set manually the frame rate with "-vfr".
This patch introduce the option "-vfr".
by Juergen Hammelmann <juergen.hammelmann@gmx.de>
author | jaf |
---|---|
date | Thu, 09 May 2002 10:27:36 +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 |