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
|
33265
|
22 #include "m_config.h"
|
|
23
|
|
24 extern m_config_t *gui_conf;
|
|
25
|
33179
|
26 extern int gtkCacheOn;
|
|
27 extern int gtkCacheSize;
|
23077
|
28
|
33249
|
29 extern int gtkVfPP;
|
33179
|
30 extern int gtkVfLAVC;
|
|
31
|
|
32 extern char *gtkDXR3Device;
|
23077
|
33
|
33179
|
34 extern int gtkAutoSyncOn;
|
|
35 extern int gtkAutoSync;
|
23077
|
36
|
33179
|
37 extern int gtkAONorm;
|
|
38 extern int gtkAOSurround;
|
|
39 extern int gtkAOExtraStereo;
|
|
40 extern float gtkAOExtraStereoMul;
|
|
41
|
|
42 extern char *gtkAOALSAMixer;
|
|
43 extern char *gtkAOALSAMixerChannel;
|
|
44 extern char *gtkAOALSADevice;
|
23077
|
45
|
33179
|
46 extern char *gtkAOOSSMixer;
|
|
47 extern char *gtkAOOSSMixerChannel;
|
|
48 extern char *gtkAOOSSDevice;
|
23077
|
49
|
33179
|
50 extern char *gtkAOESDDevice;
|
23077
|
51
|
33179
|
52 extern char *gtkAOSDLDriver;
|
23077
|
53
|
33179
|
54 extern int gtkEnableAudioEqualizer;
|
|
55 extern char *gtkEquChannel1;
|
|
56 extern char *gtkEquChannel2;
|
|
57 extern char *gtkEquChannel3;
|
|
58 extern char *gtkEquChannel4;
|
|
59 extern char *gtkEquChannel5;
|
|
60 extern char *gtkEquChannel6;
|
|
61
|
|
62 extern int gtkSubDumpMPSub;
|
|
63 extern int gtkSubDumpSrt;
|
23077
|
64
|
|
65 typedef struct {
|
|
66 int enabled;
|
|
67 int use_margins;
|
|
68 int top_margin;
|
|
69 int bottom_margin;
|
|
70 } gtkASS_t;
|
33179
|
71
|
23077
|
72 extern gtkASS_t gtkASS;
|
|
73
|
33179
|
74 extern int gtkEnablePlayBar;
|
|
75 extern int gtkLoadFullscreen;
|
|
76 extern int gtkShowVideoWindow;
|
|
77
|
|
78 extern int gui_save_pos;
|
|
79 extern int gui_main_pos_x;
|
|
80 extern int gui_main_pos_y;
|
|
81 extern int gui_sub_pos_x;
|
|
82 extern int gui_sub_pos_y;
|
|
83
|
|
84 int cfg_read(void);
|
|
85 int cfg_write(void);
|
23077
|
86
|
26029
|
87 #endif /* MPLAYER_GUI_CFG_H */
|