Update MPlayer sources
[mplayer/kovensky.git] / mplayer.h
bloba31da35e3c30e92fc9fddd97db3b4d7697861946
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 #include "mp_msg.h"
24 extern char* current_module;
26 extern char * dvd_device;
27 extern char * cdrom_device;
29 extern char ** audio_fm_list;
30 extern char ** video_fm_list;
31 extern char ** video_driver_list;
32 extern char ** audio_driver_list;
33 extern char * video_driver;
34 extern char * audio_driver;
35 extern float audio_delay;
37 extern unsigned int osd_visible;
39 extern char * font_name;
40 extern char * sub_font_name;
41 extern float font_factor;
42 extern double force_fps;
44 //extern char **sub_name;
45 extern float sub_delay;
46 extern float sub_fps;
47 extern int sub_auto;
49 extern int stream_cache_size;
50 extern int autosync;
52 extern int frame_dropping;
54 extern int auto_quality;
56 extern int vobsub_id;
58 static inline void exit_player_bad(const char *how)
60 if (how)
61 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Deprecated exit call: %s", how);
62 exit(1);
65 struct MPContext;
67 #endif /* MPLAYER_MPLAYER_H */