mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 18:06:18 +00:00
87366694d8
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.
51 lines
948 B
C
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 */
|