sync with en/mplayer.1 rev. 30822
[mplayer.git] / mplayer.h
blob490237b3578f3611bd54255295336591f5cf0f49
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_MPLAYER_H
20 #define MPLAYER_MPLAYER_H
22 extern char* current_module;
24 extern char ** audio_fm_list;
25 extern char ** video_fm_list;
26 extern char ** video_driver_list;
27 extern char ** audio_driver_list;
28 extern char * video_driver;
29 extern char * audio_driver;
30 extern float audio_delay;
32 extern int osd_level;
33 extern unsigned int osd_visible;
35 extern char * font_name;
36 extern char * sub_font_name;
37 extern float font_factor;
38 extern double force_fps;
40 //extern char **sub_name;
41 extern float sub_delay;
42 extern float sub_fps;
43 extern int sub_auto;
45 extern char * filename;
47 extern int stream_cache_size;
48 extern int autosync;
50 extern int frame_dropping;
52 extern int auto_quality;
54 extern int audio_id;
55 extern int video_id;
56 extern int dvdsub_id;
57 extern int vobsub_id;
59 void update_set_of_subtitles(void);
61 #endif /* MPLAYER_MPLAYER_H */