af.c: Minor simplification of af_init
[mplayer/glamo.git] / mplayer.h
blobe8e48f715ae4f6a2c223f143c45d451a8259fd79
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 ** audio_fm_list;
27 extern char ** video_fm_list;
28 extern char ** video_driver_list;
29 extern char ** audio_driver_list;
30 extern float audio_delay;
32 extern unsigned int osd_visible;
34 extern char * font_name;
35 extern char * sub_font_name;
36 extern float font_factor;
37 extern double force_fps;
39 //extern char **sub_name;
40 extern float sub_delay;
41 extern float sub_fps;
42 extern int sub_auto;
44 extern int stream_cache_size;
45 extern int autosync;
47 extern int frame_dropping;
49 extern int auto_quality;
51 extern int vobsub_id;
53 static inline void exit_player_bad(const char *how)
55 if (how)
56 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Deprecated exit call: %s", how);
57 exit(1);
60 struct MPContext;
62 #endif /* MPLAYER_MPLAYER_H */