Use double instead of float for pts.
[mplayer/glamo.git] / gui / cfg.h
blob82eb36122aa0f16664fec31b626a8fb2e085cbc4
1 /*
2 * This file is part of MPlayer.
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.
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.
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.
19 #ifndef MPLAYER_GUI_CFG_H
20 #define MPLAYER_GUI_CFG_H
22 #include "config.h"
24 extern int gtkEnableAudioEqualizer;
26 extern int gtkVfPP;
27 extern int gtkVfLAVC;
29 extern int gtkAONorm;
30 extern int gtkAOFakeSurround;
31 extern int gtkAOExtraStereo;
32 extern float gtkAOExtraStereoMul;
33 extern char * gtkAOOSSMixer;
34 extern char * gtkAOOSSMixerChannel;
35 extern char * gtkAOOSSDevice;
36 extern char * gtkAOALSAMixer;
37 extern char * gtkAOALSAMixerChannel;
38 extern char * gtkAOALSADevice;
39 extern char * gtkAOSDLDriver;
40 extern char * gtkAOESDDevice;
41 extern char * gtkDXR3Device;
43 extern int gtkCacheOn;
44 extern int gtkCacheSize;
46 extern int gtkAutoSyncOn;
47 extern int gtkAutoSync;
49 extern int gtkSubDumpMPSub;
50 extern int gtkSubDumpSrt;
52 extern char * gtkEquChannel1;
53 extern char * gtkEquChannel2;
54 extern char * gtkEquChannel3;
55 extern char * gtkEquChannel4;
56 extern char * gtkEquChannel5;
57 extern char * gtkEquChannel6;
58 extern int gtkLoadFullscreen;
59 extern int gtkShowVideoWindow;
60 extern int gtkEnablePlayBar;
62 extern int gui_save_pos;
63 extern int gui_main_pos_x;
64 extern int gui_main_pos_y;
65 extern int gui_sub_pos_x;
66 extern int gui_sub_pos_y;
68 #ifdef CONFIG_ASS
69 typedef struct {
70 int enabled;
71 int use_margins;
72 int top_margin;
73 int bottom_margin;
74 } gtkASS_t;
75 extern gtkASS_t gtkASS;
76 #endif
78 int cfg_read( void );
79 int cfg_write( void );
81 #endif /* MPLAYER_GUI_CFG_H */