Mercurial > mplayer.hg
annotate Gui/cfg.h @ 13327:a614fe71ad74
small fixes
author | diego |
---|---|
date | Sun, 12 Sep 2004 16:42:26 +0000 |
parents | eb0d3c1b6c6d |
children | e2b2ab284a9a |
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 gtkAONorm; |
12 extern int gtkAOFakeSurround; | |
13 extern int gtkAOExtraStereo; | |
14 extern float gtkAOExtraStereoMul; | |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
15 #ifdef USE_OSS_AUDIO |
6770 | 16 extern char * gtkAOOSSMixer; |
12918 | 17 extern char * gtkAOOSSMixerChannel; |
6770 | 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 |
12918 | 20 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X) |
21 extern char * gtkAOALSAMixer; | |
22 extern char * gtkAOALSAMixerChannel; | |
23 extern char * gtkAOALSADevice; | |
24 #endif | |
8714
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
25 #ifdef HAVE_SDL |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
26 extern char * gtkAOSDLDriver; |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
27 #endif |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
28 #ifdef HAVE_DXR3 |
7706 | 29 extern char * gtkDXR3Device; |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
30 #endif |
6770 | 31 |
8284 | 32 extern int gtkCacheOn; |
33 extern int gtkCacheSize; | |
34 | |
8311 | 35 extern int gtkAutoSyncOn; |
36 extern int gtkAutoSync; | |
37 | |
6770 | 38 extern int gtkSubDumpMPSub; |
39 extern int gtkSubDumpSrt; | |
40 | |
41 extern char * gtkEquChannel1; | |
42 extern char * gtkEquChannel2; | |
43 extern char * gtkEquChannel3; | |
44 extern char * gtkEquChannel4; | |
45 extern char * gtkEquChannel5; | |
46 extern char * gtkEquChannel6; | |
7538 | 47 extern int gtkLoadFullscreen; |
9202 | 48 extern int gtkShowVideoWindow; |
8973 | 49 extern int gtkEnablePlayBar; |
6770 | 50 |
9625 | 51 extern int gui_save_pos; |
52 extern int gui_main_pos_x; | |
53 extern int gui_main_pos_y; | |
54 extern int gui_sub_pos_x; | |
55 extern int gui_sub_pos_y; | |
56 | |
6770 | 57 extern int cfg_read( void ); |
58 extern int cfg_write( void ); | |
59 | |
60 #endif |