Mercurial > mplayer.hg
annotate Gui/cfg.h @ 8604:41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
isn't a good idea, it messes with dvd playback.
Andreas Hess <jaska@gmx.net>
author | arpi |
---|---|
date | Sat, 28 Dec 2002 13:46:55 +0000 |
parents | 54eac4cf587c |
children | a88f827ec563 |
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 |
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
20 #ifdef HAVE_DXR3 |
7706 | 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 | 23 |
8284 | 24 extern int gtkCacheOn; |
25 extern int gtkCacheSize; | |
26 | |
8311 | 27 extern int gtkAutoSyncOn; |
28 extern int gtkAutoSync; | |
29 | |
6770 | 30 extern int gtkSubDumpMPSub; |
31 extern int gtkSubDumpSrt; | |
32 | |
33 extern char * gtkEquChannel1; | |
34 extern char * gtkEquChannel2; | |
35 extern char * gtkEquChannel3; | |
36 extern char * gtkEquChannel4; | |
37 extern char * gtkEquChannel5; | |
38 extern char * gtkEquChannel6; | |
7538 | 39 extern int gtkLoadFullscreen; |
6770 | 40 |
41 extern int cfg_read( void ); | |
42 extern int cfg_write( void ); | |
43 | |
44 #endif |