Mercurial > mplayer.hg
annotate Gui/cfg.h @ 9690:a9b7b6055563
Added support for IPv6 numeric url like: http://[3ffe:400:100::1]:80/file
Added const for arguments that shouldn't be changed
author | bertrand |
---|---|
date | Wed, 26 Mar 2003 11:27:48 +0000 |
parents | bc24dd70c6e2 |
children | eb0d3c1b6c6d |
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; |
17 extern char * gtkAOOSSDevice; | |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
18 #endif |
8714
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
19 #ifdef HAVE_SDL |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
20 extern char * gtkAOSDLDriver; |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
21 #endif |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
22 #ifdef HAVE_DXR3 |
7706 | 23 extern char * gtkDXR3Device; |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
24 #endif |
6770 | 25 |
8284 | 26 extern int gtkCacheOn; |
27 extern int gtkCacheSize; | |
28 | |
8311 | 29 extern int gtkAutoSyncOn; |
30 extern int gtkAutoSync; | |
31 | |
6770 | 32 extern int gtkSubDumpMPSub; |
33 extern int gtkSubDumpSrt; | |
34 | |
35 extern char * gtkEquChannel1; | |
36 extern char * gtkEquChannel2; | |
37 extern char * gtkEquChannel3; | |
38 extern char * gtkEquChannel4; | |
39 extern char * gtkEquChannel5; | |
40 extern char * gtkEquChannel6; | |
7538 | 41 extern int gtkLoadFullscreen; |
9202 | 42 extern int gtkShowVideoWindow; |
8973 | 43 extern int gtkEnablePlayBar; |
6770 | 44 |
9625 | 45 extern int gui_save_pos; |
46 extern int gui_main_pos_x; | |
47 extern int gui_main_pos_y; | |
48 extern int gui_sub_pos_x; | |
49 extern int gui_sub_pos_y; | |
50 | |
6770 | 51 extern int cfg_read( void ); |
52 extern int cfg_write( void ); | |
53 | |
54 #endif |