Mercurial > mplayer.hg
annotate Gui/cfg.h @ 8751:f117a4150786
We now have -ao esd.
author | diego |
---|---|
date | Fri, 03 Jan 2003 22:56:18 +0000 |
parents | a88f827ec563 |
children | 951ffe17a153 |
rev | line source |
---|---|
6770 | 1 |
2 #ifndef __CFG_H | |
3 #define __CFG_H | |
4 | |
5 extern int gtkEnableAudioEqualizer; | |
6 | |
7009 | 7 extern int gtkVopPP; |
8 extern int gtkVopLAVC; | |
9 extern int gtkVopFAME; | |
10 | |
6770 | 11 extern int gtkAONoSound; |
12 extern int gtkAONorm; | |
13 extern int gtkAOFakeSurround; | |
14 extern int gtkAOExtraStereo; | |
15 extern float gtkAOExtraStereoMul; | |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
16 #ifdef USE_OSS_AUDIO |
6770 | 17 extern char * gtkAOOSSMixer; |
18 extern char * gtkAOOSSDevice; | |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
19 #endif |
8714
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
20 #ifdef HAVE_SDL |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
21 extern char * gtkAOSDLDriver; |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
22 #endif |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
23 #ifdef HAVE_DXR3 |
7706 | 24 extern char * gtkDXR3Device; |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
25 #endif |
6770 | 26 |
8284 | 27 extern int gtkCacheOn; |
28 extern int gtkCacheSize; | |
29 | |
8311 | 30 extern int gtkAutoSyncOn; |
31 extern int gtkAutoSync; | |
32 | |
6770 | 33 extern int gtkSubDumpMPSub; |
34 extern int gtkSubDumpSrt; | |
35 | |
36 extern char * gtkEquChannel1; | |
37 extern char * gtkEquChannel2; | |
38 extern char * gtkEquChannel3; | |
39 extern char * gtkEquChannel4; | |
40 extern char * gtkEquChannel5; | |
41 extern char * gtkEquChannel6; | |
7538 | 42 extern int gtkLoadFullscreen; |
6770 | 43 |
44 extern int cfg_read( void ); | |
45 extern int cfg_write( void ); | |
46 | |
47 #endif |