vo_gl3: call glFlush() after frame drawing is complete
[mplayer.git] / mplayer.h
blob6e1ea309a922e9ce83e070cda9b4423a3b1eb9d8
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 <stdlib.h>
24 #include "mp_msg.h"
26 extern char* current_module;
28 extern char ** audio_fm_list;
29 extern char ** video_fm_list;
30 extern char ** video_driver_list;
31 extern char ** audio_driver_list;
32 extern float audio_delay;
34 extern double force_fps;
36 extern int frame_dropping;
38 extern int auto_quality;
40 extern int vobsub_id;
42 static inline void exit_player_bad(const char *how)
44 if (how)
45 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Deprecated exit call: %s", how);
46 exit(1);
49 struct MPContext;
50 struct subtitle;
52 void set_osd_subtitle(struct MPContext *mpctx, struct subtitle *subs);
54 #endif /* MPLAYER_MPLAYER_H */