annotate Gui/cfg.h @ 8635:81dbd28ef7c0

these patches let ,,oldstyle'' and freetype subtitle renderers live together happily. if an oldstyle subtitle (font.desc) is found, it will be used. otherwise mplayer will choose subfont.ttf, if freetype was detected during ./configure. (also you can use -font /path/to/font.desc and -font /path/to/foobar.ttf too) patch-set by Wojtek Kaniewski <wojtekka@bydg.pdi.net>
author arpi
date Sun, 29 Dec 2002 14:59:23 +0000
parents 54eac4cf587c
children a88f827ec563
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6770
pontscho
parents:
diff changeset
1
pontscho
parents:
diff changeset
2 #ifndef __CFG_H
pontscho
parents:
diff changeset
3 #define __CFG_H
pontscho
parents:
diff changeset
4
pontscho
parents:
diff changeset
5 extern int gtkEnableAudioEqualizer;
pontscho
parents:
diff changeset
6
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
7 extern int gtkVopPP;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
8 extern int gtkVopLAVC;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
9 extern int gtkVopFAME;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
10
6770
pontscho
parents:
diff changeset
11 extern int gtkAONoSound;
pontscho
parents:
diff changeset
12 extern int gtkAONorm;
pontscho
parents:
diff changeset
13 extern int gtkAOFakeSurround;
pontscho
parents:
diff changeset
14 extern int gtkAOExtraStereo;
pontscho
parents:
diff changeset
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
pontscho
parents:
diff changeset
17 extern char * gtkAOOSSMixer;
pontscho
parents:
diff changeset
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
54eac4cf587c Lots of functions and variables specific to OSS audio are used without
arpi
parents: 8311
diff changeset
20 #ifdef HAVE_DXR3
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7538
diff changeset
21 extern char * gtkDXR3Device;
8600
54eac4cf587c Lots of functions and variables specific to OSS audio are used without
arpi
parents: 8311
diff changeset
22 #endif
6770
pontscho
parents:
diff changeset
23
8284
f7d0ac887455 cache (buzeralas)
pontscho
parents: 8043
diff changeset
24 extern int gtkCacheOn;
f7d0ac887455 cache (buzeralas)
pontscho
parents: 8043
diff changeset
25 extern int gtkCacheSize;
f7d0ac887455 cache (buzeralas)
pontscho
parents: 8043
diff changeset
26
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8284
diff changeset
27 extern int gtkAutoSyncOn;
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8284
diff changeset
28 extern int gtkAutoSync;
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8284
diff changeset
29
6770
pontscho
parents:
diff changeset
30 extern int gtkSubDumpMPSub;
pontscho
parents:
diff changeset
31 extern int gtkSubDumpSrt;
pontscho
parents:
diff changeset
32
pontscho
parents:
diff changeset
33 extern char * gtkEquChannel1;
pontscho
parents:
diff changeset
34 extern char * gtkEquChannel2;
pontscho
parents:
diff changeset
35 extern char * gtkEquChannel3;
pontscho
parents:
diff changeset
36 extern char * gtkEquChannel4;
pontscho
parents:
diff changeset
37 extern char * gtkEquChannel5;
pontscho
parents:
diff changeset
38 extern char * gtkEquChannel6;
7538
c7b61f316edf - add "start in fullscreen" function
pontscho
parents: 7019
diff changeset
39 extern int gtkLoadFullscreen;
6770
pontscho
parents:
diff changeset
40
pontscho
parents:
diff changeset
41 extern int cfg_read( void );
pontscho
parents:
diff changeset
42 extern int cfg_write( void );
pontscho
parents:
diff changeset
43
pontscho
parents:
diff changeset
44 #endif