core: fix audio-only + framestep weird behavior
[mplayer/glamo.git] / mplayer.h
blob7a8eec34e857cf95c7a3dfa5fe995e77ee825337
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;
46 extern int frame_dropping;
48 extern int auto_quality;
50 extern int vobsub_id;
52 static inline void exit_player_bad(const char *how)
54 if (how)
55 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Deprecated exit call: %s", how);
56 exit(1);
59 struct MPContext;
61 #endif /* MPLAYER_MPLAYER_H */