1
mirror of https://github.com/mpv-player/mpv synced 2024-09-16 22:19:59 +02:00
mpv/mplayer.h
Anton Khirnov 87366694d8 Remove the internal GUI
The GUI is badly designed and too closely coupled to the internal
details of other code. The GUI code is in bad shape and unmaintained
for years. There is no indication that anyone would maintain it in the
future either. Even if someone did volunteer to implement a better
integrated GUI having the current code in the tree probably wouldn't
help much. So get rid of it.
2009-07-07 21:49:42 +03:00

51 lines
948 B
C

#ifndef MPLAYER_MPLAYER_H
#define MPLAYER_MPLAYER_H
#include "mp_msg.h"
extern char* current_module;
extern char * dvd_device;
extern char * cdrom_device;
extern char ** audio_fm_list;
extern char ** video_fm_list;
extern char ** video_driver_list;
extern char ** audio_driver_list;
extern char * video_driver;
extern char * audio_driver;
extern float audio_delay;
extern unsigned int osd_visible;
extern char * font_name;
extern char * sub_font_name;
extern float font_factor;
extern double force_fps;
//extern char **sub_name;
extern float sub_delay;
extern float sub_fps;
extern int sub_auto;
extern int stream_cache_size;
extern int autosync;
extern int frame_dropping;
extern int auto_quality;
extern int vobsub_id;
static inline void exit_player_bad(const char *how)
{
if (how)
mp_msg(MSGT_CPLAYER, MSGL_INFO, "Deprecated exit call: %s", how);
exit(1);
}
struct MPContext;
#endif /* MPLAYER_MPLAYER_H */