Mercurial > mplayer.hg
annotate gui/cfg.h @ 33242:7bc1d3b00580
Cosmetic: Adjust indent.
author | ib |
---|---|
date | Mon, 25 Apr 2011 12:24:05 +0000 |
parents | 6b403270ab08 |
children | 8fc02babf810 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
26029 | 19 #ifndef MPLAYER_GUI_CFG_H |
20 #define MPLAYER_GUI_CFG_H | |
23077 | 21 |
30162
00c918779261
Add missing config.h #include; remove a redundant one.
diego
parents:
28051
diff
changeset
|
22 #include "config.h" |
00c918779261
Add missing config.h #include; remove a redundant one.
diego
parents:
28051
diff
changeset
|
23 |
33179 | 24 extern int gtkCacheOn; |
25 extern int gtkCacheSize; | |
23077 | 26 |
33179 | 27 extern int gtkVfLAVC; |
28 extern int gtkVfPP; | |
29 | |
30 extern char *gtkDXR3Device; | |
23077 | 31 |
33179 | 32 extern int gtkAutoSyncOn; |
33 extern int gtkAutoSync; | |
23077 | 34 |
33179 | 35 extern int gtkAONorm; |
36 extern int gtkAOSurround; | |
37 extern int gtkAOExtraStereo; | |
38 extern float gtkAOExtraStereoMul; | |
39 | |
40 extern char *gtkAOALSAMixer; | |
41 extern char *gtkAOALSAMixerChannel; | |
42 extern char *gtkAOALSADevice; | |
23077 | 43 |
33179 | 44 extern char *gtkAOOSSMixer; |
45 extern char *gtkAOOSSMixerChannel; | |
46 extern char *gtkAOOSSDevice; | |
23077 | 47 |
33179 | 48 extern char *gtkAOESDDevice; |
23077 | 49 |
33179 | 50 extern char *gtkAOSDLDriver; |
23077 | 51 |
33179 | 52 extern int gtkEnableAudioEqualizer; |
53 extern char *gtkEquChannel1; | |
54 extern char *gtkEquChannel2; | |
55 extern char *gtkEquChannel3; | |
56 extern char *gtkEquChannel4; | |
57 extern char *gtkEquChannel5; | |
58 extern char *gtkEquChannel6; | |
59 | |
60 extern int gtkSubDumpMPSub; | |
61 extern int gtkSubDumpSrt; | |
23077 | 62 |
63 typedef struct { | |
64 int enabled; | |
65 int use_margins; | |
66 int top_margin; | |
67 int bottom_margin; | |
68 } gtkASS_t; | |
33179 | 69 |
23077 | 70 extern gtkASS_t gtkASS; |
71 | |
33179 | 72 extern int gtkEnablePlayBar; |
73 extern int gtkLoadFullscreen; | |
74 extern int gtkShowVideoWindow; | |
75 | |
76 extern int gui_save_pos; | |
77 extern int gui_main_pos_x; | |
78 extern int gui_main_pos_y; | |
79 extern int gui_sub_pos_x; | |
80 extern int gui_sub_pos_y; | |
81 | |
82 int cfg_read(void); | |
83 int cfg_write(void); | |
23077 | 84 |
26029 | 85 #endif /* MPLAYER_GUI_CFG_H */ |