2008-04-22 09:33:39 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_GUI_CFG_H
|
|
|
|
#define MPLAYER_GUI_CFG_H
|
2002-07-23 16:46:51 +00:00
|
|
|
|
|
|
|
extern int gtkEnableAudioEqualizer;
|
|
|
|
|
2006-12-02 17:24:17 +00:00
|
|
|
extern int gtkVfPP;
|
|
|
|
extern int gtkVfLAVC;
|
2002-08-14 23:02:45 +00:00
|
|
|
|
2002-07-23 16:46:51 +00:00
|
|
|
extern int gtkAONorm;
|
|
|
|
extern int gtkAOFakeSurround;
|
|
|
|
extern int gtkAOExtraStereo;
|
|
|
|
extern float gtkAOExtraStereoMul;
|
|
|
|
extern char * gtkAOOSSMixer;
|
2004-07-30 15:58:36 +00:00
|
|
|
extern char * gtkAOOSSMixerChannel;
|
2002-07-23 16:46:51 +00:00
|
|
|
extern char * gtkAOOSSDevice;
|
2004-07-30 15:58:36 +00:00
|
|
|
extern char * gtkAOALSAMixer;
|
|
|
|
extern char * gtkAOALSAMixerChannel;
|
|
|
|
extern char * gtkAOALSADevice;
|
2003-01-02 12:42:32 +00:00
|
|
|
extern char * gtkAOSDLDriver;
|
2005-02-12 16:05:11 +00:00
|
|
|
extern char * gtkAOESDDevice;
|
2002-10-10 14:06:49 +00:00
|
|
|
extern char * gtkDXR3Device;
|
2002-07-23 16:46:51 +00:00
|
|
|
|
2002-11-25 18:18:45 +00:00
|
|
|
extern int gtkCacheOn;
|
|
|
|
extern int gtkCacheSize;
|
|
|
|
|
2002-11-28 23:17:14 +00:00
|
|
|
extern int gtkAutoSyncOn;
|
|
|
|
extern int gtkAutoSync;
|
|
|
|
|
2002-07-23 16:46:51 +00:00
|
|
|
extern int gtkSubDumpMPSub;
|
|
|
|
extern int gtkSubDumpSrt;
|
|
|
|
|
|
|
|
extern char * gtkEquChannel1;
|
|
|
|
extern char * gtkEquChannel2;
|
|
|
|
extern char * gtkEquChannel3;
|
|
|
|
extern char * gtkEquChannel4;
|
|
|
|
extern char * gtkEquChannel5;
|
|
|
|
extern char * gtkEquChannel6;
|
2002-09-28 19:42:10 +00:00
|
|
|
extern int gtkLoadFullscreen;
|
2003-02-01 16:42:02 +00:00
|
|
|
extern int gtkShowVideoWindow;
|
2003-01-17 22:39:43 +00:00
|
|
|
extern int gtkEnablePlayBar;
|
2002-07-23 16:46:51 +00:00
|
|
|
|
2003-03-20 12:42:16 +00:00
|
|
|
extern int gui_save_pos;
|
|
|
|
extern int gui_main_pos_x;
|
|
|
|
extern int gui_main_pos_y;
|
|
|
|
extern int gui_sub_pos_x;
|
|
|
|
extern int gui_sub_pos_y;
|
|
|
|
|
2008-07-30 12:01:30 +00:00
|
|
|
#ifdef CONFIG_ASS
|
2006-10-25 00:05:14 +00:00
|
|
|
typedef struct {
|
|
|
|
int enabled;
|
|
|
|
int use_margins;
|
|
|
|
int top_margin;
|
|
|
|
int bottom_margin;
|
|
|
|
} gtkASS_t;
|
|
|
|
extern gtkASS_t gtkASS;
|
|
|
|
#endif
|
|
|
|
|
2008-12-03 23:01:03 +00:00
|
|
|
int cfg_read( void );
|
|
|
|
int cfg_write( void );
|
2002-07-23 16:46:51 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_GUI_CFG_H */
|